The Gaudi Framework  v30r3 (a5ef0a68)
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 67 of file IAlgExecStateSvc.h.

Function Documentation

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

Definition at line 68 of file IAlgExecStateSvc.h.

69  {
70  static const std::array<const char*, 5> label{"Invalid", "Success", "AlgFail", "AlgStall", "Other"};
71  return os << label.at( s );
72  }
string s
Definition: gaudirun.py:253
STL class.