]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
Accept multiplicities at the range edges
authorakisiel <akisiel@f7af4fe6-9843-0410-8265-dc069ae4e863>
Thu, 5 Feb 2009 10:59:20 +0000 (10:59 +0000)
committerakisiel <akisiel@f7af4fe6-9843-0410-8265-dc069ae4e863>
Thu, 5 Feb 2009 10:59:20 +0000 (10:59 +0000)
PWG2/FEMTOSCOPY/AliFemto/AliFemtoBasicEventCut.cxx

index 1ed07647c4e8ee9c54a6ecab9608153d91571133..2acb3e28ad7d1f9e30003e3552e08a79459afbb9 100644 (file)
@@ -40,8 +40,8 @@ bool AliFemtoBasicEventCut::Pass(const AliFemtoEvent* event){
   cout << "AliFemtoBasicEventCut:: VertexZPos: " << fVertZPos[0] << " < " << vertexZPos << " < " << fVertZPos[1] << endl;
   cout << "AliFemtoBasicEventCut:: VertexZErr: " << event->PrimVertCov()[4] << endl;
   bool goodEvent =
-    ((mult > fEventMult[0]) && 
-     (mult < fEventMult[1]) && 
+    ((mult >= fEventMult[0]) && 
+     (mult <= fEventMult[1]) && 
      (vertexZPos > fVertZPos[0]) &&
      (vertexZPos < fVertZPos[1]) &&
      (fAcceptBadVertex || (event->PrimVertCov()[4] > -1000.0)));