CMS 3D CMS Logo

Public Types | Public Member Functions | Private Attributes

statemachine::EndingLoop Class Reference

#include <EPStates.h>

Inheritance diagram for statemachine::EndingLoop:
state

List of all members.

Public Types

typedef mpl::list
< sc::transition< Restart,
Starting, Machine,&Machine::rewindAndPrepareForNextLoop >
, sc::custom_reaction< Stop > > 
reactions

Public Member Functions

 EndingLoop (my_context ctx)
sc::result react (Stop const &)
 ~EndingLoop ()

Private Attributes

edm::IEventProcessorep_

Detailed Description

Definition at line 157 of file EPStates.h.


Member Typedef Documentation

typedef mpl::list< sc::transition<Restart, Starting, Machine, &Machine::rewindAndPrepareForNextLoop>, sc::custom_reaction<Stop> > statemachine::EndingLoop::reactions

Definition at line 164 of file EPStates.h.


Constructor & Destructor Documentation

statemachine::EndingLoop::EndingLoop ( my_context  ctx)

Definition at line 98 of file EPStates.cc.

References edm::IEventProcessor::alreadyHandlingException(), edm::IEventProcessor::endOfLoop(), and ep_.

                                       :
      my_base(ctx),
      ep_(context<Machine>().ep()) {
    if(ep_.alreadyHandlingException() || ep_.endOfLoop()) post_event(Stop());
    else post_event(Restart());
  }
statemachine::EndingLoop::~EndingLoop ( )

Definition at line 105 of file EPStates.cc.

{ }

Member Function Documentation

sc::result statemachine::EndingLoop::react ( Stop const &  )

Definition at line 107 of file EPStates.cc.

                                        {
    return terminate();
  }

Member Data Documentation

Definition at line 168 of file EPStates.h.

Referenced by EndingLoop().