Skip to content

Commit f60db5c

Browse files
authored
Update CorrelationTables.h
1 parent 3634721 commit f60db5c

File tree

1 file changed

+23
-20
lines changed

1 file changed

+23
-20
lines changed

PWGHF/HFC/DataModel/CorrelationTables.h

Lines changed: 23 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -441,6 +441,7 @@ DECLARE_SOA_COLUMN(DmesonSel, dmesonSel, bool); //! Selection flag for D meson i
441441
DECLARE_SOA_TABLE(DmesonSelection, "AOD", "DINCOLL", // Selection of D meson in collisions
442442
aod::hf_selection_dmeson_collision::DmesonSel);
443443

444+
444445
// Note: definition of columns and tables for Electron Hadron correlation pairs
445446
namespace hf_correlation_electron_hadron
446447
{
@@ -449,34 +450,36 @@ DECLARE_SOA_COLUMN(DeltaEta, deltaEta, float); //! DeltaEta between Electron
449450
DECLARE_SOA_COLUMN(PtElectron, ptElectron, float); //! Transverse momentum of Electron
450451
DECLARE_SOA_COLUMN(PtHadron, ptHadron, float); //! Transverse momentum of Hadron;
451452
DECLARE_SOA_COLUMN(PoolBin, poolBin, int); //! Pool Bin of event defined using zvtx and multiplicity
453+
DECLARE_SOA_COLUMN(IsLSEHCorr, isLSEHCorr, int); //! Pool Bin of event defined using zvtx and multiplicity
454+
DECLARE_SOA_COLUMN(IsULSEHCorr, isULSEHCorr, int); //! Pool Bin of event defined using zvtx and multiplicity
452455
} // namespace hf_correlation_electron_hadron
453456
DECLARE_SOA_TABLE(HfEHadronPair, "AOD", "HFEHADRONPAIR", //! Hfe-Hadrons pairs Informations
454457
hf_correlation_electron_hadron::DeltaPhi,
455458
hf_correlation_electron_hadron::DeltaEta,
456459
hf_correlation_electron_hadron::PtElectron,
457460
hf_correlation_electron_hadron::PtHadron,
458-
hf_correlation_electron_hadron::PoolBin);
461+
hf_correlation_electron_hadron::PoolBin,
462+
hf_correlation_electron_hadron::IsLSEHCorr,
463+
hf_correlation_electron_hadron::IsULSEHCorr);
459464

460-
// definition of columns and tables for Mc Gen HfElectron Selection
461-
namespace HfMcGen_sel_electron
465+
// Note: definition of columns and tables for Electron Hadron correlation pairs for MC Gen
466+
namespace hf_correlation_McGenelectron_hadron
462467
{
463-
DECLARE_SOA_INDEX_COLUMN(McCollision, mcCollision); //! collisioniD of the electron track
464-
DECLARE_SOA_INDEX_COLUMN(Track, track); //! trackid of of the electron track
465-
DECLARE_SOA_COLUMN(EtaTrack, etaTrack, float); //! pseudorapidity of the electron track
466-
DECLARE_SOA_COLUMN(PhiTrack, phiTrack, float); //! azimuth of the electron track
467-
DECLARE_SOA_COLUMN(PtTrack, ptTrack, float); //! transverse momentum of the electron track
468-
DECLARE_SOA_COLUMN(IsNonHfe, isNonHfe, bool); //! Non-Heavy flavour electron information
469-
470-
} // namespace HfMcGen_sel_electron
471-
472-
DECLARE_SOA_TABLE(HfMcGenSelEl, "AOD", "HFMCGENEESELEL", //! Electron Informations
473-
o2::soa::Index<>,
474-
HfMcGen_sel_electron::McCollisionId,
475-
HfMcGen_sel_electron::TrackId,
476-
HfMcGen_sel_electron::EtaTrack,
477-
HfMcGen_sel_electron::PhiTrack,
478-
HfMcGen_sel_electron::PtTrack,
479-
HfMcGen_sel_electron::IsNonHfe);
468+
DECLARE_SOA_COLUMN(DeltaPhi, deltaPhi, float); //! DeltaPhi between Electron and Hadrons
469+
DECLARE_SOA_COLUMN(DeltaEta, deltaEta, float); //! DeltaEta between Electron and Hadrons
470+
DECLARE_SOA_COLUMN(PtElectron, ptElectron, float); //! Transverse momentum of Electron
471+
DECLARE_SOA_COLUMN(PtHadron, ptHadron, float); //! Transverse momentum of Hadron;
472+
DECLARE_SOA_COLUMN(PoolBin, poolBin, int); //! Pool Bin of event defined using zvtx and multiplicity
473+
DECLARE_SOA_COLUMN(IsNonHfEHCorr, isNonHfEHCorr, int); //! Pool Bin of event defined using zvtx and multiplicity
474+
475+
} // namespace hf_correlation_McGenelectron_hadron
476+
DECLARE_SOA_TABLE(HfEHadronMcGenPair, "AOD", "HFEHADRONMCGENPAIR", //! Hfe-Hadrons pairs Informations
477+
hf_correlation_McGenelectron_hadron::DeltaPhi,
478+
hf_correlation_McGenelectron_hadron::DeltaEta,
479+
hf_correlation_McGenelectron_hadron::PtElectron,
480+
hf_correlation_McGenelectron_hadron::PtHadron,
481+
hf_correlation_McGenelectron_hadron::PoolBin,
482+
hf_correlation_McGenelectron_hadron::IsNonHfEHCorr);
480483

481484
} // namespace o2::aod
482485

0 commit comments

Comments
 (0)