-
Notifications
You must be signed in to change notification settings - Fork 483
Add TRD Tracklets to Skimmed Data #14149
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
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.