Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions EventFiltering/Zorro.h
Original file line number Diff line number Diff line change
Expand Up @@ -59,12 +59,12 @@ class Zorro
private:
std::string mBaseCCDBPath = "Users/m/mpuccio/EventFiltering/OTS/";
int mRunNumber = 0;
TH1* mAnalysedTriggers; /// Accounting for all triggers in the current run
TH1* mAnalysedTriggersOfInterest; /// Accounting for triggers of interest in the current run
TH1* mAnalysedTriggers; /// Accounting for all triggers in the current run
TH1* mAnalysedTriggersOfInterest; /// Accounting for triggers of interest in the current run

std::vector<int> mRunNumberHistos;
std::vector<TH1*> mAnalysedTriggersList; /// Per run histograms
std::vector<TH1*> mAnalysedTriggersOfInterestList; /// Per run histograms
std::vector<TH1*> mAnalysedTriggersList; /// Per run histograms
std::vector<TH1*> mAnalysedTriggersOfInterestList; /// Per run histograms

int mBCtolerance = 100;
uint64_t mLastBCglobalId = 0;
Expand All @@ -73,7 +73,7 @@ class Zorro
TH1D* mSelections = nullptr;
TH1D* mInspectedTVX = nullptr;
std::bitset<128> mLastResult;
std::vector<bool> mAccountedBCranges; /// Avoid double accounting of inspected BC ranges
std::vector<bool> mAccountedBCranges; /// Avoid double accounting of inspected BC ranges
std::vector<o2::dataformats::IRFrame> mBCranges;
std::vector<ZorroHelper>* mZorroHelpers = nullptr;
std::vector<std::string> mTOIs;
Expand Down