Skip to content

Commit b10b9c5

Browse files
committed
Linter fixes
1 parent fdcbb0a commit b10b9c5

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

PWGLF/Tasks/Strangeness/strangecasctrack.cxx

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -96,10 +96,10 @@ struct strangecasctrack {
9696
Configurable<bool> doApplyPurity2D{"doApplyPurity2D", false, "apply purity correction"};
9797
Configurable<bool> doPropagatePurity2D{"doPropagatePurity2D", false, "apply purity propagation"};
9898
Configurable<std::string> ccdburl{"ccdburl", "http://alice-ccdb.cern.ch", "url of the ccdb repository to use"};
99-
Configurable<std::string> efficiencyCCDBPath_pp{"efficiencyCCDBPath_pp", "Users/y/yparovia/LHC24f4d", "Path of the efficiency and purity corrections (pp)"};
100-
Configurable<std::string> efficiencyCCDBPath_PbPb{"efficiencyCCDBPath_PbPb", "Users/y/yparovia/LHC25f3", "Path of the efficiency and purity corrections (PbPb)"};
101-
Configurable<std::string> efficiencyCCDBPath_OO{"efficiencyCCDBPath_OO", "Users/y/yparovia/LHC25h3", "Path of the efficiency and purity corrections (OO)"};
102-
Configurable<std::string> efficiencyCCDBPath_pO{"efficiencyCCDBPath_pO", "Users/y/yparovia/LHC25h2", "Path of the efficiency and purity corrections (pO)"};
99+
Configurable<std::string> efficiencyCCDBPathpp{"efficiencyCCDBPathpp", "Users/y/yparovia/LHC24f4d", "Path of the efficiency and purity corrections (pp)"};
100+
Configurable<std::string> efficiencyCCDBPathPbPb{"efficiencyCCDBPathPbPb", "Users/y/yparovia/LHC25f3", "Path of the efficiency and purity corrections (PbPb)"};
101+
Configurable<std::string> efficiencyCCDBPathOO{"efficiencyCCDBPathOO", "Users/y/yparovia/LHC25h3", "Path of the efficiency and purity corrections (OO)"};
102+
Configurable<std::string> efficiencyCCDBPathpO{"efficiencyCCDBPathpO", "Users/y/yparovia/LHC25h2", "Path of the efficiency and purity corrections (pO)"};
103103

104104
// event and dau track selection
105105
struct : ConfigurableGroup {
@@ -198,13 +198,13 @@ struct strangecasctrack {
198198

199199
std::string efficiencyCCDBPath = [&]() {
200200
if (doProcesspp) {
201-
return efficiencyCCDBPath_pp;
201+
return efficiencyCCDBPathpp;
202202
} else if (doProcesspO) {
203-
return efficiencyCCDBPath_pO;
203+
return efficiencyCCDBPathpO;
204204
} else if (doProcessPbPb) {
205-
return efficiencyCCDBPath_PbPb;
205+
return efficiencyCCDBPathPbPb;
206206
}
207-
return efficiencyCCDBPath_OO;
207+
return efficiencyCCDBPathOO;
208208
}();
209209

210210
TList* listEfficiencies = ccdb->getForTimeStamp<TList>(efficiencyCCDBPath, timeStamp);

0 commit comments

Comments
 (0)