Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion PWGHF/HFC/DataModel/DerivedDataCorrelationTables.h
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ DECLARE_SOA_TABLE(HfcRedSEChBases, "AOD", "HFCREDSECHBASE", //! Table with Same
aod::hf_correl_charm_had_reduced::PtAssoc,
aod::hf_correl_charm_had_reduced::DeltaEta,
aod::hf_correl_charm_had_reduced::DeltaPhi);

DECLARE_SOA_TABLE(HfcRedSEHadBases, "AOD", "HFCREDSEHADBASE", //! Table with Same Event Trig-Assoc pairs
aod::hf_correl_charm_had_reduced::HfcRedCorrCollId,
aod::hf_correl_charm_had_reduced::HfcRedTrigTrackId,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -62,14 +62,14 @@ enum CandType {

/// Code to select collisions with at least one Ds meson
struct HfDerivedDataCreatorCorrelationsReduced {
Produces<aod::HfcRedCorrColls> rowCollisions; // Table with reduced collision info
Produces<aod::HfcRedSEChBases> rowSECharmHadPairs; // Table with same-event pairs info
Produces<aod::HfcRedSEHadBases> rowSEHadHadPairs; // Table with same-event pairs info
Produces<aod::HfcRedAssBases> rowAssocBases; // Table with associated candidate base info
Produces<aod::HfcRedAssTracks> rowAssocTrkSels; // Table with associated track selection info
Produces<aod::HfcRedTrigBases> rowTrigBases; // Table with base trigger candidate info
Produces<aod::HfcRedTrigCharms> rowTrigCharms; // Table with charm trigger candidate selection info
Produces<aod::HfcRedTrigTracks> rowTrigHads; // Table with hadron trigger candidate selection info
Produces<aod::HfcRedCorrColls> rowCollisions; // Table with reduced collision info
Produces<aod::HfcRedSEChBases> rowSECharmHadPairs; // Table with same-event pairs info
Produces<aod::HfcRedSEHadBases> rowSEHadHadPairs; // Table with same-event pairs info
Produces<aod::HfcRedAssBases> rowAssocBases; // Table with associated candidate base info
Produces<aod::HfcRedAssTracks> rowAssocTrkSels; // Table with associated track selection info
Produces<aod::HfcRedTrigBases> rowTrigBases; // Table with base trigger candidate info
Produces<aod::HfcRedTrigCharms> rowTrigCharms; // Table with charm trigger candidate selection info
Produces<aod::HfcRedTrigTracks> rowTrigHads; // Table with hadron trigger candidate selection info

Configurable<int> centEstimator{"centEstimator", 2, "Centrality estimation (FT0A: 1, FT0C: 2, FT0M: 3, FV0A: 4)"};
Configurable<int> selectionFlag{"selectionFlag", 15, "Selection Flag for hadron (ML score tables are required to run the task)"};
Expand Down
Loading