Skip to content

Commit d01350a

Browse files
committed
A correlation task for triplets (track-track-v0) in Pb–Pb collisions
1 parent bc86eab commit d01350a

File tree

3 files changed

+787
-2
lines changed

3 files changed

+787
-2
lines changed

PWGCF/FemtoDream/Tasks/CMakeLists.txt

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,11 @@ o2physics_add_dpl_workflow(femtodream-triplet-track-track-track
1818
SOURCES femtoDreamTripletTaskTrackTrackTrack.cxx
1919
PUBLIC_LINK_LIBRARIES O2::Framework O2Physics::AnalysisCore
2020
COMPONENT_NAME Analysis)
21+
22+
o2physics_add_dpl_workflow(femtodream-triplet-track-track-track-pb-pb
23+
SOURCES femtoDreamTripletTaskTrackTrackTrackPbPb.cxx
24+
PUBLIC_LINK_LIBRARIES O2::Framework O2Physics::AnalysisCore
25+
COMPONENT_NAME Analysis)
2126

2227
o2physics_add_dpl_workflow(femtodream-pair-track-v0
2328
SOURCES femtoDreamPairTaskTrackV0.cxx
@@ -34,6 +39,11 @@ o2physics_add_dpl_workflow(femtodream-triplet-track-track-v0
3439
PUBLIC_LINK_LIBRARIES O2::Framework O2Physics::AnalysisCore
3540
COMPONENT_NAME Analysis)
3641

42+
o2physics_add_dpl_workflow(femtodream-triplet-track-track-v0-pb-pb
43+
SOURCES femtoDreamTripletTaskTrackTrackV0PbPb.cxx
44+
PUBLIC_LINK_LIBRARIES O2::Framework O2Physics::AnalysisCore
45+
COMPONENT_NAME Analysis)
46+
3747
o2physics_add_dpl_workflow(femtodream-debug-track
3848
SOURCES femtoDreamDebugTrack.cxx
3949
PUBLIC_LINK_LIBRARIES O2::Framework O2Physics::AnalysisCore
@@ -62,4 +72,4 @@ o2physics_add_dpl_workflow(femtodream-hash
6272
o2physics_add_dpl_workflow(femtodream-pair-v0-v0
6373
SOURCES femtoDreamPairTaskV0V0.cxx
6474
PUBLIC_LINK_LIBRARIES O2::Framework O2Physics::AnalysisCore
65-
COMPONENT_NAME Analysis)
75+
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)