Adding DCA distributions of global tracks#7384
Conversation
|
@fkrizek Could you take a look at the code? if you agree with the changes, we can proceed with the merging to the master branch |
|
|
||
| auto const& originalTrack = trk.track_as<soa::Join<aod::Tracks, aod::TracksExtra>>(); | ||
| spectra.fill(HIST("globalP_tpcglobalPDiff_withoutcuts"), trk.p(), trk.p() - originalTrack.tpcInnerParam()); | ||
| auto const& originalTrack = track.track_as<soa::Join<aod::Tracks, aod::TracksExtra>>(); |
There was a problem hiding this comment.
doesn't this break now when you run it? You are not subscribing to this table anymore. You should just remove originalTrack, you dont need it anymore
There was a problem hiding this comment.
The code compiles, but I cannot perform local tests due to this issue:
'DPL internal error - oldestPossibleOutput decreased from 1 to 0'
Vit reported this issue 2 months ago; I contacted him, and he said he did not receive a response from the developers.
I am not sure that I got your idea correctly. To which table do you point? We use 'originalTrack' variable to get extra track information, for instance, 'tpcInnerParam()' and 'itsNCls()' which are not defined in our jet-track tables.
There was a problem hiding this comment.
But you process function is not subscribing to this table : soa::Join<aod::Tracks, aod::TracksExtra>
So it will break when you run it
There was a problem hiding this comment.
you need to add soa::Join<aod::Tracks, aod::TracksExtra> const& to the end of your process function
There was a problem hiding this comment.
you need to add soa::Join<aod::Tracks, aod::TracksExtra> const& to the end of your process function
Thanks, fixed with the new commit
* Adding DCA distributions of global tracks * Adding DCA distributions of global tracks * Fixes according to update of PR AliceO2Group#7381 * Fixed process function arguments
* Adding DCA distributions of global tracks * Adding DCA distributions of global tracks * Fixes according to update of PR AliceO2Group#7381 * Fixed process function arguments
Check the dcaX, dcaY, and dcaZ distributions of global tracks with number in ITS layers >= 4.
These histograms were suggested for checking to investigate the problem of the azimuthal distribution of high-pT global tracks.