Skip to content

Commit ad748e7

Browse files
authored
Remove build error
1 parent c787157 commit ad748e7

File tree

1 file changed

+28
-6
lines changed

1 file changed

+28
-6
lines changed

PWGHF/HFC/DataModel/CorrelationTables.h

Lines changed: 28 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -509,6 +509,29 @@ DECLARE_SOA_COLUMN(TimeStamp, timeStamp, int64_t); //! Timestamp for the colli
509509

510510
} // namespace hf_electron
511511

512+
DECLARE_SOA_TABLE(HfElectron, "AOD", "HFELECTRON", //! Hf Electron properties
513+
aod::hf_electron::PhiElectron,
514+
aod::hf_electron::EtaElectron,
515+
aod::hf_electron::PtElectron,
516+
aod::hf_electron::NElectronsLS,
517+
aod::hf_electron::NElectronsUS,
518+
aod::hf_electron::PoolBin,
519+
aod::hf_electron::GIndexCol,
520+
aod::hf_electron::TimeStamp);
521+
// Note: definition of columns and tables for Electron Hadron correlation pairs for Data
522+
namespace hf_electron
523+
{
524+
DECLARE_SOA_COLUMN(PhiElectron, phiElectron, float); //! Phi of electron
525+
DECLARE_SOA_COLUMN(EtaElectron, etaElectron, float); //! Eta of electron
526+
DECLARE_SOA_COLUMN(PtElectron, ptElectron, float); //! Transverse momentum of electron
527+
DECLARE_SOA_COLUMN(NElectronsLS, nElectronsLS, int); //! number of like-sign
528+
DECLARE_SOA_COLUMN(NElectronsUS, nElectronsUS, int); //! number of Unlike-sign
529+
DECLARE_SOA_COLUMN(PoolBin, poolBin, int); //! Pool Bin of event defined using zvtx and multiplicit
530+
DECLARE_SOA_COLUMN(GIndexCol, gIndexCol, int); //! Global index for the collision
531+
DECLARE_SOA_COLUMN(TimeStamp, timeStamp, int64_t); //! Timestamp for the collision
532+
533+
} // namespace hf_electron
534+
512535
DECLARE_SOA_TABLE(HfElectron, "AOD", "HFELECTRON", //! Hf Electron properties
513536
aod::hf_electron::PhiElectron,
514537
aod::hf_electron::EtaElectron,
@@ -528,16 +551,16 @@ DECLARE_SOA_COLUMN(PtHadron, ptHadron, float); //! Transverse momentum o
528551
DECLARE_SOA_COLUMN(EopElectron, eopElectron, float); //! enery momentum ratio for Electron
529552
DECLARE_SOA_COLUMN(M02Electron, m02Electron, float); //! M02 of Electron
530553
DECLARE_SOA_COLUMN(TpcNSigmaEle, tpcNSigmaEle, float); //! TPCn Sigma of Electron
531-
DECLARE_SOA_COLUMN(TofnSigmaEle, tofNSigmaEle, float); //! TOFn Sigma of Electron
554+
DECLARE_SOA_COLUMN(TofNSigmaEle, tofNSigmaEle, float); //! TOFn Sigma of Electron
532555

533-
DECLARE_SOA_COLUMN(TpcNClsCrRowsEle, tpcNClsCrossedRowsEle, float); //! tpcNClsCrossedRows for Electron
556+
DECLARE_SOA_COLUMN(TpcNClsCrRowsEle, tpcNClsCrRowsEle, float); //! tpcNClsCrossedRows for Electron
534557
DECLARE_SOA_COLUMN(TpcCrRowsRatioEle, tpcCrRowsRatioEle, float); //! Ratio crossed rows over findable clusters electron track
535558
DECLARE_SOA_COLUMN(ItsChi2NClEle, itsChi2NClEle, float); //! itsChi2NCl of Electron
536559
DECLARE_SOA_COLUMN(TpcChi2NClEle, tpcChi2NClEle, float); //! TPC Chi2NCl of electron;
537560
DECLARE_SOA_COLUMN(DcaXYEle, dcaXYEle, float); //! DCAXY of Electron
538561
DECLARE_SOA_COLUMN(DcaZEle, dcaZEle, float); //! DCAZ of Electron
539562

540-
DECLARE_SOA_COLUMN(TpcNClsCrRowsHad, tpcNClsCrossedRowsHad, float); //! tpcNClsCrossedRows for Hadron
563+
DECLARE_SOA_COLUMN(TpcNClsCrRowsHad, tpcNClsCrRowsHad, float); //! tpcNClsCrossedRows for Hadron
541564
DECLARE_SOA_COLUMN(TpcCrRowsRatioHad, tpcCrRowsRatioHad, float); //! Ratio crossed rows over findable clusters Hadron track
542565
DECLARE_SOA_COLUMN(ItsChi2NClHad, itsChi2NClHad, float); //! itsChi2NCl of Hadron
543566
DECLARE_SOA_COLUMN(TpcChi2NClHad, tpcChi2NClHad, float); //! TPC Chi2NCl of Hadron;
@@ -555,8 +578,8 @@ DECLARE_SOA_TABLE(HfEHadronPair, "AOD", "HFEHADRONPAIR", //! Hfe-Hadrons pairs I
555578
hf_correlation_electron_hadron::PtHadron,
556579
hf_correlation_electron_hadron::EopElectron,
557580
hf_correlation_electron_hadron::M02Electron,
558-
hf_correlation_electron_hadron::TpcnSigmaEle,
559-
hf_correlation_electron_hadron::TofnSigmaEle,
581+
hf_correlation_electron_hadron::TpcNSigmaEle,
582+
hf_correlation_electron_hadron::TofNSigmaEle,
560583
hf_correlation_electron_hadron::TpcNClsCrRowsEle,
561584
hf_correlation_electron_hadron::TpcCrRowsRatioEle,
562585
hf_correlation_electron_hadron::ItsChi2NClEle,
@@ -572,7 +595,6 @@ DECLARE_SOA_TABLE(HfEHadronPair, "AOD", "HFEHADRONPAIR", //! Hfe-Hadrons pairs I
572595
hf_correlation_electron_hadron::PoolBin,
573596
hf_correlation_electron_hadron::NPairsLS,
574597
hf_correlation_electron_hadron::NPairsUS);
575-
576598
// Note: definition of columns and tables for Electron Hadron correlation pairs for MC Gen
577599
namespace hf_correlation_mcgenelectron_hadron
578600
{

0 commit comments

Comments
 (0)