Skip to content

Commit ba1e278

Browse files
authored
PWGHF: Ds-h correlations, minor adjustments in assoc particle efficiency evaluation (#5577)
* Minor adjustments in assoc particle efficiency evaluation * Changing the code for evaluating systematics on candidate selection
1 parent cc34780 commit ba1e278

File tree

3 files changed

+191
-84
lines changed

3 files changed

+191
-84
lines changed

PWGHF/HFC/DataModel/CorrelationTables.h

Lines changed: 15 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -123,27 +123,39 @@ DECLARE_SOA_COLUMN(DeltaEta, deltaEta, float); //! DeltaEta bet
123123
DECLARE_SOA_COLUMN(PtD, ptD, float); //! Transverse momentum of Ds
124124
DECLARE_SOA_COLUMN(PtHadron, ptHadron, float); //! Transverse momentum of Hadron
125125
DECLARE_SOA_COLUMN(MD, mD, float); //! Invariant mass of Ds
126+
DECLARE_SOA_COLUMN(MlScoreBkg, mlScoreBkg, float); //! ML background score for Ds selection
127+
DECLARE_SOA_COLUMN(MlScorePrompt, mlScorePrompt, float); //! ML prompt score for Ds selection
126128
DECLARE_SOA_COLUMN(PoolBin, poolBin, int); //! Pool Bin for the MixedEvent
127129
DECLARE_SOA_COLUMN(IsSignal, isSignal, bool); //! Used in MC-Rec, Ds Signal
128130
DECLARE_SOA_COLUMN(IsPrompt, isPrompt, bool); //! Used in MC-Rec, Ds Prompt or Non-Prompt
129131
DECLARE_SOA_COLUMN(IsPhysicalPrimary, isPhysicalPrimary, bool); //! Used in MC-Rec, primary associated particles
130132
} // namespace hf_correlation_ds_hadron
131133

132-
DECLARE_SOA_TABLE(DsHadronPair, "AOD", "DSHPAIR", //! Ds-Hadrons pairs Informations
134+
DECLARE_SOA_TABLE(DsHadronPair, "AOD", "DSHPAIR", //! Ds-Hadrons pairs Information
133135
aod::hf_correlation_ds_hadron::DeltaPhi,
134136
aod::hf_correlation_ds_hadron::DeltaEta,
135137
aod::hf_correlation_ds_hadron::PtD,
136138
aod::hf_correlation_ds_hadron::PtHadron,
137139
aod::hf_correlation_ds_hadron::PoolBin);
138140

139-
DECLARE_SOA_TABLE(DsHadronRecoInfo, "AOD", "DSHRECOINFO", //! Ds-Hadrons pairs Reconstructed Informations
141+
DECLARE_SOA_TABLE(DsHadronRecoInfo, "AOD", "DSHRECOINFO", //! Ds-Hadrons pairs Reconstructed Information
140142
aod::hf_correlation_ds_hadron::MD,
141143
aod::hf_correlation_ds_hadron::IsSignal);
142144

143-
DECLARE_SOA_TABLE(DsHadronGenInfo, "AOD", "DSHGENINFO", //! Ds-Hadrons pairs Generated Informations
145+
DECLARE_SOA_TABLE(DsHadronGenInfo, "AOD", "DSHGENINFO", //! Ds-Hadrons pairs Generated Information
144146
aod::hf_correlation_ds_hadron::IsPrompt,
145147
aod::hf_correlation_ds_hadron::IsPhysicalPrimary);
146148

149+
DECLARE_SOA_TABLE(DsHadronMlInfo, "AOD", "DSHMLINFO", //! Ds-Hadrons pairs Machine Learning Information
150+
aod::hf_correlation_ds_hadron::MlScorePrompt,
151+
aod::hf_correlation_ds_hadron::MlScoreBkg);
152+
153+
DECLARE_SOA_TABLE(DsCandRecoInfo, "AOD", "DSCANDRECOINFO", //! Ds candidates Reconstructed Information
154+
aod::hf_correlation_ds_hadron::MD,
155+
aod::hf_correlation_ds_hadron::PtD,
156+
aod::hf_correlation_ds_hadron::MlScorePrompt,
157+
aod::hf_correlation_ds_hadron::MlScoreBkg);
158+
147159
// definition of columns and tables for Dplus properties
148160
namespace hf_dplus_meson
149161
{

0 commit comments

Comments
 (0)