@@ -45,12 +45,12 @@ enum TriggerAliases { AllBCs = 0,
4545 FT0CE = 2 ,
4646 FDD = 3 ,
4747 NTriggerAliases };
48- enum BCCategories { BCA = 0 , // A side BCs (bunch-crossings that had beam only from A side)
49- BCB = 1 , // B type BCs (bunch-crossings that had beam from both sides)
50- BCC = 2 , // C side BCs (bunch-crossings that had beam only from C side)
51- BCE = 3 , // empty BCs (bunch-crossings that did not have beam from either side)
52- BCL = 4 , // leading BCs (bunch-crossings that did not have interacting bunches for a configurable number of preceding BCs)
53- BCSL = 5 , // super-leading BCs (bunch-crossings that did not have FDD/FT0 activity for a configurable number of preceding BCs)
48+ enum BCCategories { BCA = 0 , // A side BCs (bunch-crossings that had beam only from A side)
49+ BCB = 1 , // B type BCs (bunch-crossings that had beam from both sides)
50+ BCC = 2 , // C side BCs (bunch-crossings that had beam only from C side)
51+ BCE = 3 , // empty BCs (bunch-crossings that did not have beam from either side)
52+ BCL = 4 , // leading BCs (bunch-crossings that did not have interacting bunches for a configurable number of preceding BCs)
53+ BCSL = 5 , // super-leading BCs (bunch-crossings that did not have FDD/FT0 activity for a configurable number of preceding BCs)
5454 NBCCategories };
5555} // namespace lumi
5656namespace aod
@@ -80,13 +80,13 @@ struct BuildBcFlagTable {
8080 aod::FDDs const & fdds)
8181 {
8282 int64_t idxFT0{-1 }, idxFDD{-1 };
83- for (const auto & ft0: ft0s) {
83+ for (const auto & ft0 : ft0s) {
8484 if (ft0.bcId () == bc.globalIndex ()) {
8585 idxFT0 = ft0.globalIndex ();
8686 break ;
8787 }
8888 }
89- for (const auto & fdd: fdds) {
89+ for (const auto & fdd : fdds) {
9090 if (fdd.bcId () == bc.globalIndex ()) {
9191 idxFDD = fdd.globalIndex ();
9292 break ;
@@ -137,7 +137,7 @@ struct LumiStabilityPP {
137137 {" FT0CE/BC_A/nBCsVsBCID" , " FT0CE/BC_B/nBCsVsBCID" , " FT0CE/BC_C/nBCsVsBCID" , " FT0CE/BC_E/nBCsVsBCID" , " FT0CE/BC_L/nBCsVsBCID" , " FT0CE/BC_SL/nBCsVsBCID" },
138138 {" FDD/BC_A/nBCsVsBCID" , " FDD/BC_B/nBCsVsBCID" , " FDD/BC_C/nBCsVsBCID" , " FDD/BC_E/nBCsVsBCID" , " FDD/BC_L/nBCsVsBCID" , " FDD/BC_SL/nBCsVsBCID" }};
139139
140- const AxisSpec timeAxis{1440 , 0 ., 1440 ., " #bf{t-t_{SOF} (min)}" }, bcIDAxis{nBCsPerOrbit, -0.5 , static_cast <float >(nBCsPerOrbit)- 0.5 , " #bf{BC ID in orbit}" };
140+ const AxisSpec timeAxis{1440 , 0 ., 1440 ., " #bf{t-t_{SOF} (min)}" }, bcIDAxis{nBCsPerOrbit, -0.5 , static_cast <float >(nBCsPerOrbit) - 0.5 , " #bf{BC ID in orbit}" };
141141
142142 int64_t bcSOR;
143143 int nBCsPerTF;
@@ -262,7 +262,7 @@ struct LumiStabilityPP {
262262
263263 float timeSinceSOF = getTimeSinceSOF (bc);
264264 bool isTriggerTVX = (bc.has_ft0 () ? TESTBIT (bc.ft0 ().triggerMask (), o2::ft0::Triggers::bitVertex) : false );
265-
265+
266266 if (isTriggerTVX) {
267267 histNBcsVsTime[runNumber]->Fill (timeSinceSOF);
268268 }
0 commit comments