Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 #ifndef DTROSErrorNotifier_h
0002 #define DTROSErrorNotifier_h
0003 
0004 /** \class DTROSErrorNotifier
0005  *
0006  *  \author M. Zanetti - INFN Padova
0007  */
0008 
0009 #include <DataFormats/DTDigi/interface/DTDDUWords.h>
0010 //class DTROSErrorWord;
0011 
0012 class DTROSErrorNotifier {
0013 public:
0014   /// Constructor
0015   DTROSErrorNotifier(DTROSErrorWord error);
0016 
0017   /// Destructor
0018   virtual ~DTROSErrorNotifier();
0019 
0020   /// Print out the error information >>> FIXME: to be implemented
0021   void print();
0022 
0023   // >>> FIXME: Other methods to notify? to whom?
0024 
0025 private:
0026   DTROSErrorWord error_;
0027 };
0028 
0029 #endif