From: akisiel Date: Thu, 5 Feb 2009 10:59:20 +0000 (+0000) Subject: Accept multiplicities at the range edges X-Git-Url: http://git.uio.no/git/?a=commitdiff_plain;h=d58bc7b2f8e55b9becb5c74e541babd468a4b7cf;p=u%2Fmrichter%2FAliRoot.git Accept multiplicities at the range edges --- diff --git a/PWG2/FEMTOSCOPY/AliFemto/AliFemtoBasicEventCut.cxx b/PWG2/FEMTOSCOPY/AliFemto/AliFemtoBasicEventCut.cxx index 1ed07647c4e..2acb3e28ad7 100644 --- a/PWG2/FEMTOSCOPY/AliFemto/AliFemtoBasicEventCut.cxx +++ b/PWG2/FEMTOSCOPY/AliFemto/AliFemtoBasicEventCut.cxx @@ -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)));