00001 /* 00002 * TrkRunValCut.h 00003 * 00004 * Created on: 24-mar-2009 00005 * Author: S. Ricciarini 00006 */ 00007 00010 #ifndef TRKRUNVALCUT_H_ 00011 #define TRKRUNVALCUT_H_ 00012 00013 #include "../../PamCutBase/PamCutBase.h" 00014 00017 class TrkRunValCut: public PamCut { 00018 00019 public: 00021 TrkRunValCut(const char *cutName) : 00022 PamCut(cutName) { 00023 } 00025 ~TrkRunValCut() { 00026 } 00027 00035 int Check(PamLevel2 *event); 00036 00037 private: 00038 00039 }; 00040 #endif /* TRKRUNVALCUT_H_ */