Skip to content

Commit ab83542

Browse files
authored
Update and rename trackPropagation.cxx to ambiguousTrackPropagation.cxx
1 parent c1f6981 commit ab83542

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

PWGMM/Mult/TableProducer/trackPropagation.cxx renamed to PWGMM/Mult/TableProducer/ambiguousTrackPropagation.cxx

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
// granted to it by virtue of its status as an Intergovernmental Organization
1010
// or submit itself to any jurisdiction.
1111
///
12-
/// \file trackPropagation.cxx
12+
/// \file ambiguousTrackPropagation.cxx
1313
/// \brief This code loops over central and MFT tracks and among the compatible
1414
/// collisions to this track, picks the one with the smallest DCAxy/DCAz and puts it
1515
/// in a table
@@ -51,7 +51,7 @@ using namespace o2;
5151
using namespace o2::framework;
5252
using namespace o2::aod::track;
5353

54-
struct TrackPropagation {
54+
struct AmbiguousTrackPropagation {
5555
Produces<aod::BestCollisionsFwd> fwdtracksBestCollisions;
5656
Produces<aod::BestCollisionsFwd3d> fwdtracksBestCollisions3d;
5757
Produces<aod::BestCollisionsFwd3dExtra> fwdtracksBestCollisions3dExtra;
@@ -235,7 +235,7 @@ struct TrackPropagation {
235235
}
236236
}
237237
}
238-
PROCESS_SWITCH(TrackPropagation, processCentral, "Fill ReassignedTracks for central ambiguous tracks", true);
238+
PROCESS_SWITCH(AmbiguousTrackPropagation, processCentral, "Fill ReassignedTracks for central ambiguous tracks", true);
239239

240240
void processMFT(aod::MFTTracks const&,
241241
aod::Collisions const&, ExtBCs const& bcs,
@@ -321,7 +321,7 @@ struct TrackPropagation {
321321
}
322322
}
323323
}
324-
PROCESS_SWITCH(TrackPropagation, processMFT, "Fill BestCollisionsFwd for MFT ambiguous tracks", false);
324+
PROCESS_SWITCH(AmbiguousTrackPropagation, processMFT, "Fill BestCollisionsFwd for MFT ambiguous tracks", false);
325325

326326
using MFTTracksWColls = soa::Join<o2::aod::MFTTracks, aod::MFTTrkCompColls>;
327327

@@ -409,7 +409,7 @@ struct TrackPropagation {
409409
}
410410
}
411411
}
412-
PROCESS_SWITCH(TrackPropagation, processMFTReassoc, "Fill BestCollisionsFwd for MFT ambiguous tracks with the new data model", false);
412+
PROCESS_SWITCH(AmbiguousTrackPropagation, processMFTReassoc, "Fill BestCollisionsFwd for MFT ambiguous tracks with the new data model", false);
413413

414414
void processMFTReassoc3D(MFTTracksWColls const& tracks, aod::Collisions const&, ExtBCs const& bcs)
415415
{
@@ -491,7 +491,7 @@ struct TrackPropagation {
491491
}
492492
}
493493
}
494-
PROCESS_SWITCH(TrackPropagation, processMFTReassoc3D, "Fill ReassignedTracks for MFT ambiguous tracks", false);
494+
PROCESS_SWITCH(AmbiguousTrackPropagation, processMFTReassoc3D, "Fill ReassignedTracks for MFT ambiguous tracks", false);
495495
};
496496

497497
//****************************************************************************************
@@ -501,5 +501,5 @@ struct TrackPropagation {
501501
//****************************************************************************************
502502
WorkflowSpec defineDataProcessing(ConfigContext const& cfgc)
503503
{
504-
return {adaptAnalysisTask<TrackPropagation>(cfgc)};
504+
return {adaptAnalysisTask<AmbiguousTrackPropagation>(cfgc)};
505505
}

0 commit comments

Comments
 (0)