The Gaudi Framework  v33r0 (d5ea422b)
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

◆ Status

Enumerator
Invalid 
Success 
AlgFail 
AlgStall 
Other 

Definition at line 73 of file IAlgExecStateSvc.h.

Function Documentation

◆ operator<<()

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

Definition at line 74 of file IAlgExecStateSvc.h.

74  {
75  static constexpr std::array<const char*, 5> label{"Invalid", "Success", "AlgFail", "AlgStall", "Other"};
76  return os << label.at( s );
77  }
string s
Definition: gaudirun.py:328
STL class.