00001 #ifndef SCTAPI_SCANMONITOR_H 00002 #define SCTAPI_SCANMONITOR_H 00003 00004 /* Because this is used in IPC, put in a separate file to the 00005 rest of SctApiHisto 00006 */ 00007 00008 namespace SctApi { 00009 00010 class ScanControl; 00011 00017 class ScanMonitor { 00018 public: 00020 virtual void newBin(int prevTriggers, int newBin) = 0; 00021 00023 virtual void finishScan() = 0; 00024 }; 00025 00026 } 00027 #endif