Skip to content
Merged
Show file tree
Hide file tree
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: 6 additions & 4 deletions Common/CCDB/RCTSelectionFlags.h
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,13 @@
#define COMMON_CCDB_RCTSELECTIONFLAGS_H_

#include <CommonUtils/EnumFlags.h>
#include <Rtypes.h>

#include <TMath.h>

#include <stdexcept>
#include <Rtypes.h>

#include <algorithm>
#include <stdexcept>
#include <string>
#include <vector>

Expand Down Expand Up @@ -98,7 +100,7 @@ class RCTFlagsChecker : public o2::utils::EnumFlags<RCTSelectionFlags>
// - "CBT"
// - "CBT_hadronPID"
// - "CBT_electronPID"
// - "CCBT_calo"
// - "CBT_calo"
// - "CBT_muon"
// - "CBT_muon_glo"
// The checkZDC boolean flag controls whether to iclude the ZDC quality in all the pre-defined selections (for Pb-Pb data)
Expand All @@ -121,7 +123,7 @@ class RCTFlagsChecker : public o2::utils::EnumFlags<RCTSelectionFlags>
// - "CBT"
// - "CBT_hadronPID"
// - "CBT_electronPID"
// - "CCBT_calo"
// - "CBT_calo"
// - "CBT_muon"
// - "CBT_muon_glo"
// The checkZDC boolean flag controls whether to iclude the ZDC quality in all the pre-defined selections (for Pb-Pb data)
Expand Down
2 changes: 1 addition & 1 deletion PWGHF/Utils/utilsEvSelHf.h
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ struct HfEventSelection : o2::framework::ConfigurableGroup {
o2::framework::ConfigurableAxis th2ConfigAxisCent{"th2ConfigAxisCent", {100, 0., 100.}, ""};
o2::framework::ConfigurableAxis th2ConfigAxisOccupancy{"th2ConfigAxisOccupancy", {100, 0, 100000}, ""};
o2::framework::Configurable<bool> requireGoodRct{"requireGoodRct", false, "Flag to require good RCT"};
o2::framework::Configurable<std::string> rctLabel{"rctLabel", "CBT_hadronPID", "RCT selection flag (CBT, CBT_hadronPID, CBT_electronPID, CCBT_calo, CBT_muon, CBT_muon_glo)"};
o2::framework::Configurable<std::string> rctLabel{"rctLabel", "CBT_hadronPID", "RCT selection flag (CBT, CBT_hadronPID, CBT_electronPID, CBT_calo, CBT_muon, CBT_muon_glo)"};
o2::framework::Configurable<bool> rctCheckZDC{"rctCheckZDC", false, "RCT flag to check whether the ZDC is present or not"};
o2::framework::Configurable<bool> rctTreatLimitedAcceptanceAsBad{"rctTreatLimitedAcceptanceAsBad", false, "RCT flag to reject events with limited acceptance for selected detectors"};

Expand Down
Loading