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
if (!ccdbConfig.doNotCrashOnNull) { // default behaviour: crash
358
358
LOGF(fatal, "Centrality calibration is not available in CCDB for run=%d at timestamp=%llu", bc.runNumber(), bc.timestamp());
359
359
} else { // only if asked: continue filling with non-valid values (105)
360
360
LOGF(info, "Centrality calibration is not available in CCDB for run=%d at timestamp=%llu, will fill tables with dummy values", bc.runNumber(), bc.timestamp());
361
-
mRunNumber = bc.runNumber();
362
361
}
363
362
}
364
363
}
@@ -473,6 +472,7 @@ struct CentralityTable {
473
472
/* check the previous run number */
474
473
auto bc = collision.templatebc_as<BCsWithTimestamps>();
475
474
if (bc.runNumber() != mRunNumber) {
475
+
mRunNumber = bc.runNumber(); // mark that this run has been attempted already regardless of outcome
476
476
LOGF(info, "timestamp=%llu, run number=%d", bc.timestamp(), bc.runNumber());
if (!ccdbConfig.doNotCrashOnNull) { // default behaviour: crash
561
562
LOGF(fatal, "Centrality calibration is not available in CCDB for run=%d at timestamp=%llu", bc.runNumber(), bc.timestamp());
562
563
} else { // only if asked: continue filling with non-valid values (105)
563
564
LOGF(info, "Centrality calibration is not available in CCDB for run=%d at timestamp=%llu, will fill tables with dummy values", bc.runNumber(), bc.timestamp());
Copy file name to clipboardExpand all lines: DPG/Tasks/AOTTrack/qaImpPar.cxx
+26-4Lines changed: 26 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -112,6 +112,7 @@ struct QaImpactPar {
112
112
Configurable<bool> keepAllTracksPVrefit{"keepAllTracksPVrefit", false, "Keep all tracks for PV refit (for debug)"};
113
113
Configurable<bool> use_customITSHitMap{"use_customITSHitMap", false, "Use custom ITS hitmap selection"};
114
114
Configurable<int> customITShitmap{"customITShitmap", 0, "Custom ITS hitmap (consider the binary representation)"};
115
+
Configurable<int> customITShitmap_exclude{"customITShitmap_exclude", 0, "Custom ITS hitmap of layers to be excluded (consider the binary representation)"};
115
116
Configurable<int> n_customMinITShits{"n_customMinITShits", 0, "Minimum number of layers crossed by a track among those in \"customITShitmap\""};
116
117
Configurable<bool> custom_forceITSTPCmatching{"custom_forceITSTPCmatching", false, "Consider or not only ITS-TPC macthed tracks when using custom ITS hitmap"};
0 commit comments