Skip to content

Commit 4c83c4f

Browse files
committed
[PWGJE,EMCAL] Add TM for secondary tracks from V0s
- Add two process functions (one for data and one for MC) which are similar to the full process function + additionally also perform track matching with V0leg tracks from the PWGEM V0Builder - Add additional table to store matched secondary tracks
1 parent d985c30 commit 4c83c4f

File tree

2 files changed

+405
-37
lines changed

2 files changed

+405
-37
lines changed

PWGJE/DataModel/EMCALClusters.h

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -170,5 +170,11 @@ DECLARE_SOA_TABLE(EMCALMatchedTracks, "AOD", "EMCMATCHTRACKS", //!
170170
o2::soa::Index<>, emcalclustercell::EMCALClusterId, emcalmatchedtrack::TrackId,
171171
emcalmatchedtrack::DeltaPhi, emcalmatchedtrack::DeltaEta); //!
172172
using EMCALMatchedTrack = EMCALMatchedTracks::iterator;
173+
174+
// table for matched secondary tracks
175+
DECLARE_SOA_TABLE(EMCMatchSecs, "AOD", "EMCMATCHSEC", //!
176+
o2::soa::Index<>, emcalclustercell::EMCALClusterId, emcalmatchedtrack::TrackId,
177+
emcalmatchedtrack::DeltaPhi, emcalmatchedtrack::DeltaEta); //!
178+
using EMCMatchSec = EMCMatchSecs::iterator;
173179
} // namespace o2::aod
174180
#endif // PWGJE_DATAMODEL_EMCALCLUSTERS_H_

0 commit comments

Comments
 (0)