Skip to content

Commit 28f621e

Browse files
committed
Please consider the following formatting changes
1 parent f8059ff commit 28f621e

2 files changed

Lines changed: 7 additions & 7 deletions

File tree

Common/TableProducer/interCalibrationZDC.cxx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,6 @@ struct InterCalibrationZDC {
101101
registry.get<TH1>(HIST("hEventCount"))->GetXaxis()->SetBinLabel(evSel_kIsGoodITSLayersAll + 1, "kkIsGoodITSLayersAll");
102102
}
103103

104-
105104
template <typename TCollision>
106105
uint8_t eventSelected(TCollision collision)
107106
{
@@ -111,7 +110,7 @@ struct InterCalibrationZDC {
111110
registry.fill(HIST("hEventCount"), evSel_allEvents);
112111

113112
selected = std::fabs(collision.posZ()) < cfgEvSelVtxZ;
114-
if (selected){
113+
if (selected) {
115114
selectionBits |= (uint8_t)(0x1u << evSel_zvtx);
116115
registry.fill(HIST("hEventCount"), evSel_zvtx);
117116
}
@@ -253,4 +252,5 @@ WorkflowSpec defineDataProcessing(ConfigContext const& cfgc) // o2-linter: disab
253252
{
254253
return WorkflowSpec{
255254
adaptAnalysisTask<InterCalibrationZDC>(cfgc)};
256-
}
255+
}
256+

Common/TableProducer/zdc-task-intercalib.cxx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,6 @@ struct ZDCCalibTower {
101101
registry.get<TH1>(HIST("hEventCount"))->GetXaxis()->SetBinLabel(evSel_kIsGoodITSLayersAll + 1, "kkIsGoodITSLayersAll");
102102
}
103103

104-
105104
template <typename TCollision>
106105
uint8_t eventSelected(TCollision collision)
107106
{
@@ -111,7 +110,7 @@ struct ZDCCalibTower {
111110
registry.fill(HIST("hEventCount"), evSel_allEvents);
112111

113112
selected = std::fabs(collision.posZ()) < cfgEvSelVtxZ;
114-
if (selected){
113+
if (selected) {
115114
selectionBits |= (uint8_t)(0x1u << evSel_zvtx);
116115
registry.fill(HIST("hEventCount"), evSel_zvtx);
117116
}
@@ -228,7 +227,7 @@ struct ZDCCalibTower {
228227
registry.get<TH1>(HIST("ZNCpm3"))->Fill(pmqZNC[2]);
229228
registry.get<TH1>(HIST("ZNCpm4"))->Fill(pmqZNC[3]);
230229
registry.get<TH1>(HIST("ZNCsumq"))->Fill(sumZNC);
231-
}
230+
}
232231
if (isZNAhit) {
233232
for (int it = 0; it < nTowers; it++) {
234233
pmqZNA[it] = (zdc.energySectorZNA())[it];
@@ -253,4 +252,5 @@ WorkflowSpec defineDataProcessing(ConfigContext const& cfgc) // o2-linter: disab
253252
{
254253
return WorkflowSpec{
255254
adaptAnalysisTask<ZDCCalibTower>(cfgc)};
256-
}
255+
}
256+

0 commit comments

Comments
 (0)