#ifndef OAROOTRACKER_IVSTRIDEEVENTANDRT_HXX #define OAROOTRACKER_IVSTRIDEEVENTANDRT_HXX #include "ICOMETEventLoopFunction.hxx" #include "IRooTrackerFile.hxx" #include "IHandle.hxx" namespace COMET { class ICOMETEventLoopFunction; class IVStrideEventAndRT; } class COMET::IVStrideEventAndRT { public: enum FileType { kOAEvent, /// OAEvent file type kRTFile, /// RooTracker file type }; IVStrideEventAndRT(){} virtual ~IVStrideEventAndRT(); /// Inhereted Methods virtual bool operator () (ICOMETEvent& event, IRooTrackerFile* inputRT, int idx); /// Open RooTracker File virtual void Initialize(void); /// Set the input RooTracker file name // Process each event virtual bool ProcessEvent(ICOMETEvent&, IRooTrackerFile* inputRT)=0; protected: }; #endif //OAROOTRACKER_IVSTRIDEEVENTANDRT_HXX