Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 #ifndef DTTDCErrorNotifier_h
0002 #define DTTDCErrorNotifier_h
0003 
0004 /** \class DTTDCErrorNotifier
0005  *
0006  *  \author M. Zanetti - INFN Padova
0007  */
0008 
0009 #include <DataFormats/DTDigi/interface/DTDDUWords.h>
0010 //class DTTDCErrorWord;
0011 
0012 class DTTDCErrorNotifier {
0013 public:
0014   /// Constructor
0015   DTTDCErrorNotifier(DTTDCErrorWord error);
0016 
0017   /// Destructor
0018   virtual ~DTTDCErrorNotifier();
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   DTTDCErrorWord error_;
0027 };
0028 
0029 #endif