Skip to content

Commit 40d2fc7

Browse files
authored
Adding FDScore to the column
1 parent e219b04 commit 40d2fc7

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

PWGHF/HFC/DataModel/CorrelationTables.h

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -340,6 +340,7 @@ DECLARE_SOA_COLUMN(PtHadron, ptHadron, float); //! T
340340
DECLARE_SOA_COLUMN(MD, mD, float); //! Invariant mass of D+
341341
DECLARE_SOA_COLUMN(MlScoreBkg, mlScoreBkg, float); //! ML background score for D+ selection
342342
DECLARE_SOA_COLUMN(MlScorePrompt, mlScorePrompt, float); //! ML prompt score for D+ selection
343+
DECLARE_SOA_COLUMN(MlScoreFd, mlScoreFd, float); //! ML FD score for D+ selection
343344
DECLARE_SOA_COLUMN(SignalStatus, signalStatus, bool); //! Used in MC-Rec, D+ Signal
344345
DECLARE_SOA_COLUMN(PoolBin, poolBin, int); //! Pool Bin of event defined using zvtx and multiplicity
345346
DECLARE_SOA_COLUMN(TrackDcaXY, trackDcaXY, float); //! DCA xy of the track
@@ -370,13 +371,15 @@ DECLARE_SOA_TABLE(DplusHadronGenInfo, "AOD", "DPLUSHGENINFO", //! Ds-Hadrons pai
370371

371372
DECLARE_SOA_TABLE(DplusHadronMlInfo, "AOD", "DPLUSHMLINFO", //! D+-Hadrons pairs Machine Learning Information
372373
aod::hf_correlation_dplus_hadron::MlScoreBkg,
373-
aod::hf_correlation_dplus_hadron::MlScorePrompt);
374+
aod::hf_correlation_dplus_hadron::MlScorePrompt,
375+
aod::hf_correlation_dplus_hadron::MlScoreFd);
374376

375377
DECLARE_SOA_TABLE(DplusRecoInfo, "AOD", "DPLUSRECOINFO", //! D+ candidates Reconstructed Information
376378
aod::hf_correlation_dplus_hadron::MD,
377379
aod::hf_correlation_dplus_hadron::PtD,
378380
aod::hf_correlation_dplus_hadron::MlScoreBkg,
379-
aod::hf_correlation_dplus_hadron::MlScorePrompt);
381+
aod::hf_correlation_dplus_hadron::MlScorePrompt,
382+
aod::hf_correlation_dplus_hadron::MlScoreFd);
380383

381384
DECLARE_SOA_TABLE(DplusGenInfo, "AOD", "DPLUSGENOINFO", //! D+ candidates Generated Information
382385
aod::hf_correlation_dplus_hadron::IsPrompt);

0 commit comments

Comments
 (0)