Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings
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
Original file line number Diff line number Diff line change
Expand Up @@ -644,6 +644,26 @@ DECLARE_SOA_TABLE(HfCandProng3MCGen, "AOD", "HFCANDP3MCGEN", //!
hf_cand_prong3::OriginMCGen,
hf_cand_prong3::FlagMCDecayChanGen);

// definition of columns and tables for D-Dbar correlation pairs
namespace hf_correlation_ddbar
{
DECLARE_SOA_COLUMN(DeltaPhi, deltaPhi, float);
DECLARE_SOA_COLUMN(DeltaEta, deltaEta, float);
DECLARE_SOA_COLUMN(PtD, ptD, float);
DECLARE_SOA_COLUMN(PtDbar, ptDbar, float);
DECLARE_SOA_COLUMN(MD, mD, float);
DECLARE_SOA_COLUMN(MDbar, mDbar, float);
DECLARE_SOA_COLUMN(SignalStatus, signalStatus, int);
} // namespace hf_correlation_ddbar
DECLARE_SOA_TABLE(DDbarPair, "AOD", "DDBARPAIR",
aod::hf_correlation_ddbar::DeltaPhi,
aod::hf_correlation_ddbar::DeltaEta,
aod::hf_correlation_ddbar::PtD,
aod::hf_correlation_ddbar::PtDbar);
DECLARE_SOA_TABLE(DDbarRecoInfo, "AOD", "DDBARRECOINFO",
aod::hf_correlation_ddbar::MD,
aod::hf_correlation_ddbar::MDbar,
aod::hf_correlation_ddbar::SignalStatus);
} // namespace o2::aod

#endif // O2_ANALYSIS_HFSECONDARYVERTEX_H_
20 changes: 17 additions & 3 deletions 20 Analysis/Tasks/PWGHF/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -80,9 +80,9 @@ o2_add_dpl_workflow(hf-xic-topkpi-candidate-selector

o2_add_dpl_workflow(hf-lc-tok0sp-candidate-selector
SOURCES HFLcK0sPCandidateSelector.cxx
PUBLIC_LINK_LIBRARIES O2::Framework O2::AnalysisDataModel O2::AnalysisCore O2::DetectorsVertexing O2::AnalysisTasksUtils
PUBLIC_LINK_LIBRARIES O2::Framework O2::AnalysisDataModel O2::AnalysisCore O2::DetectorsVertexing O2::AnalysisTasksUtils
COMPONENT_NAME Analysis)

o2_add_dpl_workflow(hf-task-d0
SOURCES taskD0.cxx
PUBLIC_LINK_LIBRARIES O2::Framework O2::AnalysisDataModel O2::AnalysisCore O2::DetectorsVertexing
Expand Down Expand Up @@ -125,6 +125,20 @@ o2_add_dpl_workflow(hf-mc-validation

o2_add_dpl_workflow(hf-task-lc-tok0sp
SOURCES taskLcK0sP.cxx
PUBLIC_LINK_LIBRARIES O2::Framework O2::AnalysisDataModel O2::AnalysisCore O2::DetectorsVertexing O2::AnalysisTasksUtils
PUBLIC_LINK_LIBRARIES O2::Framework O2::AnalysisDataModel O2::AnalysisCore O2::DetectorsVertexing O2::AnalysisTasksUtils
COMPONENT_NAME Analysis)

o2_add_dpl_workflow(hf-correlator-d0d0bar
SOURCES HFCorrelatorD0D0bar.cxx
PUBLIC_LINK_LIBRARIES O2::Framework O2::AnalysisDataModel O2::AnalysisCore O2::DetectorsVertexing
COMPONENT_NAME Analysis)

o2_add_dpl_workflow(hf-correlator-dplusdminus
SOURCES HFCorrelatorDplusDminus.cxx
PUBLIC_LINK_LIBRARIES O2::Framework O2::AnalysisDataModel O2::AnalysisCore O2::DetectorsVertexing
COMPONENT_NAME Analysis)

o2_add_dpl_workflow(hf-task-correlation-ddbar
SOURCES taskCorrelationDDbar.cxx
PUBLIC_LINK_LIBRARIES O2::Framework O2::AnalysisDataModel O2::AnalysisCore O2::DetectorsVertexing
COMPONENT_NAME Analysis)
Loading
Morty Proxy This is a proxified and sanitized view of the page, visit original site.