00001 /* 00002 * TrkRigGeoCut.cpp 00003 * 00004 * Created on: 25-mar-2009 00005 * Author: Nicola Mori 00006 */ 00007 00010 #include "TrkRigGeoCut.h" 00011 00012 int TrkRigGeoCut::Check(PamLevel2 *event) { 00013 00014 if (event->GetTrack(0)->GetTrkTrack()->GetRigidity() < _thresholdCoeff * event->GetOrbitalInfo()->GetCutoffSVL()) { 00015 return 0; 00016 } 00017 00018 return CUTOK; 00019 }