@@ -111,8 +111,8 @@ struct LongRangeDihadronCor {
111111 O2_DEFINE_CONFIGURABLE (cfgRejectFT0AOutside, bool , false , " Rejection of outer ring channels of the FT0A detector" )
112112 O2_DEFINE_CONFIGURABLE (cfgRejectFT0CInside, bool , false , " Rejection of inner ring channels of the FT0C detector" )
113113 O2_DEFINE_CONFIGURABLE (cfgRejectFT0COutside, bool , false , " Rejection of outer ring channels of the FT0C detector" )
114- O2_DEFINE_CONFIGURABLE (cfgRemapFT0ADeadChannels, bool , false , " Remap FT0A channels 60, 61, 62, 63 to amplitudes from 28,30,29,31 respectively" )
115- O2_DEFINE_CONFIGURABLE (cfgRemapFT0CDeadChannels, bool , false , " Remap FT0C channels 177->145, 176->144, 178->146, 179->147, 139->115" )
114+ O2_DEFINE_CONFIGURABLE (cfgRemapFT0ADeadChannels, bool , false , " If true, remap FT0A channels 60- 63 to amplitudes from 28,30,29,31 respectively" )
115+ O2_DEFINE_CONFIGURABLE (cfgRemapFT0CDeadChannels, bool , false , " If true, remap FT0C channels 177->145, 176->144, 178->146, 179->147, 139->115" )
116116 struct : ConfigurableGroup {
117117 O2_DEFINE_CONFIGURABLE (cfgMultCentHighCutFunction, std::string, " [0] + [1]*x + [2]*x*x + [3]*x*x*x + [4]*x*x*x*x + 10.*([5] + [6]*x + [7]*x*x + [8]*x*x*x + [9]*x*x*x*x)" , " Functional for multiplicity correlation cut" );
118118 O2_DEFINE_CONFIGURABLE (cfgMultCentLowCutFunction, std::string, " [0] + [1]*x + [2]*x*x + [3]*x*x*x + [4]*x*x*x*x - 3.*([5] + [6]*x + [7]*x*x + [8]*x*x*x + [9]*x*x*x*x)" , " Functional for multiplicity correlation cut" );
@@ -655,8 +655,7 @@ struct LongRangeDihadronCor {
655655 id = ft0.channelC ()[iCh];
656656 id = id + Ft0IndexA;
657657 ampl = ft0.amplitudeC ()[iCh];
658- if (cfgRemapFT0CDeadChannels) {
659- if (id == 177 )
658+ if (cfgRemapFT0CDeadCha if (id == 177 )
660659 ampl = ft0.amplitudeC ()[145 ];
661660 else if (id == 176 )
662661 ampl = ft0.amplitudeC ()[144 ];
0 commit comments