Go to the documentation of this file.00001 #ifndef CSCTFMonitorInterface_h
00002 #define CSCTFMonitorInterface_h
00003
00016 class CSCTFDCCEventData;
00017 class CSCTFTBEventData;
00018
00019 class CSCTFMonitorInterface{
00020
00021 public:
00022
00023 CSCTFMonitorInterface(){}
00024 virtual ~CSCTFMonitorInterface(){}
00025 virtual void process(CSCTFDCCEventData & dccData)=0;
00026 virtual void process(CSCTFTBEventData & tbdata)=0;
00027
00028
00029 private:
00030
00031
00032 };
00033
00034 #endif