00001
00002
00003
00004
00005
00006
00007
00010 #ifndef TRKPHSINCUT_H_
00011 #define TRKPHSINCUT_H_
00012
00013 #include "../../PamCutBase/PamCutBase.h"
00014
00019 class TrkPhSinCut: public PamCut {
00020
00021 public:
00022
00028 TrkPhSinCut(const char *cutName, const char *sortingMethod) :
00029 PamCut(cutName), _sortingMethod(sortingMethod) {
00030 }
00032 ~TrkPhSinCut() {
00033 }
00034
00042 int Check(PamLevel2 *event);
00043
00044 int iTrackTof;
00045
00050 TrkTrack *trkTrack;
00051
00056 PamTrack *pamTrack;
00057
00058 private:
00059
00060 const char *_sortingMethod;
00061
00062 };
00063 #endif