The Gaudi Framework  v31r0 (aeb156f0)
EventStatus Namespace Reference

Enumerations

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

Functions

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

Enumeration Type Documentation

Enumerator
Invalid 
Success 
AlgFail 
AlgStall 
Other 

Definition at line 63 of file IAlgExecStateSvc.h.

Function Documentation

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

Definition at line 64 of file IAlgExecStateSvc.h.

64  {
65  static constexpr std::array<const char*, 5> label{"Invalid", "Success", "AlgFail", "AlgStall", "Other"};
66  return os << label.at( s );
67  }
string s
Definition: gaudirun.py:312
STL class.