@@ -111,7 +111,6 @@ struct FlowTask {
111111 Configurable<std::vector<std::string>> cfgUserDefineGFWCorr{" cfgUserDefineGFWCorr" , std::vector<std::string>{" refN02 {2} refP02 {-2}" , " refN12 {2} refP12 {-2}" }, " User defined GFW CorrelatorConfig" };
112112 Configurable<std::vector<std::string>> cfgUserDefineGFWName{" cfgUserDefineGFWName" , std::vector<std::string>{" Ch02Gap22" , " Ch12Gap22" }, " User defined GFW Name" };
113113 Configurable<GFWCorrConfigs> cfgUserPtVnCorrConfig{" cfgUserPtVnCorrConfig" , {{" refP {2} refN {-2}" , " refP {3} refN {-3}" }, {" ChGap22" , " ChGap32" }, {0 , 0 }, {3 , 3 }}, " Configurations for vn-pt correlations" };
114- Configurable<std::vector<int >> cfgRunRemoveList{" cfgRunRemoveList" , std::vector<int >{-1 }, " excluded run numbers" };
115114 struct : ConfigurableGroup {
116115 O2_DEFINE_CONFIGURABLE (cfgOutputNUAWeights, bool , false , " Fill and output NUA weights" )
117116 O2_DEFINE_CONFIGURABLE (cfgOutputNUAWeightsRefPt, bool , false , " NUA weights are filled in ref pt bins" )
@@ -120,6 +119,7 @@ struct FlowTask {
120119 O2_DEFINE_CONFIGURABLE (cfgEfficiencyForNch, std::string, " " , " CCDB path to efficiency object, only for Nch correction" )
121120 O2_DEFINE_CONFIGURABLE (cfgAcceptance, std::string, " " , " CCDB path to acceptance object" )
122121 O2_DEFINE_CONFIGURABLE (cfgUseSmallMemory, bool , false , " Use small memory mode" )
122+ Configurable<std::vector<int >> cfgRunRemoveList{" cfgRunRemoveList" , std::vector<int >{-1 }, " excluded run numbers" };
123123 } cfgUserIO;
124124
125125 struct : ConfigurableGroup {
@@ -1055,7 +1055,7 @@ struct FlowTask {
10551055 registry.fill (HIST (" hEventCount" ), 1.5 );
10561056 auto bc = collision.bc_as <aod::BCsWithTimestamps>();
10571057 int currentRunNumber = bc.runNumber ();
1058- for (const auto & ExcludedRun : cfgRunRemoveList.value ) {
1058+ for (const auto & ExcludedRun : cfgUserIO. cfgRunRemoveList .value ) {
10591059 if (currentRunNumber == ExcludedRun) {
10601060 return ;
10611061 }
0 commit comments