00001
00002
00003
00004
00005
00006
00007
00010 #ifndef TRKGEOMCUT_H_
00011 #define TRKGEOMCUT_H_
00012
00013 #include "../../PamCutBase/PamCutBase.h"
00014
00020 class TrkGeomCut: public PamCut {
00021
00022 public:
00033 TrkGeomCut(const char *cutName, float xTol, float yTol) :
00034 PamCut(cutName), _xTol(xTol), _yTol(yTol) {
00035 }
00037 ~TrkGeomCut() {
00038 }
00039
00046 int Check(PamLevel2 *event);
00047
00048 private:
00049
00050 float _xTol;
00051 float _yTol;
00052
00053 };
00054 #endif