Skip to content

Commit 30b0f2b

Browse files
committed
Fix linter
1 parent a05216f commit 30b0f2b

File tree

4 files changed

+39
-51
lines changed

4 files changed

+39
-51
lines changed

PWGLF/DataModel/McCentrality.h

Lines changed: 0 additions & 48 deletions
This file was deleted.

PWGLF/DataModel/mcCentrality.h

Lines changed: 37 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,40 @@
99
// granted to it by virtue of its status as an Intergovernmental Organization
1010
// or submit itself to any jurisdiction.
1111

12-
#include "McCentrality.h" // Placeholder
12+
///
13+
/// \file McCentrality.h
14+
/// \author Nicolò Jacazio nicolo.jacazio@cern.ch
15+
/// \author Francesca Ercolessi francesca.ercolessi@cern.ch
16+
/// \since 2024-06-05
17+
/// \brief Set of tables for the MC centrality
18+
///
19+
20+
#ifndef PWGLF_DATAMODEL_MCCENTRALITY_H_
21+
#define PWGLF_DATAMODEL_MCCENTRALITY_H_
22+
23+
// O2 includes
24+
#include "Common/DataModel/Centrality.h"
25+
26+
#include "Framework/ASoA.h"
27+
#include "Framework/AnalysisDataModel.h"
28+
#include "Framework/Logger.h"
29+
30+
namespace o2::aod
31+
{
32+
// DECLARE_SOA_TABLE(CentFV0As, "AOD", "CENTFV0A", cent::CentFV0A); //! Run3 FV0A estimated centrality table
33+
// DECLARE_SOA_TABLE(CentFT0Ms, "AOD", "CENTFT0M", cent::CentFT0M); //! Run3 FT0M estimated centrality table
34+
// DECLARE_SOA_TABLE(CentFT0As, "AOD", "CENTFT0A", cent::CentFT0A); //! Run3 FT0A estimated centrality table
35+
// DECLARE_SOA_TABLE(CentFT0Cs, "AOD", "CENTFT0C", cent::CentFT0C); //! Run3 FT0C estimated centrality table
36+
// DECLARE_SOA_TABLE(CentFDDMs, "AOD", "CENTFDDM", cent::CentFDDM); //! Run3 FDDM estimated centrality table
37+
// DECLARE_SOA_TABLE(CentNTPVs, "AOD", "CENTNTPV", cent::CentNTPV); //! Run3 NTPV estimated centrality table
38+
39+
DECLARE_SOA_TABLE(McCentFV0As, "AOD", "MCCENTFV0A", o2::soa::Marker<1>, cent::CentFV0A);
40+
DECLARE_SOA_TABLE(McCentFT0Ms, "AOD", "MCCENTFT0M", o2::soa::Marker<2>, cent::CentFT0M);
41+
DECLARE_SOA_TABLE(McCentFT0As, "AOD", "MCCENTFT0A", o2::soa::Marker<3>, cent::CentFT0A);
42+
DECLARE_SOA_TABLE(McCentFT0Cs, "AOD", "MCCENTFT0C", o2::soa::Marker<4>, cent::CentFT0C);
43+
DECLARE_SOA_TABLE(McCentFDDMs, "AOD", "MCCENTFDDM", o2::soa::Marker<5>, cent::CentFDDM);
44+
DECLARE_SOA_TABLE(McCentNTPVs, "AOD", "MCCENTNTPV", o2::soa::Marker<6>, cent::CentNTPV);
45+
46+
} // namespace o2::aod
47+
48+
#endif // PWGLF_DATAMODEL_MCCENTRALITY_H_

PWGLF/TableProducer/Common/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ o2physics_add_dpl_workflow(zdcsp
3131
COMPONENT_NAME Analysis)
3232

3333
o2physics_add_dpl_workflow(mc-centrality
34-
SOURCES McCentrality.cxx
34+
SOURCES mcCentrality.cxx
3535
PUBLIC_LINK_LIBRARIES O2Physics::AnalysisCore
3636
COMPONENT_NAME Analysis)
3737

PWGLF/TableProducer/Common/McCentrality.cxx renamed to PWGLF/TableProducer/Common/mcCentrality.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
// or submit itself to any jurisdiction.
1111

1212
///
13-
/// \file McCentrality.cxx
13+
/// \file mcCentrality.cxx
1414
/// \author Nicolò Jacazio nicolo.jacazio@cern.ch
1515
/// \author Francesca Ercolessi francesca.ercolessi@cern.ch
1616
/// \since 2024-06-05

0 commit comments

Comments
 (0)