Skip to content

Commit 518416c

Browse files
[PWGHF] created a duplicate task to correlate Lc and Sc with hadrons (#11384)
Co-authored-by: ALICE Action Bot <alibuild@cern.ch>
1 parent ed9eda3 commit 518416c

File tree

3 files changed

+1090
-1
lines changed

3 files changed

+1090
-1
lines changed

PWGHF/HFC/DataModel/CorrelationTables.h

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,6 +147,7 @@ DECLARE_SOA_COLUMN(DeltaEta, deltaEta, float); //! D
147147
DECLARE_SOA_COLUMN(DeltaY, deltaY, float); //! DeltaY between Lc and Hadrons
148148
DECLARE_SOA_COLUMN(PtLc, ptLc, float); //! Transverse momentum of Lc
149149
DECLARE_SOA_COLUMN(PtHadron, ptHadron, float); //! Transverse momentum of Hadron
150+
DECLARE_SOA_COLUMN(ChargeCand, chargeCand, int); //! store charge of Lc and Sc
150151
DECLARE_SOA_COLUMN(MLc, mLc, float); //! Invariant mass of Lc
151152
DECLARE_SOA_COLUMN(MlScoreBkg, mlScoreBkg, float); //! ML background score for Lc selection
152153
DECLARE_SOA_COLUMN(MlScorePrompt, mlScorePrompt, float); //! ML prompt score for Lc selection
@@ -216,8 +217,14 @@ DECLARE_SOA_TABLE(TrkRecInfoLc, "AOD", "TRKRECINFOLC", //! Tracks Reconstructed
216217
aod::hf_correlation_lc_hadron::TrackDcaXY,
217218
aod::hf_correlation_lc_hadron::TrackDcaZ,
218219
aod::hf_correlation_lc_hadron::TrackTPCNClsCrossedRows);
219-
DECLARE_SOA_TABLE(LcHadronPairY, "AOD", "LCHPAIRY", //! Lc candidates Generated Information
220+
221+
DECLARE_SOA_TABLE(LcHadronPairY, "AOD", "LCHPAIRY",
220222
aod::hf_correlation_lc_hadron::DeltaY);
223+
DECLARE_SOA_TABLE(CandChargePair, "AOD", "CANDCHARGEPAIR",
224+
aod::hf_correlation_lc_hadron::ChargeCand);
225+
DECLARE_SOA_TABLE(CandCharge, "AOD", "CANDCHARGE",
226+
aod::hf_correlation_lc_hadron::ChargeCand);
227+
221228
// definition of columns and tables for Ds-Hadron correlation pairs
222229
namespace hf_correlation_ds_hadron
223230
{

PWGHF/HFC/TableProducer/CMakeLists.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,11 @@ o2physics_add_dpl_workflow(correlator-lc-hadrons
6464
PUBLIC_LINK_LIBRARIES O2Physics::AnalysisCore
6565
COMPONENT_NAME Analysis)
6666

67+
o2physics_add_dpl_workflow(correlator-lc-sc-hadrons
68+
SOURCES correlatorLcScHadrons.cxx
69+
PUBLIC_LINK_LIBRARIES O2Physics::AnalysisCore
70+
COMPONENT_NAME Analysis)
71+
6772
o2physics_add_dpl_workflow(femto-dream-producer
6873
SOURCES femtoDreamProducer.cxx
6974
PUBLIC_LINK_LIBRARIES O2Physics::AnalysisCore O2Physics::EventFilteringUtils O2Physics::MLCore

0 commit comments

Comments
 (0)