Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions PWGLF/TableProducer/Nuspex/nucleiAntineutronCex.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@ struct NucleiAntineutronCex {
using TracksWCovMc = soa::Join<aod::TracksIU, aod::TracksExtra, aod::McTrackLabels, o2::aod::TracksCovIU>;

// === Cut values ===
static constexpr double kIts2MinR = 2.2; // ITS2 min radius [cm]
static constexpr double kIts2MaxR = 39.0; // ITS2 max radius [cm]
static constexpr double kIts2MinR = 4.5; // ITS2 min radius (exluding IB) [cm]
static constexpr double kIts2MaxR = 45.0; // ITS2 max radius [cm]
static constexpr double kIts2MaxVz = 39.0; // ITS2 max |vz| [cm]
static constexpr double kAccMaxEta = 1.2; // acceptance |eta|
static constexpr double kAccMaxVz = 5.3; // acceptance |vz| [cm]
Expand Down Expand Up @@ -609,7 +609,7 @@ struct NucleiAntineutronCex {
histos.fill(HIST("pItsPidValid"), pTrkItsPidValid);
histos.fill(HIST("pTgl"), pTrkTgl);
}
if (motherPdg == -kNeutron) {
if (motherPdg != -kNeutron) {
histos.fill(HIST("pItsNsigmaPr_bg"), pTrkItsNSigmaPr);
histos.fill(HIST("pItsPidValid_bg"), pTrkItsPidValid);
histos.fill(HIST("pTgl_bg"), pTrkTgl);
Expand Down
Loading