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
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
46af065
First implementation of D0-D0bar correlation code (data/MC-reco/MC-kine)
fcolamar Feb 11, 2021
5da5d21
Modified task names
fcolamar Feb 12, 2021
7e324dc
Renamed tasks and source file according to conventions
fcolamar Feb 18, 2021
29060c9
Updates to complying to code conventions
fcolamar Feb 19, 2021
10bd1e0
Updated tasks according to Vit's comments
fcolamar Feb 23, 2021
d870e9d
Further updates to D0-D0bar correlation task, from code review
fcolamar Mar 2, 2021
23d2c4f
Solving conflicts for CMakeLists.txt
fcolamar Mar 2, 2021
8ebb50a
Comply to adaptAnalysisTask core modifications
fcolamar Mar 4, 2021
1ad153b
Modified label() to mcParticle() call, to comply to PR5566
fcolamar Mar 5, 2021
c4fcec6
Clang fix
fcolamar Mar 5, 2021
9436381
Merge branch 'dev' into DDbar_FC
fcolamar Mar 8, 2021
7b4f941
Solved conflict in PWGHF/CMakeLists.txt
fcolamar Mar 8, 2021
94c18e7
Merge branch 'dev' into DDbar_FC
fcolamar Mar 8, 2021
14eaa5a
Further round of comments implemented
fcolamar Mar 9, 2021
dcf155c
Updated CMakeLists.txt due to new task addition
fcolamar Mar 10, 2021
53d2c7a
Complying to further adaptAnalysisTask updates
fcolamar Mar 10, 2021
fc3d699
Missed to update one task in last commit
fcolamar Mar 10, 2021
1881b99
Merge with updated dev
fcolamar Mar 18, 2021
9d2330d
Removed the pre-task inserting CollisionId to candidate table (now ad…
fcolamar Mar 18, 2021
cd41206
Fixed typo in new version of code
fcolamar Mar 25, 2021
877a13e
Removed cmath header, no longer needed
fcolamar Mar 25, 2021
5763aa2
Committing D0-D0bar codes with new structure
fcolamar Mar 30, 2021
0e28ede
Adding definition of task switching options
fcolamar Mar 30, 2021
8c4992f
Clang fixes and task name updates
fcolamar Mar 31, 2021
47559b1
Major update to D0-D0bar correlation code, split into correlators+ana…
fcolamar Apr 15, 2021
4e41fb8
Implementing dev updates to HFSecondaryVertex.h
fcolamar Apr 15, 2021
1704562
Merge branch 'dev' into DDbar_FC_Restructured
fcolamar Apr 15, 2021
8a49d85
Merge branch 'DDbar_FC_Restructured' into DDbar_FC
fcolamar Apr 15, 2021
928e3ea
Fix in the branches merging
fcolamar Apr 15, 2021
84645ce
Clang fix
fcolamar Apr 15, 2021
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 @@ -487,6 +487,26 @@ DECLARE_SOA_TABLE(HfCandProng3MCGen, "AOD", "HFCANDP3MCGEN",
hf_cand_prong3::OriginMCGen,
hf_cand_prong3::FlagMCDecayChanGen);

// definition of columns and tables for D0-D0bar correlation pairs
namespace hf_d0d0bar_correlation
{
DECLARE_SOA_COLUMN(DeltaPhi, deltaPhi, float);
DECLARE_SOA_COLUMN(DeltaEta, deltaEta, float);
DECLARE_SOA_COLUMN(PtD0, ptD0, float);
DECLARE_SOA_COLUMN(PtD0bar, ptD0bar, float);
DECLARE_SOA_COLUMN(MD0, mD0, float);
DECLARE_SOA_COLUMN(MD0bar, mD0bar, float);
DECLARE_SOA_COLUMN(SignalStatus, signalStatus, int);
} // namespace hf_d0d0bar_correlation
DECLARE_SOA_TABLE(D0D0barPair, "AOD", "D0D0BARPAIR",
aod::hf_d0d0bar_correlation::DeltaPhi,
aod::hf_d0d0bar_correlation::DeltaEta,
aod::hf_d0d0bar_correlation::PtD0,
aod::hf_d0d0bar_correlation::PtD0bar);
DECLARE_SOA_TABLE(D0D0barRecoInfo, "AOD", "D0D0BARRECOINFO",
aod::hf_d0d0bar_correlation::MD0,
aod::hf_d0d0bar_correlation::MD0bar,
aod::hf_d0d0bar_correlation::SignalStatus);
} // namespace o2::aod

#endif // O2_ANALYSIS_HFSECONDARYVERTEX_H_
10 changes: 10 additions & 0 deletions 10 Analysis/Tasks/PWGHF/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,16 @@ o2_add_dpl_workflow(hf-task-x
PUBLIC_LINK_LIBRARIES O2::Framework O2::AnalysisDataModel O2::AnalysisCore O2::DetectorsVertexing
COMPONENT_NAME Analysis)

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

o2_add_dpl_workflow(hf-task-d0d0bar-correlation
SOURCES taskD0D0barCorrelation.cxx
PUBLIC_LINK_LIBRARIES O2::Framework O2::AnalysisDataModel O2::AnalysisCore O2::DetectorsVertexing
COMPONENT_NAME Analysis)

o2_add_dpl_workflow(hf-mc-validation
SOURCES HFMCValidation.cxx
PUBLIC_LINK_LIBRARIES O2::Framework O2::AnalysisDataModel O2::AnalysisCore O2::DetectorsVertexing
Expand Down
Loading
Morty Proxy This is a proxified and sanitized view of the page, visit original site.