perform Fourier phase checks only if a Fourier block is present and not set to power spectra.
All checks were successful
Build and Deploy Documentation / build-and-deploy (push) Successful in 20s

This commit is contained in:
2025-12-22 16:09:32 +01:00
parent 642f878833
commit a023a4b090

View File

@@ -6723,7 +6723,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;