Skip to content

Commit bcb06a5

Browse files
authored
[PWGLF] Fix radius of the ITS2 layers (#14475)
1 parent 00b76c0 commit bcb06a5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

PWGLF/TableProducer/Nuspex/nucleiAntineutronCex.cxx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ struct NucleiAntineutronCex {
5050

5151
// === Cut values ===
5252
static constexpr double kIts2MinR = 4.5; // ITS2 min radius (exluding IB) [cm]
53-
static constexpr double kIts2MaxR = 45.0; // ITS2 max radius [cm]
53+
static constexpr double kIts2MaxR = 48.0; // ITS2 max radius [cm]
5454
static constexpr double kIts2MaxVz = 39.0; // ITS2 max |vz| [cm]
5555
static constexpr double kAccMaxEta = 1.2; // acceptance |eta|
5656
static constexpr double kAccMaxVz = 5.3; // acceptance |vz| [cm]
@@ -715,7 +715,7 @@ struct NucleiAntineutronCex {
715715
const float dOpenAngle = trkangleDeg - mcangleDeg;
716716

717717
// Closest ITS layer: Radius need to be checked
718-
static const std::array<double, 7> rLayers = {2.2, 2.8, 3.6, 19.6, 24.0, 29.0, 35.0};
718+
static const std::array<double, 7> rLayers = {2.3, 3.1, 3.9, 24.0, 30.0, 42.0, 48.0};
719719
int16_t svNearestLayerId = -1;
720720
float svDeltaRToLayer = 1e9f;
721721
for (int i = 0; i < static_cast<int>(rLayers.size()); ++i) {

0 commit comments

Comments
 (0)