Skip to content

Commit 844c912

Browse files
authored
Adding variables to the electron–hadron correlation table.
1 parent c38be3f commit 844c912

1 file changed

Lines changed: 44 additions & 7 deletions

File tree

PWGHF/HFC/DataModel/CorrelationTables.h

Lines changed: 44 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -519,21 +519,58 @@ DECLARE_SOA_TABLE(HfElectron, "AOD", "HFELECTRON", //! Hf Electron properties
519519
aod::hf_electron::GIndexCol,
520520
aod::hf_electron::TimeStamp);
521521

522+
523+
// Note: definition of columns and tables for Electron Hadron correlation pairs for Data
522524
namespace hf_correlation_electron_hadron
523525
{
524-
DECLARE_SOA_COLUMN(DeltaPhi, deltaPhi, float); //! DeltaPhi between Electron and Hadrons
525-
DECLARE_SOA_COLUMN(DeltaEta, deltaEta, float); //! DeltaEta between Electron and Hadrons
526-
DECLARE_SOA_COLUMN(PtElectron, ptElectron, float); //! Transverse momentum of Electron
527-
DECLARE_SOA_COLUMN(PtHadron, ptHadron, float); //! Transverse momentum of Hadron;
528-
DECLARE_SOA_COLUMN(PoolBin, poolBin, int); //! Pool Bin of event defined using zvtx and multiplicity
529-
DECLARE_SOA_COLUMN(NPairsLS, nPairsLS, int); //! number of like-sign electron-hadron pairs
530-
DECLARE_SOA_COLUMN(NPairsUS, nPairsUS, int); //! number of unlike-sign electron-hadron pairs
526+
DECLARE_SOA_COLUMN(DeltaPhi, deltaPhi, float); //! DeltaPhi between Electron and Hadrons
527+
DECLARE_SOA_COLUMN(DeltaEta, deltaEta, float); //! DeltaEta between Electron and Hadrons
528+
DECLARE_SOA_COLUMN(PtElectron, ptElectron, float); //! Transverse momentum of Electron
529+
DECLARE_SOA_COLUMN(PtHadron, ptHadron, float); //! Transverse momentum of Hadron;
530+
DECLARE_SOA_COLUMN(EoPElectron, eopElectron, float); //! enery momentum ratio for Electron
531+
DECLARE_SOA_COLUMN(M02Electron, m02Electron, float); //! M02 of Electron
532+
DECLARE_SOA_COLUMN(TPCnSigmaEle, tpcnSigmaEle, float); //! TPCn Sigma of Electron
533+
DECLARE_SOA_COLUMN(TOFnSigmaEle, tofnSigmaEle, float); //! TOFn Sigma of Electron
534+
535+
DECLARE_SOA_COLUMN(TPCNClsCrRowsEle, tpcNClsCrossedRowsEle, float); //! tpcNClsCrossedRows for Electron
536+
DECLARE_SOA_COLUMN(TPCCrRowsRatioEle, tpcCrRowsRatioEle, float); //! Ratio crossed rows over findable clusters electron track
537+
DECLARE_SOA_COLUMN(ITSChi2NClEle, itsChi2NClEle, float); //! itsChi2NCl of Electron
538+
DECLARE_SOA_COLUMN(TPCChi2NClEle, tpcChi2NClEle, float); //! TPC Chi2NCl of electron;
539+
DECLARE_SOA_COLUMN(DCAXYEle, dcaXYEle, float); //! DCAXY for Electron
540+
DECLARE_SOA_COLUMN(DCAZEle, dcaZEle, float); //! M02 of Electron
541+
542+
DECLARE_SOA_COLUMN(TPCNClsCrRowsHad, tpcNClsCrossedRowsHad, float); //! tpcNClsCrossedRows for Hadron
543+
DECLARE_SOA_COLUMN(TPCCrRowsRatioHad, tpcCrRowsRatioHad, float); //! Ratio crossed rows over findable clusters Hadron track
544+
DECLARE_SOA_COLUMN(ITSChi2NClHad, itsChi2NClHad, float); //! itsChi2NCl of Hadron
545+
DECLARE_SOA_COLUMN(TPCChi2NClHad, tpcChi2NClHad, float); //! TPC Chi2NCl of Hadron;
546+
DECLARE_SOA_COLUMN(DCAXYHad, dcaXYHad, float); //! DCAXY for Hadron
547+
DECLARE_SOA_COLUMN(DCAZHad, dcaZHad, float); //! M02 of Hadron
548+
549+
DECLARE_SOA_COLUMN(PoolBin, poolBin, int); //! Pool Bin of event defined using zvtx and multiplicity
550+
DECLARE_SOA_COLUMN(NPairsLS, nPairsLS, int); //! number of like-sign electron-hadron pairs
551+
DECLARE_SOA_COLUMN(NPairsUS, nPairsUS, int); //! number of unlike-sign electron-hadron pairs
531552
} // namespace hf_correlation_electron_hadron
532553
DECLARE_SOA_TABLE(HfEHadronPair, "AOD", "HFEHADRONPAIR", //! Hfe-Hadrons pairs Informations
533554
hf_correlation_electron_hadron::DeltaPhi,
534555
hf_correlation_electron_hadron::DeltaEta,
535556
hf_correlation_electron_hadron::PtElectron,
536557
hf_correlation_electron_hadron::PtHadron,
558+
hf_correlation_electron_hadron::EoPElectron,
559+
hf_correlation_electron_hadron::M02Electron,
560+
hf_correlation_electron_hadron::TPCnSigmaEle,
561+
hf_correlation_electron_hadron::TOFnSigmaEle,
562+
hf_correlation_electron_hadron::TPCNClsCrRowsEle,
563+
hf_correlation_electron_hadron::TPCCrRowsRatioEle,
564+
hf_correlation_electron_hadron::ITSChi2NClEle,
565+
hf_correlation_electron_hadron::TPCChi2NClEle,
566+
hf_correlation_electron_hadron::DCAXYEle,
567+
hf_correlation_electron_hadron::DCAZEle,
568+
hf_correlation_electron_hadron::TPCNClsCrRowsHad,
569+
hf_correlation_electron_hadron::TPCCrRowsRatioHad,
570+
hf_correlation_electron_hadron::ITSChi2NClHad,
571+
hf_correlation_electron_hadron::TPCChi2NClHad,
572+
hf_correlation_electron_hadron::DCAXYHad,
573+
hf_correlation_electron_hadron::DCAZHad,
537574
hf_correlation_electron_hadron::PoolBin,
538575
hf_correlation_electron_hadron::NPairsLS,
539576
hf_correlation_electron_hadron::NPairsUS);

0 commit comments

Comments
 (0)