Add TRD Tracklets to Skimmed Data#14149
Conversation
|
REQUEST FOR PRODUCTION RELEASES: This will add The following labels are available |
|
async-2023-pbpb-apass4 |
| const auto & tracksTRD = mTPCOnly ? gsl::span<o2::trd::TrackTRD>() : recoData.getITSTPCTRDTracks<o2::trd::TrackTRD>(); | ||
| const auto& trklets = mTPCOnly ? gsl::span<const o2::trd::Tracklet64>():recoData.getTRDTracklets(); | ||
| std::unordered_map<unsigned int, unsigned int> indicesTRDTPC; // TPC track index -> TRD-TPC track index. | ||
| // loop over all TRD tracks and map them to TPC tracks | ||
| for (int i = 0; i < tracksTRD.size(); ++i) { | ||
| //auto trackTPC = tracksTRD[i].getRefTPC().getIndex(); | ||
| //if (trackTPC >= 0) indicesTRDTPC[trackTPC] = i; | ||
| } |
There was a problem hiding this comment.
What exactly do you want to store? TRD track are using not the raw (o2::trd::Tracklet64) tracklets but calibrated ones, see https://github.com/AliceO2Group/AliceO2/blob/dev/Detectors/TPC/calibration/SpacePoints/src/TrackInterpolation.cxx#L445-L452 for the access to tracklets associated to the track.
|
@miranov25 see https://github.com/AliceO2Group/AliceO2/compare/dev...shahor02:AliceO2:pr_trd_mi?expand=1 You can fetch my https://github.com/shahor02/AliceO2/tree/pr_trd_mi branch and continue from there. |
|
This PR did not have any update in the last 30 days. Is it still needed? Unless further action in will be closed in 5 days. |
[WIP] Add TRD Tracklets to Skimmed Data
This PR introduces TRD tracklet support in the time series skimming workflow.
✅ Changes:
std::vectorof tracklets is not yet implemented.Tagging:
@f3sch — draft for now, pending data filling logic.