1 #ifndef ALIPHOSQAALARM_H
2 #define ALIPHOSQAALARM_H
3 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4 * See cxx source for full Copyright notice */
8 //_________________________________________________________________________
9 // An alarm object that is instanciated by a AliPHOSQACheckable in response to
12 //*-- Author: Yves Schutz (SUBATECH)
15 // --- ROOT system ---
20 // --- Standard library ---
22 // --- AliRoot header files ---
24 class AliPHOSQAAlarm : public TObject {
28 AliPHOSQAAlarm(){} ; // default ctor (not to be used)
29 AliPHOSQAAlarm(TString time, TString checked, TString checker, TString message) ; // ctor
30 virtual ~AliPHOSQAAlarm() ; // dtor
31 virtual void Print() ;
35 TString fCable ; // checkable name that raised the alarm
36 TString fCer ; // checker name that raised the alarm
37 Int_t fEvent ; // event number where alarms occured
38 TString fMessage ; // the whole error message
39 TString fTime ; // time when the alarm was raised
41 ClassDef(AliPHOSQAAlarm,1) // description
45 #endif // ALIPHOSQAAlarm_H