Skip to content
Snippets Groups Projects
Commit 20f822b2 authored by Martin Beyer's avatar Martin Beyer
Browse files

fix comparison

parent eaab83bf
Branches rich_small
No related tags found
No related merge requests found
Pipeline #23726 passed
......@@ -150,7 +150,7 @@ Bool_t CbmRichHitProducer::RestrictToAccDay1(TVector3& posHit)
if (posHit.X() > -75. && posHit.X() < 75.) return true;
}
else if (fGeoTag.Contains("v22") || fGeoTag.Contains("v23a")) {
if (posHit.X() < -75.5 && posHit.X() > 75.5) return true;
if (posHit.X() > -75.5 && posHit.X() < 75.5) return true;
}
else {
return true;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment