PWGHF: Merge devrun5 (ALICE 3 development for J/ψ and X)#6695
PWGHF: Merge devrun5 (ALICE 3 development for J/ψ and X)#6695ktf merged 45 commits intoAliceO2Group:devfrom
Conversation
add validation plots to X cand creator remove collision table from Xtask added a whole bunch of histo's to Xtask Add first working version of MC matching Add gen. MC matching for Jpsi -> ee
Add various cuts to selector - TOF pid, CPA, daughter DCA, daughter pT - Change range of histograms in taskX.cxx change range and bins of histograms add pT dependent cuts via HFSelectorCuts.h
increase granularity for some histo's
Co-authored-by: Biao Zhang <bizhang@alicecerno2.cern.ch>
* add Ct, Y, and chi2PCA to jpsi task * fix clang
* Fix format and TPC in selector * Add MID table and functions in track selector * Add RICH in TrackSelectorPID * Add debugging messages * Define a single table for ALICE 3 PID track indices * Mute debugging messages * Accept only both accepted tracks for MID * Apply clang-format
* Add J/ψ → μ+ μ− matching * Remove mysterious std::move
* Add Muon channel in the HF skim * Clang Fix * add space back Co-authored-by: Gian Michele Innocenti <ginnocen@alicecerno2.cern.ch>
* Fix micro to mu * Add ALICE 2/3 switch * Reshuffle ALICE 2/3 detectors * Add μ+ μ− selection column in selector * Define things when needed * Remove ee from selector names
Co-authored-by: Gian Michele Innocenti <ginnocen@alicecerno2.cern.ch>
Co-authored-by: Gian Michele Innocenti <ginnocen@alicecerno2.cern.ch>
Co-authored-by: Gian Michele Innocenti <ginnocen@alicecerno2.cern.ch>
Co-authored-by: Gian Michele Innocenti <ginnocen@alicecerno2.cern.ch>
Co-authored-by: Gian Michele Innocenti <ginnocen@alicecerno2.cern.ch>
Co-authored-by: Gian Michele Innocenti <ginnocen@alicecerno2.cern.ch>
Thanks @fgrosa , fixed. |
|
@sawenzel Could you please merge this as well? |
|
Hi @vkucera, |
I see. The MC daughter/mother getters have changed in the meantime. |
|
@vkucera |
|
Hi @iarsene, Vit is back from holidays today. We are planning to have a look at it asap and merge it. Sorry for the delay. |
| if (mPdg != kMuonMinus) { | ||
| return Status::PIDRejected; | ||
| } | ||
| if (isValidTrackPIDMID(track)) { |
There was a problem hiding this comment.
As a general comment I would try to code things so that you bail out as soon as possible. In this particular case:
if (!isValidTrackPIDMID(track)) {
return Status::PIDNotApplicable; // PID not applicable
}
There was a problem hiding this comment.
hi @ktf, from what Vit told me, there is still an issue when trying to run the Jpsi/X analysis with Run2/3 data that is investigating that could be even a more general problem. Therefore, he also agrees to go ahead and merge it. Thanks.
…p#6695) Co-authored-by: rspijkers <rik.spijkers@gmail.com> Co-authored-by: Rik Spijkers <78484875+rspijkers@users.noreply.github.com> Co-authored-by: Gian Michele Innocenti <gminnocen@gmail.com> Co-authored-by: Biao Zhang <bizhang@alicecerno2.cern.ch> Co-authored-by: Gian Michele Innocenti <ginnocen@alicecerno2.cern.ch> Co-authored-by: zhangbiao-phy <52267892+zhangbiao-phy@users.noreply.github.com>
No description provided.