The Gaudi Framework  master (b9786168)
Loading...
Searching...
No Matches
IAlgExecStateSvc.h File Reference
#include <GaudiKernel/IAlgorithm.h>
#include <GaudiKernel/IInterface.h>
#include <GaudiKernel/StatusCode.h>
#include <GaudiKernel/StringKey.h>
#include <sstream>
Include dependency graph for IAlgExecStateSvc.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

class  AlgExecStateRef
 wrapper on an Algorithm state. More...
 
class  AlgExecStateRefConst
 wrapper on an Algorithm state, const version. More...
 
class  IAlgExecStateSvc
 Abstract interface for a service that manages the Algorithm execution states. More...
 

Namespaces

namespace  AlgExecState
 
namespace  EventStatus
 

Enumerations

enum  AlgExecState::State { AlgExecState::None = 0 , AlgExecState::Executing = 1 , AlgExecState::Done = 2 }
 
enum  EventStatus::Status {
  EventStatus::Invalid = 0 , EventStatus::Success = 1 , EventStatus::AlgFail = 2 , EventStatus::AlgStall = 3 ,
  EventStatus::Other = 4
}
 

Functions

std::ostream & EventStatus::operator<< (std::ostream &os, Status s)
 
std::ostream & operator<< (std::ostream &ost, const AlgExecStateRef &s)
 
std::ostream & operator<< (std::ostream &ost, const AlgExecStateRefConst &s)
 

Function Documentation

◆ operator<<() [1/2]

std::ostream & operator<< ( std::ostream & ost,
const AlgExecStateRef & s )
inline

Definition at line 158 of file IAlgExecStateSvc.h.

158 {
159 s.m_svc.dump( ost, s.m_ctx, s.m_algKey );
160 return ost;
161}

◆ operator<<() [2/2]

std::ostream & operator<< ( std::ostream & ost,
const AlgExecStateRefConst & s )
inline

Definition at line 166 of file IAlgExecStateSvc.h.

166 {
167 s.m_svc.dump( ost, s.m_ctx, s.m_algKey );
168 return ost;
169}