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
Copy file name to clipboardExpand all lines: PWGLF/Tasks/Resonances/phispectrapbpbqa.cxx
+26-3Lines changed: 26 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -64,6 +64,7 @@ using namespace o2;
64
64
usingnamespaceo2::framework;
65
65
usingnamespaceo2::framework::expressions;
66
66
using std::array;
67
+
usingnamespaceo2::aod::rctsel;
67
68
structphispectrapbpbqa {
68
69
double bz = 0.;
69
70
@@ -75,6 +76,13 @@ struct phispectrapbpbqa {
75
76
Configurable<std::string> cfgURL{"cfgURL", "http://alice-ccdb.cern.ch", "Address of the CCDB to browse"};
76
77
Configurable<int64_t> nolaterthan{"ccdb-no-later-than", std::chrono::duration_cast<std::chrono::milliseconds>(std::chrono::system_clock::now().time_since_epoch()).count(), "Latest acceptable timestamp of creation for the object"};
77
78
} cfgCcdbParam;
79
+
80
+
struct : ConfigurableGroup {
81
+
Configurable<bool> requireRCTFlagChecker{"requireRCTFlagChecker", true, "Check event quality in run condition table"};
82
+
Configurable<std::string> cfgEvtRCTFlagCheckerLabel{"cfgEvtRCTFlagCheckerLabel", "CBT_hadronPID", "Evt sel: RCT flag checker label"};
83
+
Configurable<bool> cfgEvtRCTFlagCheckerLimitAcceptAsBad{"cfgEvtRCTFlagCheckerLimitAcceptAsBad", true, "Evt sel: RCT flag checker treat Limited Acceptance As Bad"};
0 commit comments