Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:10:22

0001 #ifndef EventFilter_CSCRawToDigi_CSCMonitorInterface_h
0002 #define EventFilter_CSCRawToDigi_CSCMonitorInterface_h
0003 
0004 /** \class CSCMonitorInterface
0005  *
0006  * Interface to the Data Quality Monitoring Module.
0007  *  
0008  *
0009  * \author Ilaria Segoni (CERN)
0010  *
0011  */
0012 
0013 class CSCDCCEventData;
0014 class CSCDCCExaminer;
0015 
0016 class CSCMonitorInterface {
0017 public:
0018   CSCMonitorInterface() {}
0019   virtual ~CSCMonitorInterface() {}
0020   // virtual void process(CSCDCCEventData & dccData)=0;
0021   virtual void process(CSCDCCExaminer* examiner, CSCDCCEventData* dccData) = 0;
0022 
0023 private:
0024 };
0025 
0026 #endif