#include <ProcessingController.h>
Public Types | |
enum | ForwardState { kEventsAheadInFile, kNextFileExists, kAtLastEvent, kUnknownForward } |
enum | ReverseState { kEventsBackwardsInFile, kPreviousFileExists, kAtFirstEvent, kUnknownReverse } |
enum | Transition { kToNextEvent, kToPreviousEvent, kToSpecifiedEvent } |
Public Member Functions | |
bool | canRandomAccess () const |
Returns 'true' if the job's source can randomly access. More... | |
ForwardState | forwardState () const |
Returns the present state of processing. More... | |
bool | lastOperationSucceeded () const |
ProcessingController (ForwardState forwardState, ReverseState reverseState, bool iCanRandomAccess) | |
Transition | requestedTransition () const |
ReverseState | reverseState () const |
void | setLastOperationSucceeded (bool value) |
void | setTransitionToEvent (edm::EventID const &iID) |
void | setTransitionToNextEvent () |
void | setTransitionToPreviousEvent () |
edm::EventID | specifiedEventTransition () const |
Private Member Functions | |
const ProcessingController & | operator= (const ProcessingController &)=delete |
ProcessingController (const ProcessingController &)=delete | |
Private Attributes | |
bool | canRandomAccess_ |
ForwardState | forwardState_ |
bool | lastOperationSucceeded_ |
ReverseState | reverseState_ |
EventID | specifiedEvent_ |
Transition | transition_ |
Definition at line 29 of file ProcessingController.h.
Enumerator | |
---|---|
kEventsAheadInFile | |
kNextFileExists | |
kAtLastEvent | |
kUnknownForward |
Definition at line 31 of file ProcessingController.h.
Enumerator | |
---|---|
kEventsBackwardsInFile | |
kPreviousFileExists | |
kAtFirstEvent | |
kUnknownReverse |
Definition at line 38 of file ProcessingController.h.
Enumerator | |
---|---|
kToNextEvent | |
kToPreviousEvent | |
kToSpecifiedEvent |
Definition at line 57 of file ProcessingController.h.
ProcessingController::ProcessingController | ( | ForwardState | forwardState, |
ReverseState | reverseState, | ||
bool | iCanRandomAccess | ||
) |
Definition at line 30 of file ProcessingController.cc.
|
privatedelete |
bool ProcessingController::canRandomAccess | ( | ) | const |
Returns 'true' if the job's source can randomly access.
Definition at line 80 of file ProcessingController.cc.
References canRandomAccess_.
Referenced by edm::NavigateEventsLooper::duringLoop().
ProcessingController::ForwardState ProcessingController::forwardState | ( | ) | const |
Returns the present state of processing.
Definition at line 76 of file ProcessingController.cc.
References forwardState_.
Referenced by edm::NavigateEventsLooper::duringLoop(), and FWFFLooper::duringLoop().
bool ProcessingController::lastOperationSucceeded | ( | ) | const |
Definition at line 86 of file ProcessingController.cc.
References lastOperationSucceeded_.
Referenced by edm::NavigateEventsLooper::duringLoop(), and edm::EventProcessor::processEventWithLooper().
|
privatedelete |
ProcessingController::Transition ProcessingController::requestedTransition | ( | ) | const |
Definition at line 82 of file ProcessingController.cc.
References transition_.
Referenced by edm::EventProcessor::processEventWithLooper().
ProcessingController::ReverseState ProcessingController::reverseState | ( | ) | const |
Definition at line 78 of file ProcessingController.cc.
References reverseState_.
Referenced by edm::NavigateEventsLooper::duringLoop(), and FWFFLooper::duringLoop().
void ProcessingController::setLastOperationSucceeded | ( | bool | value | ) |
Definition at line 71 of file ProcessingController.cc.
References lastOperationSucceeded_, and relativeConstraints::value.
Referenced by edm::EventProcessor::processEventWithLooper().
void ProcessingController::setTransitionToEvent | ( | edm::EventID const & | iID | ) |
Tells the framework that the next event to processes should be iID. If event iID can not be found in the source, the job will drop out of the event loop.
Definition at line 66 of file ProcessingController.cc.
References kToSpecifiedEvent, specifiedEvent_, and transition_.
Referenced by edm::NavigateEventsLooper::duringLoop(), and FWFFLooper::duringLoop().
void ProcessingController::setTransitionToNextEvent | ( | ) |
Tells the framework that we should go onto the next event in the sequence. If there is no next event the job will drop out of the event loop.
Definition at line 62 of file ProcessingController.cc.
References kToNextEvent, and transition_.
Referenced by edm::NavigateEventsLooper::duringLoop(), and FWFFLooper::duringLoop().
void ProcessingController::setTransitionToPreviousEvent | ( | ) |
Tells the framework we should backup and run the previous event seen in the sequence. If you are already at the first event the job will drop out of the event loop
Definition at line 64 of file ProcessingController.cc.
References kToPreviousEvent, and transition_.
Referenced by edm::NavigateEventsLooper::duringLoop(), and FWFFLooper::duringLoop().
edm::EventID ProcessingController::specifiedEventTransition | ( | ) | const |
If 'setTransitionToEvent was called this returns the value passed, else it returns an invalid EventID
Definition at line 84 of file ProcessingController.cc.
References specifiedEvent_.
Referenced by edm::EventProcessor::processEventWithLooper().
|
private |
Definition at line 98 of file ProcessingController.h.
Referenced by canRandomAccess().
|
private |
Definition at line 94 of file ProcessingController.h.
Referenced by forwardState().
|
private |
Definition at line 99 of file ProcessingController.h.
Referenced by lastOperationSucceeded(), and setLastOperationSucceeded().
|
private |
Definition at line 95 of file ProcessingController.h.
Referenced by reverseState().
|
private |
Definition at line 97 of file ProcessingController.h.
Referenced by setTransitionToEvent(), and specifiedEventTransition().
|
private |
Definition at line 96 of file ProcessingController.h.
Referenced by requestedTransition(), setTransitionToEvent(), setTransitionToNextEvent(), and setTransitionToPreviousEvent().