You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
std::vector<MCSignal*> fMCSignals; // list of signals to be checked
601
601
std::vector<TString> fHistNamesReco;
602
602
std::vector<TString> fHistNamesMCMatched;
603
603
604
-
intfCurrentRun; // current run (needed to detect run changes for loading CCDB parameters)
604
+
intfCurrentRun = 0; // current run (needed to detect run changes for loading CCDB parameters)
605
605
606
606
std::map<int64_t, std::vector<int64_t>> fNAssocsInBunch; // key: track global index, value: vector of global index for events associated in-bunch (events that have in-bunch pileup or splitting)
607
607
std::map<int64_t, std::vector<int64_t>> fNAssocsOutOfBunch; // key: track global index, value: vector of global index for events associated out-of-bunch (events that have no in-bunch pileup)
Configurable<std::string> fConfigMCGenSignalHadronJSON{"cfgMCGenSignalHadronJSON", "", "generator level hadron signal (JSON format), used for MC level combinatorics"};
2286
2286
} fConfigMCOptions;
2287
2287
2288
-
intfCurrentRun; // needed to detect if the run changed and trigger update of calibrations etc.
2289
-
intfNCuts;
2290
-
intfNLegCuts;
2291
-
intfNPairCuts;
2292
-
intfNCommonTrackCuts;
2288
+
intfCurrentRun = 0; // needed to detect if the run changed and trigger update of calibrations etc.
2289
+
intfNCuts = 0;
2290
+
intfNLegCuts = 0;
2291
+
intfNPairCuts = 0;
2292
+
intfNCommonTrackCuts = 0;
2293
2293
std::map<int, int> fCommonTrackCutMap;
2294
-
uint32_tfTrackCutBitMap; // track cut bit mask to be used in the selection of tracks associated with dileptons
2294
+
uint32_tfTrackCutBitMap = 0; // track cut bit mask to be used in the selection of tracks associated with dileptons
2295
2295
// vector for single-lepton and track cut names for easy access when calling FillHistogramList()
2296
2296
std::vector<TString> fTrackCutNames;
2297
2297
std::vector<TString> fLegCutNames;
2298
2298
// vector for pair cut names, used mainly for pairs built via the asymmetric pairing task
2299
2299
std::vector<TString> fPairCutNames;
2300
2300
std::vector<TString> fCommonPairCutNames;
2301
2301
2302
-
Service<o2::ccdb::BasicCCDBManager> fCCDB;
2302
+
Service<o2::ccdb::BasicCCDBManager> fCCDB{};
2303
2303
2304
2304
// TODO: The filter expressions seem to always use the default value of configurables, not the values from the actual configuration file
0 commit comments