00001 /* 00002 * TrkRigGeoCut.h 00003 * 00004 * Created on: 25-mar-2009 00005 * Author: Nicola Mori 00006 * Last update: 30-apr-2009 00007 */ 00008 00011 #ifndef TRKRIGGEOCUT_H_ 00012 #define TRKRIGGEOCUT_H_ 00013 00014 #include "../../PamCutBase/PamCutBase.h" 00015 00023 class TrkRigGeoCut: public PamCut { 00024 00025 public: 00031 TrkRigGeoCut(const char *cutName, float thresholdCoeff) : 00032 PamCut(cutName), _thresholdCoeff(thresholdCoeff) { 00033 } 00035 ~TrkRigGeoCut() { 00036 } 00037 00045 int Check(PamLevel2 *event); 00046 00048 float GetThresholdCoeff(){ 00049 return _thresholdCoeff; 00050 } 00051 00052 private: 00053 00054 float _thresholdCoeff; 00055 00056 }; 00057 00058 #endif /* TRKRIGGEOCUT_H_ */