REST-for-Physics
v2.3
Rare Event Searches ToolKit for Physics
|
A base class for any REST event process.
One of the core classes of REST. Absract class from which all REST "event process classes" must derive. An event process in REST is an atomic operation on one single (input) event, potentially producing a different (output) event. Which type of (input/output) events will depent on the type of process. Processes can be tailored via metadata classes. All this needs to be defined in the inherited class. TRestEventProcess provides the basic structure (virtual functions)
RESTsoft - Software for Rare Event Searches with TPCs
History of developments:
2014-june: First concept. As part of conceptualization of previous REST code (REST v2) Igor G. Irastorza
2017-Aug: Major change: added for multi-thread capability Kaixiang Ni
Definition at line 37 of file TRestEventProcess.h.
#include <TRestEventProcess.h>
Public Member Functions | |
virtual Bool_t | AddInputFile (const std::string &file) |
bool | ApplyCut () |
virtual void | BeginOfEventProcess (TRestEvent *inputEvent=nullptr) |
Begin of event process, preparation work. Called right before ProcessEvent() More... | |
ClassDefOverride (TRestEventProcess, 3) | |
virtual void | EndOfEventProcess (TRestEvent *inputEvent=nullptr) |
End of event process. Nothing to do. Called directly after ProcessEvent() More... | |
virtual void | EndProcess () |
To be executed at the end of the run (outside event loop) More... | |
TRestAnalysisTree * | GetAnalysisTree () const |
Return the local analysis tree (dummy) More... | |
TCanvas * | GetCanvas () const |
Get canvas. More... | |
TRestAnalysisTree * | GetFullAnalysisTree () |
virtual RESTValue | GetInputEvent () const =0 |
Get pointer to input event. Must be implemented in the derived class. More... | |
std::vector< std::string > | GetListOfAddedObservables () |
virtual RESTValue | GetOutputEvent () const =0 |
Get pointer to output event. Must be implemented in the derived class. More... | |
virtual const char * | GetProcessName () const =0 |
TRestRun * | GetRunInfo () const |
Return the pointer of the hosting TRestRun object. More... | |
virtual Long64_t | GetTotalBytes () const |
virtual Long64_t | GetTotalBytesRead () const |
Interface to external file reading, get the read bytes. To be implemented in external processes. More... | |
virtual void | InitFromConfigFile () override |
To make settings from rml file. This method must be implemented in the derived class. More... | |
virtual void | InitProcess () |
To be executed at the beginning of the run (outside event loop) More... | |
Bool_t | isExternal () const |
Return whether this process is external process. More... | |
Int_t | LoadSectionMetadata () override |
This method does some preparation of xml section. More... | |
virtual void | NotifyAnalysisTreeReset () |
In case the analysis tree is reset(switched to new file), some process needs to have action. More... | |
virtual Bool_t | OpenInputFiles (const std::vector< std::string > &files) |
virtual TRestEvent * | ProcessEvent (TRestEvent *inputEvent)=0 |
Process one event. More... | |
std::vector< std::string > | ReadObservables () |
void | RegisterAllObservables (Bool_t value=true) |
virtual Bool_t | ResetEntry () |
void | SetAnalysisTree (TRestAnalysisTree *tree) |
Set analysis tree of this process, then add observables to it. | |
void | SetCanvasSize (Int_t x, Int_t y) |
Set canvas size. More... | |
void | SetFriendProcess (TRestEventProcess *p) |
Add friendly process to this process. | |
void | SetObservableValidation (bool validate) |
void | SetParallelProcess (TRestEventProcess *p) |
Add parallel process to this process. | |
void | SetRunInfo (TRestRun *r) |
Set TRestRun for this process. More... | |
Bool_t | singleThreadOnly () const |
Return whether this process is single std::thread only. More... | |
TRestEventProcess () | |
~TRestEventProcess () | |
Public Member Functions inherited from TRestMetadata | |
void | AddLog (std::string log="", bool print=true) |
Add logs to messageBuffer. More... | |
void | DoNotStore () |
If this method is called the metadata information will not be stored in disk. More... | |
TVector2 | Get2DVectorParameterWithUnits (std::string parName, TVector2 defaultValue=TVector2(-1, -1)) |
TVector3 | Get3DVectorParameterWithUnits (std::string parName, TVector3 defaultValue=TVector3(-1, -1, -1)) |
TString | GetCommit () |
Returns the REST commit value stored in fCommit. More... | |
std::string | GetConfigBuffer () |
Returns the config section of this class. More... | |
std::string | GetDataMemberValue (std::string memberName) |
Get the value of data member as string. More... | |
std::vector< std::string > | GetDataMemberValues (std::string memberName, Int_t precision=0) |
Get the value of datamember as a vector of strings. More... | |
TString | GetDataPath () |
Returns a std::string with the path used for data storage. More... | |
Double_t | GetDblParameterWithUnits (std::string parName, Double_t defaultValue=PARAMETER_NOT_FOUND_DBL) |
Gets the value of the parameter name parName, after applying unit conversion. More... | |
Bool_t | GetError () const |
It returns true if an error was identified by a derived metadata class. More... | |
TString | GetErrorMessage () |
Returns a std::string containing the error message. More... | |
TString | GetLibraryVersion () |
Returns the REST libraty version stored in fLibraryVersion. More... | |
TString | GetMainDataPath () |
Gets a std::string with the path used for data storage. More... | |
Int_t | GetNumberOfErrors () const |
Int_t | GetNumberOfWarnings () const |
std::string | GetParameter (std::string parName, TString defaultValue=PARAMETER_NOT_FOUND_STR) |
Returns corresponding REST Metadata parameter from multiple sources. More... | |
std::string | GetSectionName () |
Returns the section name of this class, defined at the beginning of fSectionName. More... | |
TRestStringOutput::REST_Verbose_Level | GetVerboseLevel () |
returns the verboselevel in type of REST_Verbose_Level enumerator More... | |
TString | GetVerboseLevelString () |
returns the verbose level in type of TString More... | |
TString | GetVersion () |
Returns the REST version stored in fVersion. More... | |
Int_t | GetVersionCode () |
UInt_t | GetVersionMajor () const |
UInt_t | GetVersionMinor () const |
UInt_t | GetVersionPatch () const |
Bool_t | GetWarning () const |
It returns true if an error was identified by a derived metadata class. More... | |
TString | GetWarningMessage () |
Returns a std::string containing the warning message. More... | |
virtual void | Initialize () |
Making default settings. More... | |
TRestMetadata * | InstantiateChildMetadata (int index, std::string pattern="") |
This method will retrieve a new TRestMetadata instance of a child element of the present TRestMetadata instance based on the index given by argument, which defines the element order to be retrieved, 0 for first element found, 1 for the second element found, etc. More... | |
TRestMetadata * | InstantiateChildMetadata (std::string pattern="", std::string name="") |
This method will retrieve a new TRestMetadata instance of a child element of the present TRestMetadata instance based on the name given by argument. More... | |
Bool_t | isCleanState () const |
Bool_t | isOfficialRelease () const |
Int_t | LoadConfigFromBuffer () |
Initialize data from a string element buffer. More... | |
Int_t | LoadConfigFromElement (TiXmlElement *eSectional, TiXmlElement *eGlobal, std::map< std::string, std::string > envs={}) |
Main starter method. More... | |
Int_t | LoadConfigFromFile (const std::string &configFilename, const std::string §ionName="") |
Give the file name, find out the corresponding section. Then call the main starter. More... | |
virtual void | Merge (const TRestMetadata &) |
TRestMetadata & | operator= (const TRestMetadata &) |
void | Print () |
Implementing TObject::Print() method. More... | |
void | PrintConfigBuffer () |
Print the config xml section stored in the class. More... | |
void | PrintMessageBuffer () |
Print the buffered message. More... | |
virtual void | PrintMetadata () |
Implemented it in the derived metadata class to print out specific metadata information. More... | |
void | PrintTimeStamp (Double_t timeStamp) |
Print the current time on local machine. More... | |
void | SetConfigFile (std::string configFilename) |
set config file path from external More... | |
void | SetError (std::string message="", bool print=true, int maxPrint=5) |
A metadata class may use this method to signal that something went wrong. More... | |
void | SetHostmgr (TRestManager *m) |
Set the host manager for this class. More... | |
void | SetSectionName (std::string sName) |
set the section name, clear the section content More... | |
void | SetVerboseLevel (TRestStringOutput::REST_Verbose_Level v) |
sets the verbose level More... | |
void | SetWarning (std::string message="", bool print=true, int maxPrint=5) |
A metadata class may use this method to signal that something went wrong. More... | |
void | Store () |
If this method is called the metadata information will be stored in disk. More... | |
TRestMetadata (const TRestMetadata &) | |
virtual void | UpdateMetadataMembers () |
Method to allow implementation of specific metadata members updates at inherited classes. More... | |
virtual Int_t | Write (const char *name=nullptr, Int_t option=0, Int_t bufsize=0) |
overwriting the write() method with fStore considered More... | |
void | WriteConfigBuffer (std::string fName) |
Writes the config buffer to a file in append mode. More... | |
~TRestMetadata () | |
TRestMetadata default destructor. More... | |
Protected Types | |
enum | REST_Process_Output { No_Output , Observable , Internal_Var , Full_Output } |
Protected Member Functions | |
void | BeginPrintProcess () |
[name, cut range] | |
void | CreateCanvas () |
Create the canvas. More... | |
void | EndPrintProcess () |
TRestEventProcess * | GetFriend (const std::string &nameOrType) |
TRestEventProcess * | GetFriendLive (const std::string &nameOrType) |
template<class T > | |
T * | GetMetadata () |
Get a metadata object from the host TRestRun. More... | |
TRestMetadata * | GetMetadata (const std::string &nameOrType) |
size_t | GetNumberOfParallelProcesses () const |
template<class T > | |
T | GetObservableValue (const std::string &name) |
TRestEventProcess * | GetParallel (int i) |
template<class T > | |
std::vector< T > | GetParallelDataMembers (T *member_of_process) |
Get a list of data members from parallel processes which is same to this process's certain data member. More... | |
template<class T > | |
void | SetObservableValue (const std::string &name, const T &value) |
Set observable value for AnalysisTree. More... | |
Protected Member Functions inherited from TRestMetadata | |
std::string | ElementToString (TiXmlElement *ele) |
Convert an TiXmlElement object to string. More... | |
TVector2 | Get2DVectorParameterWithUnits (std::string parName, TiXmlElement *e, TVector2 defaultValue=TVector2(-1, -1)) |
TVector3 | Get3DVectorParameterWithUnits (std::string parName, TiXmlElement *e, TVector3 defaultValue=TVector3(-1, -1, -1)) |
Double_t | GetDblParameterWithUnits (std::string parName, TiXmlElement *e, Double_t defaultVal=PARAMETER_NOT_FOUND_DBL) |
TiXmlElement * | GetElement (std::string eleDeclare, TiXmlElement *e=nullptr) |
Get an xml element from a given parent element, according to its declaration. More... | |
TiXmlElement * | GetElementFromFile (std::string configFilename, std::string NameOrDecalre="") |
Open an xml encoded file and find its element. More... | |
TiXmlElement * | GetElementWithName (std::string eleDeclare, std::string eleName) |
Get an xml element from the default location, according to its declaration and its field "name". More... | |
TiXmlElement * | GetElementWithName (std::string eleDeclare, std::string eleName, TiXmlElement *e) |
Get an xml element from a given parent element, according to its declaration and its field "name". More... | |
std::string | GetFieldValue (std::string fieldName, std::string definition, size_t fromPosition=0) |
Gets field value in an xml element string by parsing it as TiXmlElement. More... | |
std::string | GetFieldValue (std::string parName, TiXmlElement *e) |
Returns the field value of an xml element which has the specified name. More... | |
std::string | GetKEYDefinition (std::string keyName) |
Gets the first key definition for keyName found inside buffer starting at fromPosition. More... | |
std::string | GetKEYDefinition (std::string keyName, size_t &Position) |
std::string | GetKEYDefinition (std::string keyName, size_t &Position, std::string buffer) |
std::string | GetKEYDefinition (std::string keyName, std::string buffer) |
std::string | GetKEYStructure (std::string keyName) |
Gets the first key structure for keyName found inside buffer after fromPosition. More... | |
std::string | GetKEYStructure (std::string keyName, size_t &Position) |
std::string | GetKEYStructure (std::string keyName, size_t &Position, std::string buffer) |
std::string | GetKEYStructure (std::string keyName, size_t &Position, TiXmlElement *ele) |
std::string | GetKEYStructure (std::string keyName, std::string buffer) |
TiXmlElement * | GetNextElement (TiXmlElement *e) |
Get the next sibling xml element of this element, with same eleDeclare. More... | |
std::string | GetParameter (std::string parName, size_t &pos, std::string inputString) |
Returns the value for the parameter name parName found in inputString. More... | |
std::string | GetParameter (std::string parName, TiXmlElement *e, TString defaultValue=PARAMETER_NOT_FOUND_STR) |
Returns the value for the parameter named parName in the given section. More... | |
std::pair< std::string, std::string > | GetParameterAndUnits (std::string parname, TiXmlElement *e=nullptr) |
Returns the unit string of the given parameter of the given xml section. More... | |
std::map< std::string, std::string > | GetParametersList () |
It retrieves a map of all parameter:value found in the metadata class. More... | |
TString | GetSearchPath () |
virtual void | InitFromConfigFile () |
To make settings from rml file. This method must be implemented in the derived class. More... | |
virtual void | InitFromRootFile () |
Method called after the object is retrieved from root file. More... | |
virtual Int_t | LoadSectionMetadata () |
This method does some preparation of xml section. More... | |
void | ReadAllParameters () |
Reflection methods, Set value of a datamember in class according to TRestMetadata::fElement. More... | |
void | ReadParametersList (std::map< std::string, std::string > &list) |
It reads a parameter list and associates it to its corresponding metadata member. par0 --> fPar0. More... | |
std::string | ReplaceConstants (const std::string buffer) |
Identifies "constants" in the input buffer, and replace them with corresponding value. More... | |
std::string | ReplaceVariables (const std::string buffer) |
Identifies environmental variable replacing marks in the input buffer, and replace them with corresponding value. More... | |
void | ReSetVersion () |
Resets the version of TRestRun to REST_RELEASE. Only TRestRun is allowed to update version. More... | |
std::string | SearchFile (std::string filename) |
Search files in current directory and directories specified in "searchPath" section. More... | |
void | SetLibraryVersion (TString version) |
Set the library version of this metadata class. More... | |
TiXmlElement * | StringToElement (std::string definition) |
Parsing a string into TiXmlElement object. More... | |
TRestMetadata () | |
TRestMetadata default constructor. More... | |
TRestMetadata (const char *configFilename) | |
constructor More... | |
void | UnSetVersion () |
Resets the version of TRestRun to -1, in case the file is old REST file. Only TRestRun is allowed to update version. More... | |
Protected Attributes | |
TRestAnalysisTree * | fAnalysisTree = nullptr |
TCanvas * | fCanvas = nullptr |
< Canvas for some viewer event More... | |
TVector2 | fCanvasSize |
Canvas size. More... | |
std::vector< std::pair< std::string, TVector2 > > | fCuts |
Stores cut definitions. Any listed observables should be in the range. More... | |
bool | fDynamicObs = false |
It defines whether to use added observables only or all the observables appear in the code. More... | |
bool | fIsExternal = false |
It defines if the process reads event data from an external source. More... | |
std::map< std::string, int > | fObservablesDefined |
Stores the list of all the appeared process observables in the code. More... | |
std::map< std::string, int > | fObservablesUpdated |
Stores the list of process observables updated when processing this event. More... | |
bool | fReadOnly = false |
not used, keep for compatibility More... | |
TRestRun * | fRunInfo = nullptr |
< Pointer to TRestRun object where to find metadata. More... | |
bool | fSingleThreadOnly = false |
bool | fValidateObservables = false |
It defines if observable names should be added to the validation list. More... | |
Protected Attributes inherited from TRestMetadata | |
std::string | configBuffer |
The buffer where the corresponding metadata section is stored. Filled only during Write() More... | |
std::string | fConfigFileName |
Full name of the rml file. More... | |
std::map< std::string, std::string > | fConstants |
Saving a list of rml constants. name-value std::pair. Constants are temporary for this class only. More... | |
TiXmlElement * | fElement |
Saving the sectional element together with global element. More... | |
TiXmlElement * | fElementGlobal |
Saving the global element, to be passed to the resident class, if necessary. More... | |
Bool_t | fError = false |
It can be used as a way to identify that something went wrong using SetError method. More... | |
TString | fErrorMessage = "" |
A std::string to store an optional error message through method SetError. More... | |
TRestManager * | fHostmgr |
All metadata classes can be initialized and managed by TRestManager. More... | |
Int_t | fNErrors = 0 |
It counts the number of errors notified. More... | |
Int_t | fNWarnings = 0 |
It counts the number of warnings notified. More... | |
std::string | fSectionName |
Section name given in the constructor of the derived metadata class. More... | |
Bool_t | fStore |
This variable is used to determine if the metadata structure should be stored in the ROOT file. More... | |
std::map< std::string, std::string > | fVariables |
Saving a list of rml variables. name-value std::pair. More... | |
TRestStringOutput::REST_Verbose_Level | fVerboseLevel |
Verbose level used to print debug info. More... | |
Bool_t | fWarning = false |
It can be used as a way to identify that something went wrong using SetWarning method. More... | |
TString | fWarningMessage = "" |
It can be used as a way to identify that something went wrong using SetWarning method. More... | |
std::string | messageBuffer |
The buffer to store the output message through TRestStringOutput in this class. More... | |
endl_t | RESTendl |
Termination flag object for TRestStringOutput. More... | |
Private Attributes | |
std::vector< TRestEventProcess * > | fFriendlyProcesses |
/// not used More... | |
TRestEvent * | fInputEvent = nullptr |
< not used, keep for compatibility More... | |
TRestEvent * | fOutputEvent = nullptr |
< not used, keep for compatibility More... | |
REST_Process_Output | fOutputLevel |
not used, keep for compatibility More... | |
std::vector< TRestEventProcess * > | fParallelProcesses |
Stores a list of parallel processes if multithreading is enabled. More... | |
|
protected |
Definition at line 39 of file TRestEventProcess.h.
TRestEventProcess::TRestEventProcess | ( | ) |
TRestEventProcess default constructor
Definition at line 69 of file TRestEventProcess.cxx.
TRestEventProcess::~TRestEventProcess | ( | ) |
TRestEventProcess destructor
Definition at line 79 of file TRestEventProcess.cxx.
|
inlinevirtual |
Definition at line 214 of file TRestEventProcess.h.
|
virtual |
Begin of event process, preparation work. Called right before ProcessEvent()
Reimplemented in TRestAxionEventProcess, and TRestRawMemoryBufferToSignalProcess.
|
inlineprotected |
Create the canvas.
Definition at line 191 of file TRestEventProcess.h.
|
virtual |
End of event process. Nothing to do. Called directly after ProcessEvent()
Reimplemented in TRestAxionEventProcess.
|
inlinevirtual |
To be executed at the end of the run (outside event loop)
Reimplemented in TRestLegacyProcess, TRestBenchMarkProcess, TRestDataQualityProcess, TRestRealTimeAddInputFileProcess, TRestRealTimeDrawingProcess, TRestSummaryProcess, TRestDetectorHitsToTrackFastProcess, TRestRawReadoutAnalysisProcess, TRestRawReadoutMetadataProcess, TRestTrackToDetectorHitsProcess, TRestDetectorAvalancheProcess, TRestDetectorDaqChannelSwitchingProcess, TRestDetectorElectronDiffusionProcess, TRestDetectorFiducializationProcess, TRestDetectorHits3DReconstructionProcess, TRestDetectorHitsAnalysisProcess, TRestDetectorHitsNormalizationProcess, TRestDetectorHitsReadoutAnalysisProcess, TRestDetectorHitsReductionProcess, TRestDetectorHitsShuffleProcess, TRestDetectorLightAttenuationProcess, TRestDetectorPositionMappingProcess, TRestDetectorSignalChannelActivityProcess, TRestDetectorSignalViewerProcess, TRestDetectorSingleChannelAnalysisProcess, TRestGeant4AnalysisProcess, TRestGeant4BlobAnalysisProcess, TRestGeant4NeutronTaggingProcess, TRestGeant4QuenchingProcess, TRestGeant4VetoAnalysisProcess, TRestRawBaseLineCorrectionProcess, TRestRawBiPoAnalysisProcess, TRestRawCommonNoiseReductionProcess, TRestRawFindResponseSignalProcess, TRestRawMultiCoBoAsAdToSignalProcess, TRestRawPeaksFinderProcess, TRestRawSignalChannelActivityProcess, TRestRawSignalConvolutionFittingProcess, TRestRawSignalFittingProcess, TRestRawSignalGeneralFitProcess, TRestRawSignalShapingProcess, TRestRawSignalViewerProcess, TRestRawUSTCToSignalProcess, TRestTrack2DAnalysisProcess, TRestTrack3DAnalysisProcess, TRestTrackAnalysisProcess, TRestTrackBlobAnalysisProcess, TRestTrackDetachIsolatedNodesProcess, TRestTrackLineAnalysisProcess, TRestTrackLinearizationProcess, TRestTrackPathMinimizationProcess, TRestTrackPointLikeAnalysisProcess, TRestTrackReconnectionProcess, TRestTrackReductionProcess, and TRestTrackViewerProcess.
Definition at line 232 of file TRestEventProcess.h.
|
inline |
Return the local analysis tree (dummy)
Definition at line 265 of file TRestEventProcess.h.
|
inline |
Get canvas.
Definition at line 268 of file TRestEventProcess.h.
|
pure virtual |
Get pointer to input event. Must be implemented in the derived class.
Implemented in TRestLegacyProcess, TRestBenchMarkProcess, TRestDataQualityProcess, TRestEventRateAnalysisProcess, TRestEventSelectionProcess, TRestMySQLToAnalysisProcess, TRestRealTimeAddInputFileProcess, TRestRealTimeDrawingProcess, TRestSummaryProcess, TRestAxionAnalysisProcess, TRestAxionEventProcess, TRestAxionFieldPropagationProcess, TRestAxionGeneratorProcess, TRestDetectorHitsToTrackFastProcess, TRestDetectorHitsToTrackProcess, TRestDetectorSignalToRawSignalProcess, TRestGeant4ToDetectorHitsProcess, TRestRawReadoutAnalysisProcess, TRestRawReadoutMetadataProcess, TRestRawToDetectorSignalProcess, TRestTrackToDetectorHitsProcess, TRestDetectorAvalancheProcess, TRestDetectorDaqChannelSwitchingProcess, TRestDetectorElectronDiffusionProcess, TRestDetectorFiducializationProcess, TRestDetectorGarfieldDriftProcess, TRestDetectorHitmapAnalysisProcess, TRestDetectorHits3DReconstructionProcess, TRestDetectorHitsAnalysisProcess, TRestDetectorHitsGaussAnalysisProcess, TRestDetectorHitsNormalizationProcess, TRestDetectorHitsReadoutAnalysisProcess, TRestDetectorHitsReductionProcess, TRestDetectorHitsRotationProcess, TRestDetectorHitsShuffleProcess, TRestDetectorHitsSmearingProcess, TRestDetectorHitsSpecularProcess, TRestDetectorHitsToSignalProcess, TRestDetectorHitsTranslationProcess, TRestDetectorLightAttenuationProcess, TRestDetectorPositionMappingProcess, TRestDetectorSignalChannelActivityProcess, TRestDetectorSignalRecoveryProcess, TRestDetectorSignalToHitsProcess, TRestDetectorSignalViewerProcess, TRestDetectorSingleChannelAnalysisProcess, TRestDetectorTriggerAnalysisProcess, TRestGeant4AnalysisProcess, TRestGeant4BlobAnalysisProcess, TRestGeant4NeutronTaggingProcess, TRestGeant4QuenchingProcess, TRestGeant4VetoAnalysisProcess, TRestRawBaseLineCorrectionProcess, TRestRawBiPoAnalysisProcess, TRestRawCommonNoiseReductionProcess, TRestRawFeminosRootToSignalProcess, TRestRawFindResponseSignalProcess, TRestRawMemoryBufferToSignalProcess, TRestRawPeaksFinderProcess, TRestRawSignalAddNoiseProcess, TRestRawSignalAnalysisProcess, TRestRawSignalChannelActivityProcess, TRestRawSignalConvolutionFittingProcess, TRestRawSignalFittingProcess, TRestRawSignalGeneralFitProcess, TRestRawSignalIdTaggingProcess, TRestRawSignalRangeReductionProcess, TRestRawSignalRemoveChannelsProcess, TRestRawSignalShapingProcess, TRestRawSignalViewerProcess, TRestRawToSignalProcess, TRestRawVetoAnalysisProcess, TRestTrack2DAnalysisProcess, TRestTrack3DAnalysisProcess, TRestTrackAnalysisProcess, TRestTrackBlobAnalysisProcess, TRestTrackDetachIsolatedNodesProcess, TRestTrackLineAnalysisProcess, TRestTrackLinearizationProcess, TRestTrackPathMinimizationProcess, TRestTrackPointLikeAnalysisProcess, TRestTrackReconnectionProcess, TRestTrackReductionProcess, and TRestTrackViewerProcess.
|
inlineprotected |
Get a metadata object from the host TRestRun.
Directly input the type as template argument. This helps to simplify the code and prevents mis-spelling. For example: fReadout = GetMetadata<TRestReadout>();
. No need for type conversion.
Definition at line 104 of file TRestEventProcess.h.
|
inlineprotected |
Definition at line 111 of file TRestEventProcess.h.
|
inlineprotected |
Definition at line 183 of file TRestEventProcess.h.
|
pure virtual |
Get pointer to output event. Must be implemented in the derived class.
Implemented in TRestLegacyProcess, TRestBenchMarkProcess, TRestDataQualityProcess, TRestEventRateAnalysisProcess, TRestEventSelectionProcess, TRestMySQLToAnalysisProcess, TRestRealTimeAddInputFileProcess, TRestRealTimeDrawingProcess, TRestSummaryProcess, TRestAxionAnalysisProcess, TRestAxionEventProcess, TRestAxionFieldPropagationProcess, TRestAxionGeneratorProcess, TRestDetectorHitsToTrackFastProcess, TRestDetectorHitsToTrackProcess, TRestDetectorSignalToRawSignalProcess, TRestGeant4ToDetectorHitsProcess, TRestRawReadoutAnalysisProcess, TRestRawReadoutMetadataProcess, TRestRawToDetectorSignalProcess, TRestTrackToDetectorHitsProcess, TRestDetectorAvalancheProcess, TRestDetectorDaqChannelSwitchingProcess, TRestDetectorElectronDiffusionProcess, TRestDetectorFiducializationProcess, TRestDetectorGarfieldDriftProcess, TRestDetectorHitmapAnalysisProcess, TRestDetectorHits3DReconstructionProcess, TRestDetectorHitsAnalysisProcess, TRestDetectorHitsGaussAnalysisProcess, TRestDetectorHitsNormalizationProcess, TRestDetectorHitsReadoutAnalysisProcess, TRestDetectorHitsReductionProcess, TRestDetectorHitsRotationProcess, TRestDetectorHitsShuffleProcess, TRestDetectorHitsSmearingProcess, TRestDetectorHitsSpecularProcess, TRestDetectorHitsToSignalProcess, TRestDetectorHitsTranslationProcess, TRestDetectorLightAttenuationProcess, TRestDetectorPositionMappingProcess, TRestDetectorSignalChannelActivityProcess, TRestDetectorSignalRecoveryProcess, TRestDetectorSignalToHitsProcess, TRestDetectorSignalViewerProcess, TRestDetectorSingleChannelAnalysisProcess, TRestDetectorTriggerAnalysisProcess, TRestGeant4AnalysisProcess, TRestGeant4BlobAnalysisProcess, TRestGeant4NeutronTaggingProcess, TRestGeant4QuenchingProcess, TRestGeant4VetoAnalysisProcess, TRestRawBaseLineCorrectionProcess, TRestRawBiPoAnalysisProcess, TRestRawCommonNoiseReductionProcess, TRestRawFeminosRootToSignalProcess, TRestRawFindResponseSignalProcess, TRestRawMemoryBufferToSignalProcess, TRestRawPeaksFinderProcess, TRestRawSignalAddNoiseProcess, TRestRawSignalAnalysisProcess, TRestRawSignalChannelActivityProcess, TRestRawSignalConvolutionFittingProcess, TRestRawSignalFittingProcess, TRestRawSignalGeneralFitProcess, TRestRawSignalIdTaggingProcess, TRestRawSignalRangeReductionProcess, TRestRawSignalRemoveChannelsProcess, TRestRawSignalShapingProcess, TRestRawSignalViewerProcess, TRestRawToSignalProcess, TRestRawVetoAnalysisProcess, TRestTrack2DAnalysisProcess, TRestTrack3DAnalysisProcess, TRestTrackAnalysisProcess, TRestTrackBlobAnalysisProcess, TRestTrackDetachIsolatedNodesProcess, TRestTrackLineAnalysisProcess, TRestTrackLinearizationProcess, TRestTrackPathMinimizationProcess, TRestTrackPointLikeAnalysisProcess, TRestTrackReconnectionProcess, TRestTrackReductionProcess, and TRestTrackViewerProcess.
|
inlineprotected |
Get a list of data members from parallel processes which is same to this process's certain data member.
This method can be used in merging and exporting histograms at the end of the process, to support multi-thread run.
Because all the parallel processes are in same data structure, this method directly gets the data members by accessing certain offset.
Usage: (suppose we defined fHist as data member) auto hists = this->GetParallelObjects(&fHist); for (auto h : hists) { fHist->Add(h); }
Definition at line 128 of file TRestEventProcess.h.
|
pure virtual |
Implemented in TRestLegacyProcess, TRestDataQualityProcess, TRestMySQLToAnalysisProcess, TRestRealTimeDrawingProcess, TRestSummaryProcess, TRestAxionAnalysisProcess, TRestAxionDeviationProcess, TRestAxionFieldPropagationProcess, TRestAxionGeneratorProcess, TRestAxionOpticsProcess, TRestAxionTransmissionProcess, TRestAxionTransportProcess, TRestDetectorHitsToTrackProcess, TRestDetectorSignalToRawSignalProcess, TRestGeant4ToDetectorHitsProcess, TRestRawToDetectorSignalProcess, TRestDetectorHitsGaussAnalysisProcess, TRestDetectorHitsSpecularProcess, TRestDetectorHitsToSignalProcess, TRestDetectorSignalChannelActivityProcess, TRestDetectorSignalRecoveryProcess, TRestDetectorSignalToHitsProcess, TRestDetectorTriggerAnalysisProcess, TRestGeant4AnalysisProcess, TRestGeant4NeutronTaggingProcess, TRestGeant4QuenchingProcess, TRestRawBaseLineCorrectionProcess, TRestRawBiPoToSignalProcess, TRestRawCommonNoiseReductionProcess, TRestRawMemoryBufferToSignalProcess, TRestRawSignalAddNoiseProcess, TRestRawSignalChannelActivityProcess, TRestRawSignalRemoveChannelsProcess, TRestRawSignalShapingProcess, and TRestRawVetoAnalysisProcess.
|
inline |
Return the pointer of the hosting TRestRun object.
Definition at line 263 of file TRestEventProcess.h.
|
inlinevirtual |
Interface to external file reading, get the total bytes of input binary file. To be implemented in external processes.
Reimplemented in TRestRawToSignalProcess.
Definition at line 255 of file TRestEventProcess.h.
|
inlinevirtual |
Interface to external file reading, get the read bytes. To be implemented in external processes.
Reimplemented in TRestRawToSignalProcess.
Definition at line 257 of file TRestEventProcess.h.
|
inlineoverridevirtual |
To make settings from rml file. This method must be implemented in the derived class.
Reimplemented from TRestMetadata.
Reimplemented in TRestDataQualityProcess, TRestMySQLToAnalysisProcess, TRestRealTimeAddInputFileProcess, TRestSummaryProcess, TRestAxionTransmissionProcess, TRestDetectorHitsToTrackFastProcess, TRestDetectorSignalToRawSignalProcess, TRestGeant4ToDetectorHitsProcess, TRestRawReadoutAnalysisProcess, TRestTrackToDetectorHitsProcess, TRestDetectorAvalancheProcess, TRestDetectorDaqChannelSwitchingProcess, TRestDetectorElectronDiffusionProcess, TRestDetectorFiducializationProcess, TRestDetectorHitmapAnalysisProcess, TRestDetectorHits3DReconstructionProcess, TRestDetectorHitsAnalysisProcess, TRestDetectorHitsNormalizationProcess, TRestDetectorHitsReadoutAnalysisProcess, TRestDetectorHitsReductionProcess, TRestDetectorHitsRotationProcess, TRestDetectorHitsShuffleProcess, TRestDetectorHitsSpecularProcess, TRestDetectorHitsTranslationProcess, TRestDetectorPositionMappingProcess, TRestDetectorSignalChannelActivityProcess, TRestDetectorSignalViewerProcess, TRestDetectorSingleChannelAnalysisProcess, TRestGeant4BlobAnalysisProcess, TRestGeant4NeutronTaggingProcess, TRestGeant4QuenchingProcess, TRestGeant4VetoAnalysisProcess, TRestRawBaseLineCorrectionProcess, TRestRawMemoryBufferToSignalProcess, TRestRawPeaksFinderProcess, TRestRawSignalAnalysisProcess, TRestRawSignalConvolutionFittingProcess, TRestRawSignalIdTaggingProcess, TRestRawSignalRangeReductionProcess, TRestRawSignalRemoveChannelsProcess, TRestRawSignalViewerProcess, TRestRawToSignalProcess, TRestRawVetoAnalysisProcess, TRestTrack2DAnalysisProcess, TRestTrack3DAnalysisProcess, TRestTrackAnalysisProcess, TRestTrackBlobAnalysisProcess, TRestTrackDetachIsolatedNodesProcess, TRestTrackPointLikeAnalysisProcess, and TRestTrackReconnectionProcess.
Definition at line 203 of file TRestEventProcess.h.
|
inlinevirtual |
To be executed at the beginning of the run (outside event loop)
Reimplemented in TRestLegacyProcess, TRestBenchMarkProcess, TRestDataQualityProcess, TRestEventRateAnalysisProcess, TRestEventSelectionProcess, TRestMySQLToAnalysisProcess, TRestRealTimeAddInputFileProcess, TRestRealTimeDrawingProcess, TRestSummaryProcess, TRestAxionDeviationProcess, TRestAxionEventProcess, TRestAxionFieldPropagationProcess, TRestAxionGeneratorProcess, TRestAxionOpticsProcess, TRestAxionTransmissionProcess, TRestAxionTransportProcess, TRestDetectorHitsToTrackFastProcess, TRestDetectorSignalToRawSignalProcess, TRestGeant4ToDetectorHitsProcess, TRestRawReadoutAnalysisProcess, TRestRawReadoutMetadataProcess, TRestTrackToDetectorHitsProcess, TRestDetectorAvalancheProcess, TRestDetectorDaqChannelSwitchingProcess, TRestDetectorElectronDiffusionProcess, TRestDetectorFiducializationProcess, TRestDetectorHits3DReconstructionProcess, TRestDetectorHitsAnalysisProcess, TRestDetectorHitsGaussAnalysisProcess, TRestDetectorHitsNormalizationProcess, TRestDetectorHitsReadoutAnalysisProcess, TRestDetectorHitsReductionProcess, TRestDetectorHitsShuffleProcess, TRestDetectorHitsSmearingProcess, TRestDetectorHitsToSignalProcess, TRestDetectorLightAttenuationProcess, TRestDetectorPositionMappingProcess, TRestDetectorSignalChannelActivityProcess, TRestDetectorSignalRecoveryProcess, TRestDetectorSignalToHitsProcess, TRestDetectorSignalViewerProcess, TRestDetectorSingleChannelAnalysisProcess, TRestDetectorTriggerAnalysisProcess, TRestGeant4AnalysisProcess, TRestGeant4BlobAnalysisProcess, TRestGeant4NeutronTaggingProcess, TRestGeant4QuenchingProcess, TRestGeant4VetoAnalysisProcess, TRestRawAFTERToSignalProcess, TRestRawBaseLineCorrectionProcess, TRestRawBiPoAnalysisProcess, TRestRawBiPoToSignalProcess, TRestRawCommonNoiseReductionProcess, TRestRawFeminosRootToSignalProcess, TRestRawFEUDreamToSignalProcess, TRestRawFindResponseSignalProcess, TRestRawMemoryBufferToSignalProcess, TRestRawMultiCoBoAsAdToSignalProcess, TRestRawMultiFEMINOSToSignalProcess, TRestRawPeaksFinderProcess, TRestRawSignalAnalysisProcess, TRestRawSignalChannelActivityProcess, TRestRawSignalConvolutionFittingProcess, TRestRawSignalFittingProcess, TRestRawSignalGeneralFitProcess, TRestRawSignalIdTaggingProcess, TRestRawSignalRangeReductionProcess, TRestRawSignalShapingProcess, TRestRawSignalViewerProcess, TRestRawTDSToSignalProcess, TRestRawToSignalProcess, TRestRawUSTCToSignalProcess, TRestRawVetoAnalysisProcess, TRestTrack2DAnalysisProcess, TRestTrack3DAnalysisProcess, TRestTrackAnalysisProcess, TRestTrackBlobAnalysisProcess, TRestTrackDetachIsolatedNodesProcess, TRestTrackLineAnalysisProcess, TRestTrackLinearizationProcess, TRestTrackPathMinimizationProcess, TRestTrackPointLikeAnalysisProcess, TRestTrackReconnectionProcess, TRestTrackReductionProcess, and TRestTrackViewerProcess.
Definition at line 224 of file TRestEventProcess.h.
|
inline |
Return whether this process is external process.
Definition at line 261 of file TRestEventProcess.h.
|
overridevirtual |
This method does some preparation of xml section.
Preparation includes: setting the name, title and verbose level of the current class. Finding out and saving the env sections.
By calling TRestMetadata::ReadElement(), is also expands for loops and include definitions, and replaces env and expressions in rml config section.
Reimplemented from TRestMetadata.
|
inlinevirtual |
In case the analysis tree is reset(switched to new file), some process needs to have action.
Definition at line 246 of file TRestEventProcess.h.
|
pure virtual |
Process one event.
Implemented in TRestLegacyProcess, TRestAxionFieldPropagationProcess, TRestAxionGeneratorProcess, TRestDetectorSignalRecoveryProcess, TRestRawBaseLineCorrectionProcess, TRestRawBiPoAnalysisProcess, TRestAxionAnalysisProcess, TRestAxionDeviationProcess, TRestAxionOpticsProcess, TRestAxionTransmissionProcess, TRestAxionTransportProcess, TRestBenchMarkProcess, TRestDataQualityProcess, TRestEventRateAnalysisProcess, TRestEventSelectionProcess, TRestMySQLToAnalysisProcess, TRestRealTimeAddInputFileProcess, TRestRealTimeDrawingProcess, TRestSummaryProcess, TRestDetectorHitsToTrackFastProcess, TRestDetectorHitsToTrackProcess, TRestDetectorSignalToRawSignalProcess, TRestGeant4ToDetectorHitsProcess, TRestRawReadoutAnalysisProcess, TRestRawReadoutMetadataProcess, TRestRawToDetectorSignalProcess, TRestTrackToDetectorHitsProcess, TRestDetectorAvalancheProcess, TRestDetectorDaqChannelSwitchingProcess, TRestDetectorElectronDiffusionProcess, TRestDetectorFiducializationProcess, TRestDetectorGarfieldDriftProcess, TRestDetectorHitmapAnalysisProcess, TRestDetectorHits3DReconstructionProcess, TRestDetectorHitsAnalysisProcess, TRestDetectorHitsGaussAnalysisProcess, TRestDetectorHitsNormalizationProcess, TRestDetectorHitsReadoutAnalysisProcess, TRestDetectorHitsReductionProcess, TRestDetectorHitsRotationProcess, TRestDetectorHitsShuffleProcess, TRestDetectorHitsSmearingProcess, TRestDetectorHitsSpecularProcess, TRestDetectorHitsToSignalProcess, TRestDetectorHitsTranslationProcess, TRestDetectorLightAttenuationProcess, TRestDetectorPositionMappingProcess, TRestDetectorSignalChannelActivityProcess, TRestDetectorSignalToHitsProcess, TRestDetectorSignalViewerProcess, TRestDetectorSingleChannelAnalysisProcess, TRestDetectorTriggerAnalysisProcess, TRestGeant4AnalysisProcess, TRestGeant4BlobAnalysisProcess, TRestGeant4NeutronTaggingProcess, TRestGeant4QuenchingProcess, TRestGeant4VetoAnalysisProcess, TRestRawAFTERToSignalProcess, TRestRawBiPoToSignalProcess, TRestRawCommonNoiseReductionProcess, TRestRawFeminosRootToSignalProcess, TRestRawFEUDreamToSignalProcess, TRestRawFindResponseSignalProcess, TRestRawMemoryBufferToSignalProcess, TRestRawMultiCoBoAsAdToSignalProcess, TRestRawMultiFEMINOSToSignalProcess, TRestRawPeaksFinderProcess, TRestRawSignalAddNoiseProcess, TRestRawSignalAnalysisProcess, TRestRawSignalChannelActivityProcess, TRestRawSignalConvolutionFittingProcess, TRestRawSignalFittingProcess, TRestRawSignalGeneralFitProcess, TRestRawSignalIdTaggingProcess, TRestRawSignalRangeReductionProcess, TRestRawSignalRemoveChannelsProcess, TRestRawSignalShapingProcess, TRestRawSignalViewerProcess, TRestRawTDSToSignalProcess, TRestRawUSTCToSignalProcess, TRestRawVetoAnalysisProcess, TRestTrack2DAnalysisProcess, TRestTrack3DAnalysisProcess, TRestTrackAnalysisProcess, TRestTrackBlobAnalysisProcess, TRestTrackDetachIsolatedNodesProcess, TRestTrackLineAnalysisProcess, TRestTrackLinearizationProcess, TRestTrackPathMinimizationProcess, TRestTrackPointLikeAnalysisProcess, TRestTrackReconnectionProcess, TRestTrackReductionProcess, and TRestTrackViewerProcess.
|
inline |
Definition at line 220 of file TRestEventProcess.h.
|
inlinevirtual |
Definition at line 216 of file TRestEventProcess.h.
|
inline |
Set canvas size.
Definition at line 240 of file TRestEventProcess.h.
|
inline |
Definition at line 218 of file TRestEventProcess.h.
|
inlineprotected |
Set observable value for AnalysisTree.
It will rename the observable to "processName_obsName" If use dynamic observable, it will try to create new observable in the AnalysisTree if the observable is not found
Definition at line 151 of file TRestEventProcess.h.
|
inline |
Set TRestRun for this process.
Definition at line 238 of file TRestEventProcess.h.
|
inline |
Return whether this process is single std::thread only.
Definition at line 259 of file TRestEventProcess.h.
|
protected |
< Pointer to the analysis tree where to store observable definitions and values. Note that this tree does not write data to disk. It only keeps a list of observables and their addresses. It is the one from TRestRun that reads this tree's structure, calls Fill() method, and writes data to disk. In other words, this tree is dummy and has zero entries. To get the real one, use GetFullAnalysisTree()
Definition at line 72 of file TRestEventProcess.h.
|
protected |
< Canvas for some viewer event
Definition at line 64 of file TRestEventProcess.h.
|
protected |
Canvas size.
Definition at line 66 of file TRestEventProcess.h.
|
protected |
Stores cut definitions. Any listed observables should be in the range.
[name, id in AnalysisTree]
Definition at line 92 of file TRestEventProcess.h.
|
protected |
It defines whether to use added observables only or all the observables appear in the code.
Definition at line 84 of file TRestEventProcess.h.
|
private |
/// not used
Stores a list of friendly processes. Sometimes the process may behave differently according to the friend processes added. It can also get parameter or output event from friend processes
Definition at line 59 of file TRestEventProcess.h.
|
private |
< not used, keep for compatibility
Definition at line 50 of file TRestEventProcess.h.
|
protected |
It defines if the process reads event data from an external source.
Definition at line 76 of file TRestEventProcess.h.
|
protected |
Stores the list of all the appeared process observables in the code.
[name, id in AnalysisTree]
Definition at line 90 of file TRestEventProcess.h.
|
protected |
Stores the list of process observables updated when processing this event.
Definition at line 88 of file TRestEventProcess.h.
|
private |
< not used, keep for compatibility
Definition at line 52 of file TRestEventProcess.h.
|
private |
not used, keep for compatibility
Definition at line 54 of file TRestEventProcess.h.
|
private |
Stores a list of parallel processes if multithreading is enabled.
Definition at line 61 of file TRestEventProcess.h.
|
protected |
not used, keep for compatibility
Definition at line 82 of file TRestEventProcess.h.
|
protected |
< Pointer to TRestRun object where to find metadata.
Definition at line 74 of file TRestEventProcess.h.
|
protected |
It defines if the process can run only under single std::thread mode. If true, the whole process chain will not use multithreading. Useful for processes with viewing functionality. Always true for external processes.
Definition at line 80 of file TRestEventProcess.h.
|
protected |
It defines if observable names should be added to the validation list.
Definition at line 86 of file TRestEventProcess.h.