Skip to content

Commit b856609

Browse files
authored
Add some variables in electron selection table
1 parent 8f850a4 commit b856609

1 file changed

Lines changed: 30 additions & 12 deletions

File tree

PWGHF/HFL/DataModel/ElectronSelectionTable.h

Lines changed: 30 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -79,18 +79,27 @@ DECLARE_SOA_TABLE(HfSelEl, "AOD", "HFSELEL", //! Electron Informations
7979
// definition of columns and tables for HfcorrElectron Selection
8080
namespace hf_corr_sel_electron
8181
{
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(LSMassEE, lSMassEE, std::vector<float>); //! mass of the Like sign electron pair
90-
DECLARE_SOA_COLUMN(ULSMassEE, uLSMassEE, std::vector<float>); //! mass of UnLike sign electron pair
91-
DECLARE_SOA_COLUMN(NElPairLS, nElPairLS, int); //! Number of Like sign electron pair
92-
DECLARE_SOA_COLUMN(NElPairUS, nElPairUS, int); //! Number of UnLike sign electron pair
93-
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
94103
} // namespace hf_corr_sel_electron
95104

96105
DECLARE_SOA_TABLE(HfCorrSelEl, "AOD", "HfCORRSELEL", //! Electron Informations
@@ -101,6 +110,14 @@ DECLARE_SOA_TABLE(HfCorrSelEl, "AOD", "HfCORRSELEL", //! Electron Informations
101110
hf_corr_sel_electron::PtTrack,
102111
hf_corr_sel_electron::TpcNSigmaElTrack,
103112
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,
104121
hf_corr_sel_electron::LSMassEE,
105122
hf_corr_sel_electron::ULSMassEE,
106123
hf_corr_sel_electron::NElPairLS,
@@ -129,3 +146,4 @@ DECLARE_SOA_TABLE(HfMcGenSelEl, "AOD", "HFMCGENSELEL", //! Electron Informations
129146
} // namespace o2::aod
130147

131148
#endif // PWGHF_HFL_DATAMODEL_ELECTRONSELECTIONTABLE_H_
149+

0 commit comments

Comments
 (0)