The Gaudi Framework  master (ff829712)
Loading...
Searching...
No Matches
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.

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 }