Skip to content

Commit ee8cd35

Browse files
[PWGCF] A correlation task for triplets (track-track-v0) in Pb–Pb collisions (#12794)
Co-authored-by: Victor Gonzalez <victor.gonzalez.sebastian@gmail.com>
1 parent 5fa94f8 commit ee8cd35

File tree

3 files changed

+788
-2
lines changed

3 files changed

+788
-2
lines changed

PWGCF/FemtoDream/Tasks/CMakeLists.txt

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,11 @@ o2physics_add_dpl_workflow(femtodream-triplet-track-track-track
1919
PUBLIC_LINK_LIBRARIES O2::Framework O2Physics::AnalysisCore
2020
COMPONENT_NAME Analysis)
2121

22+
o2physics_add_dpl_workflow(femto-dream-triplet-task-track-track-track-pb-pb
23+
SOURCES femtoDreamTripletTaskTrackTrackTrackPbPb.cxx
24+
PUBLIC_LINK_LIBRARIES O2::Framework O2Physics::AnalysisCore
25+
COMPONENT_NAME Analysis)
26+
2227
o2physics_add_dpl_workflow(femtodream-pair-track-v0
2328
SOURCES femtoDreamPairTaskTrackV0.cxx
2429
PUBLIC_LINK_LIBRARIES O2::Framework O2Physics::AnalysisCore
@@ -39,6 +44,11 @@ o2physics_add_dpl_workflow(femtodream-triplet-track-track-v0
3944
PUBLIC_LINK_LIBRARIES O2::Framework O2Physics::AnalysisCore
4045
COMPONENT_NAME Analysis)
4146

47+
o2physics_add_dpl_workflow(femto-dream-triplet-task-track-track-v0-pb-pb
48+
SOURCES femtoDreamTripletTaskTrackTrackV0PbPb.cxx
49+
PUBLIC_LINK_LIBRARIES O2::Framework O2Physics::AnalysisCore
50+
COMPONENT_NAME Analysis)
51+
4252
o2physics_add_dpl_workflow(femtodream-debug-track
4353
SOURCES femtoDreamDebugTrack.cxx
4454
PUBLIC_LINK_LIBRARIES O2::Framework O2Physics::AnalysisCore
@@ -67,4 +77,4 @@ o2physics_add_dpl_workflow(femtodream-hash
6777
o2physics_add_dpl_workflow(femtodream-pair-v0-v0
6878
SOURCES femtoDreamPairTaskV0V0.cxx
6979
PUBLIC_LINK_LIBRARIES O2::Framework O2Physics::AnalysisCore
70-
COMPONENT_NAME Analysis)
80+
COMPONENT_NAME Analysis)

PWGCF/FemtoDream/Tasks/femtoDreamCollisionMasker.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -268,7 +268,7 @@ struct femoDreamCollisionMasker {
268268
TrackDCACutPtDep.push_back(option.defaultValue.get<bool>());
269269
}
270270
}
271-
} else if (device.name.find("femto-dream-triplet-task-track-track-v0") != std::string::npos) {
271+
} else if ((device.name.find("femto-dream-triplet-task-track-track-v0") != std::string::npos) || (device.name.find("femto-dream-triplet-task-track-track-v0-pb-pb") != std::string::npos)) {
272272
LOG(info) << "Matched workflow: " << device.name;
273273
TaskFinder = CollisionMasks::kTrackTrackV0;
274274
for (auto const& option : device.options) {

0 commit comments

Comments
 (0)