Skip to content

Commit ad28fcd

Browse files
committed
fixed o2linter
1 parent 6e5ee2b commit ad28fcd

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

PWGLF/Tasks/Nuspex/antinucleiInJets.cxx

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -145,11 +145,11 @@ struct AntinucleiInJets {
145145
// Configuration parameters for CCDB access and reweighting input files
146146
Configurable<std::string> urlToCcdb{"urlToCcdb", "http://alice-ccdb.cern.ch", "url of the personal ccdb"};
147147
Configurable<std::string> pathToFile{"pathToFile", "Users/a/alcaliva/PrimaryFractionAntip", "path to file with reweighting"};
148-
Configurable<std::string> nameReweightingAntiprotons{"weights_proton", "", "nameReweightingAntiprotons"};
149-
Configurable<std::string> nameReweightingAntilambda{"weights_lambda", "", "nameReweightingAntilambda"};
150-
Configurable<std::string> nameReweightingAntisigma{"weights_sigma", "", "nameReweightingAntisigma"};
151-
Configurable<std::string> nameReweightingAntixi{"weights_xi", "", "nameReweightingAntixi"};
152-
Configurable<std::string> nameReweightingAntiomega{"weights_omega", "", "nameReweightingAntiomega"};
148+
Configurable<std::string> weightsProton{"weightsProton", "", "weightsProton"};
149+
Configurable<std::string> weightsLambda{"weightsLambda", "", "weightsLambda"};
150+
Configurable<std::string> weightsSigma{"weightsSigma", "", "weightsSigma"};
151+
Configurable<std::string> weightsXi{"weightsXi", "", "weightsXi"};
152+
Configurable<std::string> weightsOmega{"weightsOmega", "", "weightsOmega"};
153153

154154
// Reweighting histograms
155155
TH1F* primaryAntiprotons;
@@ -202,7 +202,7 @@ struct AntinucleiInJets {
202202
ccdb->setLocalObjectValidityChecking();
203203
ccdb->setCreatedNotAfter(std::chrono::duration_cast<std::chrono::milliseconds>(std::chrono::system_clock::now().time_since_epoch()).count());
204204
ccdb->setFatalWhenNull(false);
205-
getReweightingHistograms(ccdb, TString(pathToFile), TString(nameReweightingAntiprotons), TString(nameReweightingAntilambda), TString(nameReweightingAntisigma), TString(nameReweightingAntixi), TString(nameReweightingAntiomega));
205+
getReweightingHistograms(ccdb, TString(pathToFile), TString(weightsProton), TString(weightsLambda), TString(weightsSigma), TString(weightsXi), TString(weightsOmega));
206206
}
207207

208208
// Binning

0 commit comments

Comments
 (0)