The Gaudi Framework  master (d98a2936)
EventStatus Namespace Reference

Enumerations

enum  Status {
  Invalid = 0, Success = 1, AlgFail = 2, AlgStall = 3,
  Other = 4
}
 

Functions

std::ostream & operator<< (std::ostream &os, Status s)
 

Enumeration Type Documentation

◆ Status

Enumerator
Invalid 
Success 
AlgFail 
AlgStall 
Other 

Definition at line 75 of file IAlgExecStateSvc.h.

75 { Invalid = 0, Success = 1, AlgFail = 2, AlgStall = 3, Other = 4 };

Function Documentation

◆ operator<<()

std::ostream& EventStatus::operator<< ( std::ostream &  os,
Status  s 
)
inline

Definition at line 76 of file IAlgExecStateSvc.h.

76  {
77  static constexpr std::array<const char*, 5> label{ "Invalid", "Success", "AlgFail", "AlgStall", "Other" };
78  return os << label.at( s );
79  }
gaudirun.s
string s
Definition: gaudirun.py:346
EventStatus::Other
@ Other
Definition: IAlgExecStateSvc.h:75
EventStatus::Success
@ Success
Definition: IAlgExecStateSvc.h:75
EventStatus::Invalid
@ Invalid
Definition: IAlgExecStateSvc.h:75
EventStatus::AlgStall
@ AlgStall
Definition: IAlgExecStateSvc.h:75
EventStatus::AlgFail
@ AlgFail
Definition: IAlgExecStateSvc.h:75