Skip to content

Commit 9cfdf2a

Browse files
committed
Please consider the following formatting changes
1 parent 3298716 commit 9cfdf2a

2 files changed

Lines changed: 9 additions & 9 deletions

File tree

Common/DataModel/ZDCInterCalib.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
namespace o2::aod
2222
{
23-
namespace znoutput // o2-linter: disable=name/workflow-file
23+
namespace znoutput // o2-linter: disable=name/workflow-file
2424
{
2525
DECLARE_SOA_COLUMN(ZNApmc, commonPMZNA, float); //! PMC ZNA // o2-linter: disable=name/o2-column
2626
DECLARE_SOA_COLUMN(ZNApm1, ZNAPM1, float); //! PM1 ZNA // o2-linter: disable=name/o2-column
@@ -34,9 +34,9 @@ DECLARE_SOA_COLUMN(ZNCpm2, ZNCPM2, float); //! PM2 ZNC /
3434
DECLARE_SOA_COLUMN(ZNCpm3, ZNCPM3, float); //! PM3 ZNC // o2-linter: disable=name/o2-column
3535
DECLARE_SOA_COLUMN(ZNCpm4, ZNCPM4, float); //! PM4 ZNC // o2-linter: disable=name/o2-column
3636
DECLARE_SOA_COLUMN(ZNCtdc, ZNCTDC, float); //! TDC ZNC // o2-linter: disable=name/o2-column
37-
DECLARE_SOA_COLUMN(Centrality, centrality, float); //! Centrality
38-
DECLARE_SOA_COLUMN(Timestamp, timestamp, uint64_t); //! Timestamp
39-
DECLARE_SOA_COLUMN(SelectionBits, selectionBits, uint8_t); //! Selection Flags
37+
DECLARE_SOA_COLUMN(Centrality, centrality, float); //! Centrality
38+
DECLARE_SOA_COLUMN(Timestamp, timestamp, uint64_t); //! Timestamp
39+
DECLARE_SOA_COLUMN(SelectionBits, selectionBits, uint8_t); //! Selection Flags
4040
} // namespace znoutput
4141

4242
DECLARE_SOA_TABLE(ZDCInterCalib, "AOD", "ZDCIC", o2::soa::Index<>,

Common/TableProducer/zdcTaskInterCalib.cxx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
// o2-linter: disable=name/workflow-file
1717
// o2-linter: disable=name/file-cpp
18-
// o2-linter: disable=doc/file
18+
// o2-linter: disable=doc/file
1919

2020
#include "Framework/AnalysisTask.h"
2121
#include "Framework/AnalysisDataModel.h"
@@ -26,7 +26,7 @@
2626
#include "Common/CCDB/TriggerAliases.h"
2727
#include "Common/DataModel/Centrality.h"
2828
#include "Common/DataModel/Multiplicity.h"
29-
#include "Common/DataModel/ZDCInterCalib.h"
29+
#include "Common/DataModel/ZDCInterCalib.h"
3030

3131
#include "TH1F.h"
3232
#include "TH2F.h"
@@ -103,7 +103,6 @@ struct ZDCCalibTower {
103103
registry.get<TH1>(HIST("hEventCount"))->GetXaxis()->SetBinLabel(evSel_kIsGoodITSLayersAll + 1, "kkIsGoodITSLayersAll");
104104
}
105105

106-
107106
template <typename TCollision>
108107
uint8_t eventSelected(TCollision collision)
109108
{
@@ -113,7 +112,7 @@ struct ZDCCalibTower {
113112
registry.fill(HIST("hEventCount"), evSel_allEvents);
114113

115114
selected = std::fabs(collision.posZ()) < cfgEvSelVtxZ;
116-
if (selected){
115+
if (selected) {
117116
selectionBits |= (uint8_t)(0x1u << evSel_zvtx);
118117
registry.fill(HIST("hEventCount"), evSel_zvtx);
119118
}
@@ -255,4 +254,5 @@ WorkflowSpec defineDataProcessing(ConfigContext const& cfgc) // o2-linter: disab
255254
{
256255
return WorkflowSpec{
257256
adaptAnalysisTask<ZDCCalibTower>(cfgc)};
258-
}
257+
}
258+

0 commit comments

Comments
 (0)