Skip to content

Commit bb2bcc8

Browse files
committed
Please consider the following formatting changes
1 parent 8e8662b commit bb2bcc8

2 files changed

Lines changed: 8 additions & 8 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: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
#include "Common/CCDB/TriggerAliases.h"
2323
#include "Common/DataModel/Centrality.h"
2424
#include "Common/DataModel/Multiplicity.h"
25-
#include "Common/DataModel/ZDCInterCalib.h"
25+
#include "Common/DataModel/ZDCInterCalib.h"
2626

2727
#include "TH1F.h"
2828
#include "TH2F.h"
@@ -99,7 +99,6 @@ struct ZdcTaskInterCalib {
9999
registry.get<TH1>(HIST("hEventCount"))->GetXaxis()->SetBinLabel(evSel_kIsGoodITSLayersAll + 1, "kkIsGoodITSLayersAll");
100100
}
101101

102-
103102
template <typename TCollision>
104103
uint8_t eventSelected(TCollision collision)
105104
{
@@ -109,7 +108,7 @@ struct ZdcTaskInterCalib {
109108
registry.fill(HIST("hEventCount"), evSel_allEvents);
110109

111110
selected = std::fabs(collision.posZ()) < cfgEvSelVtxZ;
112-
if (selected){
111+
if (selected) {
113112
selectionBits |= (uint8_t)(0x1u << evSel_zvtx);
114113
registry.fill(HIST("hEventCount"), evSel_zvtx);
115114
}
@@ -251,4 +250,5 @@ WorkflowSpec defineDataProcessing(ConfigContext const& cfgc) // o2-linter: disab
251250
{
252251
return WorkflowSpec{
253252
adaptAnalysisTask<ZdcTaskInterCalib>(cfgc)};
254-
}
253+
}
254+

0 commit comments

Comments
 (0)