DTROSErrorNotifier

Macros

Line Code
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 DTROSErrorNotifier_h
#define DTROSErrorNotifier_h

/** \class DTROSErrorNotifier
 *
 *  \author M. Zanetti - INFN Padova
 */

#include <DataFormats/DTDigi/interface/DTDDUWords.h>
//class DTROSErrorWord;

class DTROSErrorNotifier {
public:
  /// Constructor
  DTROSErrorNotifier(DTROSErrorWord error);

  /// Destructor
  virtual ~DTROSErrorNotifier();

  /// Print out the error information >>> FIXME: to be implemented
  void print();

  // >>> FIXME: Other methods to notify? to whom?

private:
  DTROSErrorWord error_;
};

#endif