Skip to content

Commit 2b94cff

Browse files
authored
Remove build error
1 parent 6b8100a commit 2b94cff

1 file changed

Lines changed: 32 additions & 10 deletions

File tree

PWGHF/HFL/DataModel/ElectronSelectionTable.h

Lines changed: 32 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
#include <Framework/AnalysisDataModel.h>
2323

2424
#include <cstdint>
25+
#include <vector>
2526

2627
namespace o2::aod
2728
{
@@ -78,16 +79,27 @@ DECLARE_SOA_TABLE(HfSelEl, "AOD", "HFSELEL", //! Electron Informations
7879
// definition of columns and tables for HfcorrElectron Selection
7980
namespace hf_corr_sel_electron
8081
{
81-
DECLARE_SOA_INDEX_COLUMN(Collision, collision); //! collisioniD of the electron track
82-
DECLARE_SOA_INDEX_COLUMN(Track, track); //! trackid of of the electron track
83-
DECLARE_SOA_COLUMN(EtaTrack, etaTrack, float); //! pseudorapidity of the electron track
84-
DECLARE_SOA_COLUMN(PhiTrack, phiTrack, float); //! azimuth of the electron track
85-
DECLARE_SOA_COLUMN(PtTrack, ptTrack, float); //! transverse momentum of the electron track
86-
DECLARE_SOA_COLUMN(TpcNSigmaElTrack, tpcNSigmaElTrack, float); //! tpcNSigma of the electron track(TPC PID)
87-
DECLARE_SOA_COLUMN(TofNSigmaElTrack, tofNSigmaElTrack, float); //! tofNSigma of the electron track(TOF PID)
88-
DECLARE_SOA_COLUMN(NElPairLS, nElPairLS, int); //! Number of Like sign electron pair
89-
DECLARE_SOA_COLUMN(NElPairUS, nElPairUS, int); //! Number of UnLike sign electron pair
90-
DECLARE_SOA_COLUMN(IsEmcal, isEmcal, bool); //! electron information
82+
DECLARE_SOA_INDEX_COLUMN(Collision, collision); //! collisioniD of the electron track
83+
DECLARE_SOA_INDEX_COLUMN(Track, track); //! trackid of of the electron track
84+
DECLARE_SOA_COLUMN(EtaTrack, etaTrack, float); //! pseudorapidity of the electron track
85+
DECLARE_SOA_COLUMN(PhiTrack, phiTrack, float); //! azimuth of the electron track
86+
DECLARE_SOA_COLUMN(PtTrack, ptTrack, float); //! transverse momentum of the electron track
87+
DECLARE_SOA_COLUMN(TpcNSigmaElTrack, tpcNSigmaElTrack, float); //! tpcNSigma of the electron track(TPC PID)
88+
DECLARE_SOA_COLUMN(TofNSigmaElTrack, tofNSigmaElTrack, float); //! tofNSigma of the electron track(TOF PID)
89+
DECLARE_SOA_COLUMN(TpcNClsCrRowsTrack, tpcNClsCrRowsTrack, float); //! Number of crossed TPC Rows in electron track
90+
DECLARE_SOA_COLUMN(TpcCrRowsRatioTrack, tpcCrRowsRatioTrack, float); //! Ratio crossed rows over findable clusters electron track
91+
DECLARE_SOA_COLUMN(ItsChi2NClTrack, itsChi2NClTrack, float); //! Chi2 / cluster for the ITS electron track
92+
DECLARE_SOA_COLUMN(TpcChi2NClTrack, tpcChi2NClTrack, float); //! Chi2 / cluster for the TPC electron track
93+
DECLARE_SOA_COLUMN(DcaXYTrack, dcaXYTrack, float); //! dca of the electron in xy direction
94+
DECLARE_SOA_COLUMN(DcaZTrack, dcaZTrack, float); //! dca of the electron in z direction
95+
96+
DECLARE_SOA_COLUMN(M02El, m02El, float); //! M02 of the electron cluster
97+
DECLARE_SOA_COLUMN(EopEl, eopEl, float); //! energy momentum ratio of the electron
98+
DECLARE_SOA_COLUMN(LSMassEE, lSMassEE, std::vector<float>); //! mass of the Like sign electron pair
99+
DECLARE_SOA_COLUMN(ULSMassEE, uLSMassEE, std::vector<float>); //! mass of UnLike sign electron pair
100+
DECLARE_SOA_COLUMN(NElPairLS, nElPairLS, int); //! Number of Like sign electron pair
101+
DECLARE_SOA_COLUMN(NElPairUS, nElPairUS, int); //! Number of UnLike sign electron pair
102+
DECLARE_SOA_COLUMN(IsEmcal, isEmcal, bool); //! electron information
91103
} // namespace hf_corr_sel_electron
92104

93105
DECLARE_SOA_TABLE(HfCorrSelEl, "AOD", "HfCORRSELEL", //! Electron Informations
@@ -98,6 +110,16 @@ DECLARE_SOA_TABLE(HfCorrSelEl, "AOD", "HfCORRSELEL", //! Electron Informations
98110
hf_corr_sel_electron::PtTrack,
99111
hf_corr_sel_electron::TpcNSigmaElTrack,
100112
hf_corr_sel_electron::TofNSigmaElTrack,
113+
hf_corr_sel_electron::TpcNClsCrRowsTrack,
114+
hf_corr_sel_electron::TpcCrRowsRatioTrack,
115+
hf_corr_sel_electron::ItsChi2NClTrack,
116+
hf_corr_sel_electron::TpcChi2NClTrack,
117+
hf_corr_sel_electron::DcaXYTrack,
118+
hf_corr_sel_electron::DcaZTrack,
119+
hf_corr_sel_electron::EopEl,
120+
hf_corr_sel_electron::M02El,
121+
hf_corr_sel_electron::LSMassEE,
122+
hf_corr_sel_electron::ULSMassEE,
101123
hf_corr_sel_electron::NElPairLS,
102124
hf_corr_sel_electron::NElPairUS,
103125
hf_corr_sel_electron::IsEmcal);

0 commit comments

Comments
 (0)