#include <TGo4AnalysisStep.h>
Public Methods | |
TGo4AnalysisStep (const char *name, TGo4EventFactory *eventfactory, TGo4EventSourceParameter *sourcetype=0, TGo4EventStoreParameter *storetype=0, TGo4EventProcessorParameter *processortype=0) | |
Normal ctor. More... | |
TGo4AnalysisStep () | |
default ctor for streamer. More... | |
virtual | ~TGo4AnalysisStep () |
void | SetEventSource (TGo4EventSourceParameter *kind) |
Sets the event source parameter which is used on intitialization of this step. More... | |
void | NewEventSource (TGo4EventSourceParameter *kind) |
For lazy initialization of event source. More... | |
void | CloseEventSource () |
Unregister and close eventsource, if existing. More... | |
void | SetEventStore (TGo4EventStoreParameter *kind) |
Sets the event storee parameter which is used on intitialization of this step. More... | |
void | NewEventStore (TGo4EventStoreParameter *kind) |
For lazy initialization of event store. More... | |
void | CloseEventStore () |
Unregister and close eventstore, if existing. More... | |
void | SetEventProcessor (TGo4EventProcessorParameter *kind) |
Sets the event processor parameter which is used on intitialization of this step. More... | |
void | NewEventProcessor (TGo4EventProcessorParameter *kind) |
For lazy initialization of event processor. More... | |
void | CloseEventProcessor () |
Unregister and close eventprocessor, if existing. More... | |
void | NewInputEvent () |
create input event object. More... | |
void | DeleteInputEvent () |
Delete input event object. More... | |
void | NewOutputEvent () |
create input event object. More... | |
void | DeleteOutputEvent () |
Delete input event object. More... | |
virtual void | InitEventClasses () |
Initialization of the event class plugins which are delivered from the user defined event factory. More... | |
void | SetSourceEnabled (Bool_t on=kTRUE) |
Enables or disables the event source. More... | |
void | SetStoreEnabled (Bool_t on=kTRUE) |
Enables or disables the event store. More... | |
void | SetProcessEnabled (Bool_t on=kTRUE) |
Enables or disables the event processing. More... | |
void | SetErrorStopEnabled (Bool_t on) |
Enables or disables the stop-on-error mode. More... | |
void | ResetErrorStop () |
Reset the stopped-after-error state of this analysis step object. More... | |
void | SetInputEvent (TGo4EventElement *in) |
Sets reference to external input event. More... | |
void | SetPreviousStep (TGo4AnalysisStep *pre) |
Sets reference to previous analysis step. More... | |
TGo4AnalysisStep * | GetPreviousStep () |
Get previous analysis step. More... | |
TGo4EventElement * | GetOutputEvent () |
Access to the output event which has been filled last. More... | |
TGo4EventElement * | GetInputEvent () |
Access to the input event of this step. More... | |
TGo4EventProcessor * | GetEventProcessor () |
Access to the event processor. More... | |
Bool_t | IsStoreEnabled () |
Bool_t | IsStoreImplemented () |
Bool_t | IsSourceImplemented () |
Bool_t | IsSourceEnabled () |
Bool_t | IsProcessEnabled () |
Bool_t | IsErrorStopped () |
True if analsis step has been stopped on error. More... | |
Bool_t | IsErrorStopEnabled () |
True if analsis step allows stop on error. More... | |
Int_t | GetProcessStatus () |
Status of the last event. More... | |
const char * | GetStatusMessage () |
Status message of last Process() call. More... | |
void | SetStatusMessage (const char *txt) |
Set Status message of last Process() call. More... | |
Bool_t | IsMatchingPrevious () |
Check if an analysis step is matching as a previous step to this step. More... | |
const char * | GetEventStoreName () |
Access to name of currently active event store. More... | |
void | StoreCalibration () |
Store the current calibration object of the event processor into the event store instance. More... | |
Int_t | Store (TGo4Parameter *cali) |
Saves a parameter correllated with the current event into the storage. More... | |
Int_t | Store (TGo4Condition *conny) |
Saves a condition correllated with the current event into the storage. More... | |
Int_t | Store (TGo4Fitter *fitter) |
Saves a fitter correllated with the current event into the storage. More... | |
Int_t | Store (TFolder *fold) |
Saves a folder correllated with the current event into the storage. More... | |
void | Process () |
The main analysis action which is invoked by the external go4 analysis. More... | |
void | Close () |
Closes the analysis step. More... | |
void | SetStatus (TGo4AnalysisStepStatus *state) |
Set all analysis step parameters to that of given status object. More... | |
TGo4AnalysisStepStatus * | CreateStatus () |
Create a copy of the analysis step internal state. More... | |
Private Attributes | |
TGo4Analysis * | fxOwner |
Points back to the analysis wich keeps this step. More... | |
TGo4AnalysisStep * | fxPrevious |
Points to the previous analysis step. More... | |
TGo4EventFactory * | fxEventFactory |
The abstract factory implementation which provides the event classes. More... | |
TGo4EventStore * | fxEventStore |
The storage instance for the unpacked events (detector) structures. More... | |
TGo4EventSource * | fxEventSource |
The source of the input events. More... | |
TGo4EventProcessor * | fxEventProcessor |
The processing class which works on the input event and fills the output event. More... | |
TGo4EventElement * | fxInputEvent |
points to the last input event delivered from the event source @supplierCardinality 1 More... | |
TGo4EventElement * | fxOutputEvent |
The unpacked event (detector) structure that has been filled by the analysis step . More... | |
TGo4EventSourceParameter * | fxSourceType |
Parameter object of next event source to be activated. More... | |
TGo4EventStoreParameter * | fxStoreType |
Parameter object of next event storage to be activated. More... | |
TGo4EventProcessorParameter * | fxProcessorType |
Parameter object of next event processor to be activated. More... | |
Bool_t | fbSourceEnabled |
Enables event source.If true, the event source is used to get the input event; otherwise we use the output of the previous step. More... | |
Bool_t | fbSourceImplemented |
Flag for the previous analysis step. More... | |
Bool_t | fbStoreEnabled |
Enables event store. More... | |
Bool_t | fbStoreImplemented |
Flag for the subsequent analysis step. More... | |
Bool_t | fbProcessEnabled |
Enables processing of the input event. More... | |
Bool_t | fbErrorStopEnabled |
Operation mode switch. More... | |
Bool_t | fbErrorStopped |
True if the analysis step has been stopped after input error. More... | |
Int_t | fiProcessStatus |
Contains current analysis step status value. More... | |
TString | fcStatusMessage |
Most recent status message. More... | |
TString | fcBuffer |
Buffer string for text output. More... |
Each analysis step has an event source, an input event structure, an output event structure (both from event element class), and an event store. Input event is converted to output event using an event processor instance which is referenced by the output event class, but not stored with the resulting data. Analysis steps are held in an analysis step list which is processed iteratively; output event of an analysis step is input event of the subsequent analysis step, etc. The first analysis step takes its input event from an external event source, e.g. a file; the last step writes the output event into its external event store. Starting and ending point within the chain of analysis steps may be changed on the fly.
Definition at line 56 of file TGo4AnalysisStep.h.
|
Normal ctor. Note: factory and parameter objects are adopted by analysis step, i.e. they are deleted by dtor. Definition at line 28 of file TGo4AnalysisStep.cxx. References fxEventFactory, fxOwner, fxStoreType, TGo4Analysis::Instance(), SetStatusMessage(), and TRACE. |
|
default ctor for streamer.
Definition at line 49 of file TGo4AnalysisStep.cxx. References fxEventFactory, fxOwner, and TRACE. |
|
Definition at line 65 of file TGo4AnalysisStep.cxx. References Close(), fxEventFactory, fxProcessorType, fxSourceType, fxStoreType, and TRACE. |
|
Sets the event source parameter which is used on intitialization of this step. The event source will not yet be created; Creation is done by InitEventClasses() method, or by calling the NewEventSource() method on the fly. Definition at line 568 of file TGo4AnalysisStep.cxx. References fxSourceType. Referenced by NewEventSource(), and SetStatus(). |
|
For lazy initialization of event source. Uses the CreateEventSource method of the specialized event factory. Is called from init eventclasse in the timer initialization of the analysis, or may called on the fly to switch the source from event server to file. Parameter is passed to factory method for user specification of source. Definition at line 326 of file TGo4AnalysisStep.cxx. References TGo4Analysis::AddEventSource(), CloseEventSource(), TGo4EventFactory::CreateEventSource(), fbSourceImplemented, fxEventFactory, fxEventSource, fxInputEvent, fxOwner, fxPrevious, GetEventStoreName(), TGo4EventElement::Init(), TGo4Analysis::Instance(), IsStoreEnabled(), TGo4Analysis::Message(), SetEventSource(), TGo4EventElement::SetEventSource(), SetStatusMessage(), and TRACE. Referenced by InitEventClasses(), and TGo4AnalysisStepManager::NewStepSource(). |
|
Unregister and close eventsource, if existing.
Definition at line 177 of file TGo4AnalysisStep.cxx. References fbSourceImplemented, fxEventSource, fxOwner, TGo4Analysis::RemoveEventSource(), and TRACE. Referenced by Close(), and NewEventSource(). |
|
Sets the event storee parameter which is used on intitialization of this step. The event store will not yet be created; Creation is done by InitEventClasses() method, or by calling the NewEventStore() method on the fly. Definition at line 578 of file TGo4AnalysisStep.cxx. References fxStoreType. Referenced by NewEventStore(), and SetStatus(). |
|
For lazy initialization of event store. Uses the CreateEventStore method of the specialized event factory. Is called from initeventclasses in the timer initialization of the analysis, or may called on the fly to switch the store. Parameter is passed to factory method for user specification of store. Definition at line 396 of file TGo4AnalysisStep.cxx. References TGo4Analysis::AddEventStore(), TGo4Analysis::AddTree(), CloseEventStore(), TGo4EventFactory::CreateEventStore(), fbStoreImplemented, fxEventFactory, fxEventStore, fxOwner, TGo4EventStore::GetTree(), TGo4Analysis::Instance(), TGo4Analysis::Message(), SetEventStore(), SetStatusMessage(), and TRACE. Referenced by InitEventClasses(), and TGo4AnalysisStepManager::NewStepStore(). |
|
Unregister and close eventstore, if existing.
Definition at line 162 of file TGo4AnalysisStep.cxx. References fbStoreImplemented, fxEventStore, fxOwner, TGo4EventStore::GetTree(), TGo4Analysis::RemoveEventStore(), TGo4Analysis::RemoveTree(), and TRACE. Referenced by Close(), and NewEventStore(). |
|
Sets the event processor parameter which is used on intitialization of this step. The event processor will not yet be created; Creation is done by InitEventClasses() method, or by calling the NewEventProcessor() method on the fly. Definition at line 558 of file TGo4AnalysisStep.cxx. References fxProcessorType. Referenced by NewEventProcessor(), and SetStatus(). |
|
For lazy initialization of event processor. Uses the CreateEventProcessor method of the specialized event factory. Is called from initeventclasses in the timer initialization of the analysis, or may called on the fly to switch the processing algorithm. Parameter is passed to factory method for user specification of processor. Definition at line 442 of file TGo4AnalysisStep.cxx. References TGo4Analysis::AddEventProcessor(), CloseEventProcessor(), TGo4EventFactory::CreateEventProcessor(), fxEventFactory, fxEventProcessor, fxInputEvent, fxOutputEvent, fxOwner, TGo4EventElement::Init(), TGo4Analysis::Instance(), TGo4Analysis::Message(), SetEventProcessor(), TGo4EventElement::SetEventSource(), TGo4EventProcessor::SetInputEvent(), and TRACE. Referenced by InitEventClasses(), and TGo4AnalysisStepManager::NewStepProcessor(). |
|
Unregister and close eventprocessor, if existing.
Definition at line 189 of file TGo4AnalysisStep.cxx. References fxEventProcessor, fxOwner, TGo4Analysis::RemoveEventProcessor(), and TRACE. Referenced by Close(), and NewEventProcessor(). |
|
create input event object.
Definition at line 499 of file TGo4AnalysisStep.cxx. References TGo4Analysis::AddEventStructure(), TGo4EventFactory::CreateInputEvent(), DeleteInputEvent(), fxEventFactory, fxEventSource, fxInputEvent, fxOwner, TGo4EventElement::Init(), TGo4Analysis::Instance(), TGo4Analysis::Message(), TGo4EventElement::SetEventSource(), and TRACE. Referenced by InitEventClasses(). |
|
Delete input event object.
Definition at line 200 of file TGo4AnalysisStep.cxx. References fxInputEvent, fxOwner, TGo4Analysis::RemoveEventStructure(), and TRACE. Referenced by Close(), and NewInputEvent(). |
|
create input event object.
Definition at line 519 of file TGo4AnalysisStep.cxx. References TGo4Analysis::AddEventStructure(), TGo4EventFactory::CreateOutputEvent(), DeleteOutputEvent(), fxEventFactory, fxEventProcessor, fxOutputEvent, fxOwner, TGo4EventElement::Init(), TGo4Analysis::Instance(), TGo4Analysis::Message(), TGo4EventElement::SetEventSource(), and TRACE. Referenced by InitEventClasses(). |
|
Delete input event object.
Definition at line 211 of file TGo4AnalysisStep.cxx. References fxOutputEvent, fxOwner, TGo4Analysis::RemoveEventStructure(), and TRACE. Referenced by Close(), and NewOutputEvent(). |
|
Initialization of the event class plugins which are delivered from the user defined event factory. Parameters are ids for the implementation kind Definition at line 85 of file TGo4AnalysisStep.cxx. References fxProcessorType, fxSourceType, fxStoreType, NewEventProcessor(), NewEventSource(), NewEventStore(), NewInputEvent(), NewOutputEvent(), and TRACE. Referenced by TGo4AnalysisStepManager::InitEventClasses(). |
|
Enables or disables the event source.
Definition at line 141 of file TGo4AnalysisStep.h. References fbSourceEnabled. Referenced by TGo4AnalysisStepManager::ProcessAnalysisSteps(), SetStatus(), TMeshAnalysis::TMeshAnalysis(), TXXXAnalysis::TXXXAnalysis(), TYYYAnalysis::TYYYAnalysis(), and TMeshParameter::UpdateFrom(). |
|
Enables or disables the event store.
Definition at line 144 of file TGo4AnalysisStep.h. References fbStoreEnabled. Referenced by SetStatus(), TGo4AnalysisStepManager::SetStepStorage(), TMeshAnalysis::TMeshAnalysis(), TXXXAnalysis::TXXXAnalysis(), and TYYYAnalysis::TYYYAnalysis(). |
|
Enables or disables the event processing.
Definition at line 147 of file TGo4AnalysisStep.h. References fbProcessEnabled. Referenced by SetStatus(), TMeshAnalysis::TMeshAnalysis(), TXXXAnalysis::TXXXAnalysis(), TYYYAnalysis::TYYYAnalysis(), and TMeshParameter::UpdateFrom(). |
|
Enables or disables the stop-on-error mode.
Definition at line 150 of file TGo4AnalysisStep.h. References fbErrorStopEnabled. Referenced by SetStatus(), TXXXAnalysis::TXXXAnalysis(), and TYYYAnalysis::TYYYAnalysis(). |
|
Reset the stopped-after-error state of this analysis step object. May be used to restart analysis after clearing the situation. Definition at line 155 of file TGo4AnalysisStep.h. References fbErrorStopped. |
|
Sets reference to external input event. The processor will use this input event at the next call of process. I this analysis step is the first in the chain, the input event will be taken from the event source of this step. Definition at line 161 of file TGo4AnalysisStep.h. References fxInputEvent. |
|
Sets reference to previous analysis step.
Definition at line 164 of file TGo4AnalysisStep.h. References fxPrevious. Referenced by TGo4AnalysisStepManager::AddAnalysisStep(). |
|
Get previous analysis step. Returns 0 if there is none. Definition at line 167 of file TGo4AnalysisStep.h. References fxPrevious. |
|
Access to the output event which has been filled last. Is used to pass the output to the next analysis step, or to the main analysis user event function. Definition at line 172 of file TGo4AnalysisStep.h. References fxOutputEvent. Referenced by TGo4AnalysisStepManager::GetOutputEvent(), and IsMatchingPrevious(). |
|
Access to the input event of this step. Useful to pass incoming event from event source to a subsequent step or to user event function, without processing it. Definition at line 178 of file TGo4AnalysisStep.h. References fxInputEvent. |
|
Access to the event processor. Useful if processor has own data to be displayed, e.g. histograms. Definition at line 182 of file TGo4AnalysisStep.h. References fxEventProcessor. Referenced by TGo4AnalysisStepManager::GetInputEvent(). |
|
Definition at line 184 of file TGo4AnalysisStep.h. References fbStoreEnabled. Referenced by NewEventSource(). |
|
Definition at line 186 of file TGo4AnalysisStep.h. References fbStoreImplemented. |
|
Definition at line 188 of file TGo4AnalysisStep.h. References fbSourceImplemented. Referenced by TGo4AnalysisStepManager::ProcessAnalysisSteps(). |
|
Definition at line 190 of file TGo4AnalysisStep.h. References fbSourceEnabled. |
|
Definition at line 192 of file TGo4AnalysisStep.h. References fbProcessEnabled. Referenced by TGo4AnalysisStepManager::InitEventClasses(), and IsMatchingPrevious(). |
|
True if analsis step has been stopped on error.
Definition at line 195 of file TGo4AnalysisStep.h. References fbErrorStopped. |
|
True if analsis step allows stop on error.
Definition at line 198 of file TGo4AnalysisStep.h. References fbErrorStopEnabled. Referenced by TGo4AnalysisStepManager::IsErrorStopEnabled(). |
|
Status of the last event.
Definition at line 201 of file TGo4AnalysisStep.h. References fiProcessStatus. Referenced by TGo4AnalysisStepException::TGo4AnalysisStepException(). |
|
Status message of last Process() call.
Definition at line 204 of file TGo4AnalysisStep.h. References fcBuffer, and fcStatusMessage. Referenced by TGo4AnalysisStepException::TGo4AnalysisStepException(). |
|
Set Status message of last Process() call.
Definition at line 207 of file TGo4AnalysisStep.h. References fcStatusMessage. Referenced by NewEventSource(), NewEventStore(), Process(), TGo4AnalysisStepManager::ProcessAnalysisSteps(), and TGo4AnalysisStep(). |
|
Check if an analysis step is matching as a previous step to this step. Will compare by the classnames of input and output events as created by the event factory. To be used at the end of InitEventClasses method of analysis to ensure that chain of analysis steps would be working. Definition at line 284 of file TGo4AnalysisStep.cxx. References fxInputEvent, fxPrevious, GetOutputEvent(), IsProcessEnabled(), and TRACE. Referenced by TGo4AnalysisStepManager::InitEventClasses(). |
|
Access to name of currently active event store. Used to avoid collisions between store and source (files) of subsequent steps. Returns 0 pointer if there is no store implemented. Definition at line 319 of file TGo4AnalysisStep.cxx. References fxEventStore, and TRACE. Referenced by NewEventSource(). |
|
Store the current calibration object of the event processor into the event store instance.
Definition at line 224 of file TGo4AnalysisStep.cxx. References fbStoreEnabled, fxEventProcessor, fxEventStore, TGo4EventProcessor::GetCalibration(), TGo4EventStore::Store(), and TRACE. Referenced by TGo4AnalysisStepManager::AutoSave(). |
|
Saves a parameter correllated with the current event into the storage.
Definition at line 248 of file TGo4AnalysisStep.cxx. References fbStoreEnabled, fxEventStore, and TGo4EventStore::Store(). Referenced by TGo4AnalysisStepManager::Store(). |
|
Saves a condition correllated with the current event into the storage.
Definition at line 256 of file TGo4AnalysisStep.cxx. References fbStoreEnabled, fxEventStore, and TGo4EventStore::Store(). |
|
Saves a fitter correllated with the current event into the storage.
Definition at line 265 of file TGo4AnalysisStep.cxx. References fbStoreEnabled, fxEventStore, and TGo4EventStore::Store(). |
|
Saves a folder correllated with the current event into the storage.
Definition at line 274 of file TGo4AnalysisStep.cxx. References fbStoreEnabled, fxEventStore, and TGo4EventStore::Store(). |
|
The main analysis action which is invoked by the external go4 analysis. Reads input event from source (if first step), fills the output event by means of the event processor, and stores the output event (if last step). Definition at line 99 of file TGo4AnalysisStep.cxx. References fbProcessEnabled, fbSourceEnabled, fbStoreEnabled, TGo4EventElement::Fill(), fiProcessStatus, fxEventProcessor, fxEventSource, fxEventStore, fxInputEvent, fxOutputEvent, fxOwner, TGo4Analysis::GetOutputEvent(), TGo4EventElement::IsValid(), TGo4EventElement::SetEventSource(), TGo4EventProcessor::SetInputEvent(), TGo4Analysis::SetOutputEvent(), SetStatusMessage(), TGo4EventStore::Store(), and TRACE. Referenced by TGo4AnalysisStepManager::ProcessAnalysisSteps(). |
|
Closes the analysis step. Closes all files and connections and frees memory. Definition at line 152 of file TGo4AnalysisStep.cxx. References CloseEventProcessor(), CloseEventSource(), CloseEventStore(), DeleteInputEvent(), DeleteOutputEvent(), and TRACE. Referenced by TGo4AnalysisStepManager::CloseAnalysis(), and ~TGo4AnalysisStep(). |
|
Set all analysis step parameters to that of given status object.
Definition at line 540 of file TGo4AnalysisStep.cxx. References fbErrorStopped, fiProcessStatus, TGo4AnalysisStepStatus::GetProcessorPar(), TGo4AnalysisStepStatus::GetSourcePar(), TGo4AnalysisStepStatus::GetStorePar(), TGo4AnalysisStepStatus::IsErrorStopEnabled(), TGo4AnalysisStepStatus::IsProcessEnabled(), TGo4AnalysisStepStatus::IsSourceEnabled(), TGo4AnalysisStepStatus::IsStoreEnabled(), SetErrorStopEnabled(), SetEventProcessor(), SetEventSource(), SetEventStore(), SetProcessEnabled(), SetSourceEnabled(), SetStoreEnabled(), and TRACE. Referenced by TGo4AnalysisStepManager::SetStatus(). |
|
Create a copy of the analysis step internal state. To be sent to the Display. Definition at line 470 of file TGo4AnalysisStep.cxx. References fbErrorStopEnabled, fbErrorStopped, fbProcessEnabled, fbSourceEnabled, fbStoreEnabled, fiProcessStatus, fxProcessorType, fxSourceType, fxStoreType, TGo4AnalysisStepStatus::SetErrorStopEnabled(), TGo4AnalysisStepStatus::SetErrorStopped(), TGo4AnalysisStepStatus::SetProcessEnabled(), TGo4AnalysisStepStatus::SetProcessorPar(), TGo4AnalysisStepStatus::SetProcessStatus(), TGo4AnalysisStepStatus::SetSourceEnabled(), TGo4AnalysisStepStatus::SetSourcePar(), TGo4AnalysisStepStatus::SetStoreEnabled(), TGo4AnalysisStepStatus::SetStorePar(), and TRACE. Referenced by TGo4AnalysisStepManager::UpdateStatus(). |
|
Points back to the analysis wich keeps this step.
Definition at line 255 of file TGo4AnalysisStep.h. Referenced by CloseEventProcessor(), CloseEventSource(), CloseEventStore(), DeleteInputEvent(), DeleteOutputEvent(), NewEventProcessor(), NewEventSource(), NewEventStore(), NewInputEvent(), NewOutputEvent(), Process(), and TGo4AnalysisStep(). |
|
Points to the previous analysis step. Useful to check the corresponding input and output event types, and the event source state. Definition at line 259 of file TGo4AnalysisStep.h. Referenced by GetPreviousStep(), IsMatchingPrevious(), NewEventSource(), and SetPreviousStep(). |
|
The abstract factory implementation which provides the event classes.
Definition at line 264 of file TGo4AnalysisStep.h. Referenced by NewEventProcessor(), NewEventSource(), NewEventStore(), NewInputEvent(), NewOutputEvent(), TGo4AnalysisStep(), and ~TGo4AnalysisStep(). |
|
The storage instance for the unpacked events (detector) structures.
Definition at line 269 of file TGo4AnalysisStep.h. Referenced by CloseEventStore(), GetEventStoreName(), NewEventStore(), Process(), Store(), and StoreCalibration(). |
|
The source of the input events. Can be a remote event server, or a root file, or anything else. Definition at line 275 of file TGo4AnalysisStep.h. Referenced by CloseEventSource(), NewEventSource(), NewInputEvent(), and Process(). |
|
The processing class which works on the input event and fills the output event.
Definition at line 281 of file TGo4AnalysisStep.h. Referenced by CloseEventProcessor(), GetEventProcessor(), NewEventProcessor(), NewOutputEvent(), Process(), and StoreCalibration(). |
|
points to the last input event delivered from the event source @supplierCardinality 1
Definition at line 286 of file TGo4AnalysisStep.h. Referenced by DeleteInputEvent(), GetInputEvent(), IsMatchingPrevious(), NewEventProcessor(), NewEventSource(), NewInputEvent(), Process(), and SetInputEvent(). |
|
The unpacked event (detector) structure that has been filled by the analysis step . @supplierCardinality 1 Definition at line 292 of file TGo4AnalysisStep.h. Referenced by DeleteOutputEvent(), GetOutputEvent(), NewEventProcessor(), NewOutputEvent(), and Process(). |
|
Parameter object of next event source to be activated. Is used by eventfactory as parameter for factory method. Meaning is defined in actual user event factory. Definition at line 298 of file TGo4AnalysisStep.h. Referenced by CreateStatus(), InitEventClasses(), SetEventSource(), and ~TGo4AnalysisStep(). |
|
Parameter object of next event storage to be activated. Is used by eventfactory as parameter for factory method. Meaning is defined in actual user event factory. Definition at line 304 of file TGo4AnalysisStep.h. Referenced by CreateStatus(), InitEventClasses(), SetEventStore(), TGo4AnalysisStep(), and ~TGo4AnalysisStep(). |
|
Parameter object of next event processor to be activated. Is used by eventfactory as parameter for factory method. Meaning is defined in actual user event factory. Definition at line 310 of file TGo4AnalysisStep.h. Referenced by CreateStatus(), InitEventClasses(), SetEventProcessor(), and ~TGo4AnalysisStep(). |
|
Enables event source.If true, the event source is used to get the input event; otherwise we use the output of the previous step.
Definition at line 315 of file TGo4AnalysisStep.h. Referenced by CreateStatus(), IsSourceEnabled(), Process(), and SetSourceEnabled(). |
|
Flag for the previous analysis step. If true, the event source instance exists, i.e. a file may be open. Usage is optional so far. Definition at line 319 of file TGo4AnalysisStep.h. Referenced by CloseEventSource(), IsSourceImplemented(), and NewEventSource(). |
|
Enables event store. If true, the event store is used as output; otherwise we pass the output to the next step. Definition at line 324 of file TGo4AnalysisStep.h. Referenced by CreateStatus(), IsStoreEnabled(), Process(), SetStoreEnabled(), Store(), and StoreCalibration(). |
|
Flag for the subsequent analysis step. If true, the event store instance exists, i.e. a file may be open. Definition at line 328 of file TGo4AnalysisStep.h. Referenced by CloseEventStore(), IsStoreImplemented(), and NewEventStore(). |
|
Enables processing of the input event. If true, Process method produces an output event from the input; otherwise we do not fill the output. Useful if event source of this step shall be used to pass the input event to another analysis step. If process is disabled, also the eventstore is disabled. Definition at line 335 of file TGo4AnalysisStep.h. Referenced by CreateStatus(), IsProcessEnabled(), Process(), and SetProcessEnabled(). |
|
Operation mode switch. If true, the analysis step process method will stop the analysis if the event source returns an error code. Otherwise, the event source may be reset then and the analysis continues from start. Definition at line 342 of file TGo4AnalysisStep.h. Referenced by CreateStatus(), IsErrorStopEnabled(), and SetErrorStopEnabled(). |
|
True if the analysis step has been stopped after input error.
Definition at line 345 of file TGo4AnalysisStep.h. Referenced by CreateStatus(), IsErrorStopped(), ResetErrorStop(), and SetStatus(). |
|
Contains current analysis step status value. To be checked by framework after Process(). Definition at line 348 of file TGo4AnalysisStep.h. Referenced by CreateStatus(), GetProcessStatus(), Process(), and SetStatus(). |
|
Most recent status message. May be delivered by eventsource or eventstore. Definition at line 351 of file TGo4AnalysisStep.h. Referenced by GetStatusMessage(), and SetStatusMessage(). |
|
Buffer string for text output.
Definition at line 354 of file TGo4AnalysisStep.h. Referenced by GetStatusMessage(). |