Skip to content

Commit 1b27f0a

Browse files
authored
Add new for soft pion
1 parent 222a308 commit 1b27f0a

1 file changed

Lines changed: 44 additions & 10 deletions

File tree

PWGHF/HFC/DataModel/CorrelationTables.h

Lines changed: 44 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -236,8 +236,7 @@ DECLARE_SOA_TABLE(LcRecoInfo, "AOD", "LCRECOINFO", //! Lc candidates Reconstruct
236236
aod::hf_correlation_lc_hadron::PtLc,
237237
aod::hf_correlation_lc_hadron::MlScoreBkg,
238238
aod::hf_correlation_lc_hadron::MlScorePrompt,
239-
aod::hf_correlation_lc_hadron::PoolBin
240-
);
239+
aod::hf_correlation_lc_hadron::PoolBin);
241240

242241
DECLARE_SOA_TABLE(LcGenInfo, "AOD", "LCGENOINFO", //! Lc candidates Generated Information
243242
aod::hf_correlation_lc_hadron::IsPrompt);
@@ -537,22 +536,57 @@ DECLARE_SOA_TABLE(HfElectron, "AOD", "HFELECTRON", //! Hf Electron properties
537536
aod::hf_electron::PoolBin,
538537
aod::hf_electron::GIndexCol,
539538
aod::hf_electron::TimeStamp);
540-
539+
// Note: definition of columns and tables for Electron Hadron correlation pairs for Data
541540
namespace hf_correlation_electron_hadron
542541
{
543-
DECLARE_SOA_COLUMN(DeltaPhi, deltaPhi, float); //! DeltaPhi between Electron and Hadrons
544-
DECLARE_SOA_COLUMN(DeltaEta, deltaEta, float); //! DeltaEta between Electron and Hadrons
545-
DECLARE_SOA_COLUMN(PtElectron, ptElectron, float); //! Transverse momentum of Electron
546-
DECLARE_SOA_COLUMN(PtHadron, ptHadron, float); //! Transverse momentum of Hadron;
547-
DECLARE_SOA_COLUMN(PoolBin, poolBin, int); //! Pool Bin of event defined using zvtx and multiplicity
548-
DECLARE_SOA_COLUMN(NPairsLS, nPairsLS, int); //! number of like-sign electron-hadron pairs
549-
DECLARE_SOA_COLUMN(NPairsUS, nPairsUS, int); //! number of unlike-sign electron-hadron pairs
542+
DECLARE_SOA_COLUMN(DeltaPhi, deltaPhi, float); //! DeltaPhi between Electron and Hadrons
543+
DECLARE_SOA_COLUMN(DeltaEta, deltaEta, float); //! DeltaEta between Electron and Hadrons
544+
DECLARE_SOA_COLUMN(PtElectron, ptElectron, float); //! Transverse momentum of Electron
545+
DECLARE_SOA_COLUMN(PtHadron, ptHadron, float); //! Transverse momentum of Hadron;
546+
DECLARE_SOA_COLUMN(EopElectron, eopElectron, float); //! enery momentum ratio for Electron
547+
DECLARE_SOA_COLUMN(M02Electron, m02Electron, float); //! M02 of Electron
548+
DECLARE_SOA_COLUMN(TpcNSigmaEle, tpcNSigmaEle, float); //! TPCn Sigma of Electron
549+
DECLARE_SOA_COLUMN(TofNSigmaEle, tofNSigmaEle, float); //! TOFn Sigma of Electron
550+
551+
DECLARE_SOA_COLUMN(TpcNClsCrRowsEle, tpcNClsCrRowsEle, float); //! tpcNClsCrossedRows for Electron
552+
DECLARE_SOA_COLUMN(TpcCrRowsRatioEle, tpcCrRowsRatioEle, float); //! Ratio crossed rows over findable clusters electron track
553+
DECLARE_SOA_COLUMN(ItsChi2NClEle, itsChi2NClEle, float); //! itsChi2NCl of Electron
554+
DECLARE_SOA_COLUMN(TpcChi2NClEle, tpcChi2NClEle, float); //! TPC Chi2NCl of electron;
555+
DECLARE_SOA_COLUMN(DcaXYEle, dcaXYEle, float); //! DCAXY of Electron
556+
DECLARE_SOA_COLUMN(DcaZEle, dcaZEle, float); //! DCAZ of Electron
557+
558+
DECLARE_SOA_COLUMN(TpcNClsCrRowsHad, tpcNClsCrRowsHad, float); //! tpcNClsCrossedRows for Hadron
559+
DECLARE_SOA_COLUMN(TpcCrRowsRatioHad, tpcCrRowsRatioHad, float); //! Ratio crossed rows over findable clusters Hadron track
560+
DECLARE_SOA_COLUMN(ItsChi2NClHad, itsChi2NClHad, float); //! itsChi2NCl of Hadron
561+
DECLARE_SOA_COLUMN(TpcChi2NClHad, tpcChi2NClHad, float); //! TPC Chi2NCl of Hadron;
562+
DECLARE_SOA_COLUMN(DcaXYHad, dcaXYHad, float); //! DCAXY of Hadron
563+
DECLARE_SOA_COLUMN(DcaZHad, dcaZHad, float); //! DCAZ of Hadron
564+
565+
DECLARE_SOA_COLUMN(PoolBin, poolBin, int); //! Pool Bin of event defined using zvtx and multiplicity
566+
DECLARE_SOA_COLUMN(NPairsLS, nPairsLS, int); //! number of like-sign electron-hadron pairs
567+
DECLARE_SOA_COLUMN(NPairsUS, nPairsUS, int); //! number of unlike-sign electron-hadron pairs
550568
} // namespace hf_correlation_electron_hadron
551569
DECLARE_SOA_TABLE(HfEHadronPair, "AOD", "HFEHADRONPAIR", //! Hfe-Hadrons pairs Informations
552570
hf_correlation_electron_hadron::DeltaPhi,
553571
hf_correlation_electron_hadron::DeltaEta,
554572
hf_correlation_electron_hadron::PtElectron,
555573
hf_correlation_electron_hadron::PtHadron,
574+
hf_correlation_electron_hadron::EopElectron,
575+
hf_correlation_electron_hadron::M02Electron,
576+
hf_correlation_electron_hadron::TpcNSigmaEle,
577+
hf_correlation_electron_hadron::TofNSigmaEle,
578+
hf_correlation_electron_hadron::TpcNClsCrRowsEle,
579+
hf_correlation_electron_hadron::TpcCrRowsRatioEle,
580+
hf_correlation_electron_hadron::ItsChi2NClEle,
581+
hf_correlation_electron_hadron::TpcChi2NClEle,
582+
hf_correlation_electron_hadron::DcaXYEle,
583+
hf_correlation_electron_hadron::DcaZEle,
584+
hf_correlation_electron_hadron::TpcNClsCrRowsHad,
585+
hf_correlation_electron_hadron::TpcCrRowsRatioHad,
586+
hf_correlation_electron_hadron::ItsChi2NClHad,
587+
hf_correlation_electron_hadron::TpcChi2NClHad,
588+
hf_correlation_electron_hadron::DcaXYHad,
589+
hf_correlation_electron_hadron::DcaZHad,
556590
hf_correlation_electron_hadron::PoolBin,
557591
hf_correlation_electron_hadron::NPairsLS,
558592
hf_correlation_electron_hadron::NPairsUS);

0 commit comments

Comments
 (0)