Skip to content

Commit 17bffe9

Browse files
authored
Add configurable Zorro path in nucleiSpectra.cxx (AliceO2Group#7993)
1 parent 5d0a97e commit 17bffe9

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

PWGLF/TableProducer/Nuspex/nucleiSpectra.cxx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -293,6 +293,7 @@ struct nucleiSpectra {
293293
// CCDB options
294294
Configurable<int> cfgMaterialCorrection{"cfgMaterialCorrection", static_cast<int>(o2::base::Propagator::MatCorrType::USEMatCorrLUT), "Type of material correction"};
295295
Configurable<std::string> cfgCCDBurl{"ccdb-url", "http://alice-ccdb.cern.ch", "url of the ccdb repository"};
296+
Configurable<std::string> cfgZorroCCDBpath{"cfgZorroCCDBpath", "/Users/m/mpuccio/EventFiltering/OTS/", "path to the zorro ccdb objects"};
296297
int mRunNumber = 0;
297298
float mBz = 0.f;
298299

@@ -374,6 +375,7 @@ struct nucleiSpectra {
374375
void init(o2::framework::InitContext&)
375376
{
376377
zorroSummary.setObject(zorro.getZorroSummary());
378+
zorro.setBaseCCDBPath(cfgZorroCCDBpath.value);
377379
ccdb->setURL(cfgCCDBurl);
378380
ccdb->setCaching(true);
379381
ccdb->setLocalObjectValidityChecking();

0 commit comments

Comments
 (0)