The Gaudi Framework  v29r0 (ff2e7097)
AlgsExecutionStates.h File Reference
#include "GaudiKernel/Service.h"
#include <functional>
#include <iterator>
#include <string>
#include <thread>
#include <unordered_map>
#include <vector>
#include <boost/dynamic_bitset.hpp>
Include dependency graph for AlgsExecutionStates.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

class  AlgsExecutionStates
 The AlgsExecutionStates encodes the state machine for the execution of algorithms within a single event. More...
 
class  AlgsExecutionStates::Iterator
 

Functions

std::ostreamoperator<< (std::ostream &s, AlgsExecutionStates::State x)
 Streaming of State values (required by C++11 scoped enums). More...
 

Function Documentation

std::ostream& operator<< ( std::ostream s,
AlgsExecutionStates::State  x 
)
inline

Streaming of State values (required by C++11 scoped enums).

Definition at line 131 of file AlgsExecutionStates.h.

132 {
133  return s << static_cast<unsigned short>( x );
134 }