Skip to content

Commit 683556a

Browse files
authored
Add LSmass and ULmass seprate column
Two separate columns are included in the analysis table: one corresponding to the LSmass selection and the other to the ULmass selection, and the common mass column has been removed.
1 parent c03d12c commit 683556a

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

PWGHF/HFL/DataModel/ElectronSelectionTable.h

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,8 @@ DECLARE_SOA_COLUMN(PhiTrack, phiTrack, float); //! azimuth of th
8585
DECLARE_SOA_COLUMN(PtTrack, ptTrack, float); //! transverse momentum of the electron track
8686
DECLARE_SOA_COLUMN(TpcNSigmaElTrack, tpcNSigmaElTrack, float); //! tpcNSigma of the electron track(TPC PID)
8787
DECLARE_SOA_COLUMN(TofNSigmaElTrack, tofNSigmaElTrack, float); //! tofNSigma of the electron track(TOF PID)
88-
DECLARE_SOA_COLUMN(InvariantMassEE, invariantMassEE, float); //! invariant mass of the non-Hfelectron
88+
DECLARE_SOA_COLUMN(LSMassEE, lSMassEE, std::vector<float>); //! mass of the Like sign electron pair
89+
DECLARE_SOA_COLUMN(ULSMassEE, uLSMassEE, std::vector<float>); //! mass of UnLike sign electron pair
8990
DECLARE_SOA_COLUMN(NElPairLS, nElPairLS, int); //! Number of Like sign electron pair
9091
DECLARE_SOA_COLUMN(NElPairUS, nElPairUS, int); //! Number of UnLike sign electron pair
9192
DECLARE_SOA_COLUMN(IsEmcal, isEmcal, bool); //! electron information
@@ -99,7 +100,8 @@ DECLARE_SOA_TABLE(HfCorrSelEl, "AOD", "HfCORRSELEL", //! Electron Informations
99100
hf_corr_sel_electron::PtTrack,
100101
hf_corr_sel_electron::TpcNSigmaElTrack,
101102
hf_corr_sel_electron::TofNSigmaElTrack,
102-
hf_corr_sel_electron::InvariantMassEE,
103+
hf_corr_sel_electron::LSMassEE,
104+
hf_corr_sel_electron::ULSMassEE,
103105
hf_corr_sel_electron::NElPairLS,
104106
hf_corr_sel_electron::NElPairUS,
105107
hf_corr_sel_electron::IsEmcal);

0 commit comments

Comments
 (0)