perform Fourier phase checks only if a Fourier block is present and not set to power spectra.

This commit is contained in:
2025-12-22 16:09:32 +01:00
parent 6155438676
commit b3ee2000ed

View File

@@ -6735,7 +6735,11 @@ Bool_t PMsrHandler::CheckRRFSettings()
*/
Bool_t PMsrHandler::CheckRealFFT()
{
// check
// if no Fourier block is present, nothing needs to be checked
if (!fFourier.fFourierBlockPresent)
return true;
// if Fourier is set to power spectra, no phase checks are needed
if (fFourier.fPlotTag == FOURIER_PLOT_POWER)
return true;
@@ -6756,15 +6760,15 @@ Bool_t PMsrHandler::CheckRealFFT()
// make sure that FOURIER phases are defined
if ((fFourier.fPhase.size() == 0) && (fFourier.fPhaseParamNo.size() == 0)) {
fLastErrorMsg.str("");
fLastErrorMsg.clear();
fLastErrorMsg << ">> PMsrHandler::ReadMsrFile: **ERROR** for FOURIER plot != POWER,\n";
fLastErrorMsg << ">> phases need to be defined in the FOURIER block!\n";
fLastErrorMsg << ">> Examples:\n";
fLastErrorMsg << ">> phase parR7 par9 par13 par16\n";
fLastErrorMsg << ">> where parR7 is the reference phase, and the others the relative phases.\n";
fLastErrorMsg << ">> I.e. phase of run 2: parR7 + par9, etc.\n";
fLastErrorMsg << ">> For further details see the docu.\n";
fLastErrorMsg.str("");
fLastErrorMsg.clear();
fLastErrorMsg << ">> PMsrHandler::ReadMsrFile: **ERROR** for FOURIER plot != POWER,\n";
fLastErrorMsg << ">> phases need to be defined in the FOURIER block!\n";
fLastErrorMsg << ">> Examples:\n";
fLastErrorMsg << ">> phase parR7 par9 par13 par16\n";
fLastErrorMsg << ">> where parR7 is the reference phase, and the others the relative phases.\n";
fLastErrorMsg << ">> I.e. phase of run 2: parR7 + par9, etc.\n";
fLastErrorMsg << ">> For further details see the docu.\n";
std::cerr << std::endl << fLastErrorMsg.str();
return false;
}