#include <GaudiKernel/MsgStream.h>
#include <GaudiKernel/Service.h>
#include <algorithm>
#include <initializer_list>
#include <string>
#include <vector>
#include <boost/container/flat_set.hpp>
 
Go to the source code of this file.
◆ operator<<()
Streaming of State values. 
Definition at line 99 of file AlgsExecutionStates.h.
   99                                                                           {
  101  switch ( x ) {
  102  case State::INITIAL:
  104    break;
  105  case State::CONTROLREADY:
  107    break;
  108  case State::DATAREADY:
  110    break;
  111  case State::RESOURCELESS:
  113    break;
  114  case State::SCHEDULED:
  116    break;
  117  case State::EVTACCEPTED:
  119    break;
  120  case State::EVTREJECTED:
  122    break;
  123  case State::ERROR:
  125    break;
  126  default:
  128  }
  130}
State
Execution states of the algorithms Must have contiguous integer values 0, 1... N.