00001 /* 00002 * GeoFieldCut.cpp 00003 * 00004 * Created on: 10-mar-2009 00005 * Author: Sergio Ricciarini, Nicola Mori 00006 */ 00007 00010 #include "GeoFieldCut.h" 00011 00012 int GeoFieldCut::Check(PamLevel2 * event) { 00013 00014 if (event->GetOrbitalInfo()->Babs > _bAbs) // Babs = absolute value of geomagnetic field (Gauss) 00015 return CUTOK; 00016 else 00017 return 0; 00018 }