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 = nullptr; // 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"};
2338
2338
} fConfigMCOptions;
2339
2339
2340
-
intfCurrentRun; // needed to detect if the run changed and trigger update of calibrations etc.
2341
-
intfNCuts;
2342
-
intfNLegCuts;
2343
-
intfNPairCuts;
2344
-
intfNCommonTrackCuts;
2340
+
intfCurrentRun = nullptr; // needed to detect if the run changed and trigger update of calibrations etc.
2341
+
intfNCuts = nullptr;
2342
+
intfNLegCuts = nullptr;
2343
+
intfNPairCuts = nullptr;
2344
+
intfNCommonTrackCuts = nullptr;
2345
2345
std::map<int, int> fCommonTrackCutMap;
2346
-
uint32_tfTrackCutBitMap; // track cut bit mask to be used in the selection of tracks associated with dileptons
2346
+
uint32_tfTrackCutBitMap = nullptr; // track cut bit mask to be used in the selection of tracks associated with dileptons
2347
2347
// vector for single-lepton and track cut names for easy access when calling FillHistogramList()
0 commit comments