Skip to content

Commit 616b932

Browse files
authored
correct build error
1 parent a7c5266 commit 616b932

File tree

1 file changed

+23
-24
lines changed

1 file changed

+23
-24
lines changed

PWGHF/HFL/DataModel/ElectronSelectionTable.h

Lines changed: 23 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
namespace o2::aod
2424
{
25-
// definition of columns and tables forElectron Selection
25+
// definition of columns and tables for electron selection
2626
namespace hf_sel_electron
2727
{
2828
DECLARE_SOA_INDEX_COLUMN(Collision, collision); //! collisioniD of the electron track
@@ -31,11 +31,11 @@ DECLARE_SOA_COLUMN(EtaTrack, etaTrack, float); //! pseudorapidit
3131
DECLARE_SOA_COLUMN(PhiTrack, phiTrack, float); //! azimuth of the electron track
3232
DECLARE_SOA_COLUMN(PtTrack, ptTrack, float); //! transverse momentum of the electron track
3333
DECLARE_SOA_COLUMN(PTrack, pTrack, float); //! momentum of the electron track
34-
DECLARE_SOA_COLUMN(RapidityTrack, rapadityTrack, float); //! rapidity of the electron track
34+
DECLARE_SOA_COLUMN(RapidityTrack, rapidityTrack, float); //! rapidity of the electron track
3535
DECLARE_SOA_COLUMN(DcaXYTrack, dcaXYTrack, float); //! dca of the electron in xy direction
3636
DECLARE_SOA_COLUMN(DcaZTrack, dcaZTrack, float); //! dca of the electron in z direction
37-
DECLARE_SOA_COLUMN(TPCNSigmaElTrack, tpcNSigmaElTrack, float); //! tpcNSigma of the electron track(TPC PID)
38-
DECLARE_SOA_COLUMN(TOFNSigmaElTrack, tofNSigmaElTrack, float); //! tofNSigma of the electron track(TOF PID)
37+
DECLARE_SOA_COLUMN(TpcNSigmaElTrack, tpcNSigmaElTrack, float); //! tpcNSigma of the electron track(TPC PID)
38+
DECLARE_SOA_COLUMN(TofNSigmaElTrack, tofNSigmaElTrack, float); //! tofNSigma of the electron track(TOF PID)
3939

4040
// EMCal cluster values
4141
DECLARE_SOA_COLUMN(EnergyEmcCluster, energyEmcCluster, float); //! energy of the EMCal cluster
@@ -48,7 +48,7 @@ DECLARE_SOA_COLUMN(TimeEmcCluster, timeEmcCluster, float); //! time of the
4848

4949
DECLARE_SOA_COLUMN(DeltaEtaMatch, deltaEtaMatch, float); //! dEta matched track to EMCal cluster
5050
DECLARE_SOA_COLUMN(DeltaPhiMatch, deltaPhiMatch, float); //! dPhi matched track to EMCal cluster
51-
DECLARE_SOA_COLUMN(ISEmcal, isEmcal, bool); //! electron information
51+
DECLARE_SOA_COLUMN(IsEmcal, isEmcal, bool); //! electron information with Emcal
5252
} // namespace hf_sel_electron
5353
DECLARE_SOA_TABLE(HfSelEl, "AOD", "HFSELEL", //! Electron Informations
5454
o2::soa::Index<>,
@@ -61,8 +61,8 @@ DECLARE_SOA_TABLE(HfSelEl, "AOD", "HFSELEL", //! Electron Informations
6161
hf_sel_electron::RapidityTrack,
6262
hf_sel_electron::DcaXYTrack,
6363
hf_sel_electron::DcaZTrack,
64-
hf_sel_electron::TPCNSigmaElTrack,
65-
hf_sel_electron::TOFNSigmaElTrack,
64+
hf_sel_electron::TpcNSigmaElTrack,
65+
hf_sel_electron::TofNSigmaElTrack,
6666
hf_sel_electron::EnergyEmcCluster,
6767
hf_sel_electron::EtaEmcCluster,
6868
hf_sel_electron::PhiEmcCluster,
@@ -72,8 +72,7 @@ DECLARE_SOA_TABLE(HfSelEl, "AOD", "HFSELEL", //! Electron Informations
7272
hf_sel_electron::TimeEmcCluster,
7373
hf_sel_electron::DeltaEtaMatch,
7474
hf_sel_electron::DeltaPhiMatch,
75-
hf_sel_electron::ISEmcal);
76-
75+
hf_sel_electron::IsEmcal);
7776
// definition of columns and tables for HfcorrElectron Selection
7877
namespace Hf_corr_sel_electron
7978
{
@@ -82,11 +81,11 @@ DECLARE_SOA_INDEX_COLUMN(Track, track); //! trackid of of
8281
DECLARE_SOA_COLUMN(EtaTrack, etaTrack, float); //! pseudorapidity of the electron track
8382
DECLARE_SOA_COLUMN(PhiTrack, phiTrack, float); //! azimuth of the electron track
8483
DECLARE_SOA_COLUMN(PtTrack, ptTrack, float); //! transverse momentum of the electron track
85-
DECLARE_SOA_COLUMN(TPCNSigmaElTrack, tpcNSigmaElTrack, float); //! tpcNSigma of the electron track(TPC PID)
86-
DECLARE_SOA_COLUMN(TOFNSigmaElTrack, tofNSigmaElTrack, float); //! tofNSigma of the electron track(TOF PID)
84+
DECLARE_SOA_COLUMN(TpcNSigmaElTrack, tpcNSigmaElTrack, float); //! tpcNSigma of the electron track(TPC PID)
85+
DECLARE_SOA_COLUMN(TofNSigmaElTrack, tofNSigmaElTrack, float); //! tofNSigma of the electron track(TOF PID)
8786
DECLARE_SOA_COLUMN(IsLSElectron, isLSElectron, int); //! Like sign electron information
8887
DECLARE_SOA_COLUMN(IsULSElectron, isULSElectron, int); //! Unlike sign electron information
89-
DECLARE_SOA_COLUMN(ISEmcal, isEmcal, bool); //! electron information
88+
DECLARE_SOA_COLUMN(IsEmcal, isEmcal, bool); //! electron information
9089
} // namespace Hf_corr_sel_electron
9190

9291
DECLARE_SOA_TABLE(HfCorrSelEl, "AOD", "HfCORRSELEL", //! Electron Informations
@@ -96,32 +95,32 @@ DECLARE_SOA_TABLE(HfCorrSelEl, "AOD", "HfCORRSELEL", //! Electron Informations
9695
Hf_corr_sel_electron::EtaTrack,
9796
Hf_corr_sel_electron::PhiTrack,
9897
Hf_corr_sel_electron::PtTrack,
99-
Hf_corr_sel_electron::TPCNSigmaElTrack,
100-
Hf_corr_sel_electron::TOFNSigmaElTrack,
98+
Hf_corr_sel_electron::TpcNSigmaElTrack,
99+
Hf_corr_sel_electron::TofNSigmaElTrack,
101100
Hf_corr_sel_electron::IsLSElectron,
102101
Hf_corr_sel_electron::IsULSElectron,
103-
Hf_corr_sel_electron::ISEmcal);
102+
Hf_corr_sel_electron::IsEmcal);
104103

105104
// definition of columns and tables for Mc Gen HfElectron Selection
106105
namespace HfMcGen_sel_electron
107106
{
108107
DECLARE_SOA_INDEX_COLUMN(McCollision, mcCollision); //! collisioniD of the electron track
109108
DECLARE_SOA_INDEX_COLUMN(Track, track); //! trackid of of the electron track
110-
DECLARE_SOA_COLUMN(EtaTrack, etaTrack, float); //! pseudorapidity of the electron track
111-
DECLARE_SOA_COLUMN(PhiTrack, phiTrack, float); //! azimuth of the electron track
112-
DECLARE_SOA_COLUMN(PtTrack, ptTrack, float); //! transverse momentum of the electron track
113-
DECLARE_SOA_COLUMN(IsNonHfe, isNonHfe, bool); //! Non-Heavy flavour electron information
109+
DECLARE_SOA_COLUMN(EtaTrackMc, etaTrackMc, float); //! pseudorapidity of the electron track
110+
DECLARE_SOA_COLUMN(PhiTrackMc, phiTrackMc, float); //! azimuth of the electron track
111+
DECLARE_SOA_COLUMN(PtTrackMc, ptTrackMc, float); //! transverse momentum of the electron track
112+
DECLARE_SOA_COLUMN(IsNonHfeMc, isNonHfeMc, bool); //! Non-Heavy flavour electron information
114113

115114
} // namespace HfMcGen_sel_electron
116115

117-
DECLARE_SOA_TABLE(HfMcGenSelEl, "AOD", "HFMCGENEESELEL", //! Electron Informations
116+
DECLARE_SOA_TABLE(HfMcGenSelEl, "AOD", "HFMCGENSELEL", //! Electron Informations
118117
o2::soa::Index<>,
119118
HfMcGen_sel_electron::McCollisionId,
120119
HfMcGen_sel_electron::TrackId,
121-
HfMcGen_sel_electron::EtaTrack,
122-
HfMcGen_sel_electron::PhiTrack,
123-
HfMcGen_sel_electron::PtTrack,
124-
HfMcGen_sel_electron::IsNonHfe);
120+
HfMcGen_sel_electron::EtaTrackMc,
121+
HfMcGen_sel_electron::PhiTrackMc,
122+
HfMcGen_sel_electron::PtTrackMc,
123+
HfMcGen_sel_electron::IsNonHfeMc);
125124
} // namespace o2::aod
126125

127126
#endif // PWGHF_HFL_DATAMODEL_ELECTRONSELECTIONTABLE_H_

0 commit comments

Comments
 (0)