1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
#ifndef DTTDCErrorNotifier_h
#define DTTDCErrorNotifier_h
/** \class DTTDCErrorNotifier
*
* \author M. Zanetti - INFN Padova
*/
#include <DataFormats/DTDigi/interface/DTDDUWords.h>
//class DTTDCErrorWord;
class DTTDCErrorNotifier {
public:
/// Constructor
DTTDCErrorNotifier(DTTDCErrorWord error);
/// Destructor
virtual ~DTTDCErrorNotifier();
/// Print out the error information >>> FIXME: to be implemented
void print();
// >>> FIXME: Other methods to notify? to whom?
private:
DTTDCErrorWord error_;
};
#endif
|