Skip to content

Commit 6731075

Browse files
committed
clang format
1 parent 11bb6c5 commit 6731075

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

PWGCF/Flow/Tasks/flowTask.cxx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)