REST-for-Physics  v2.3
Rare Event Searches ToolKit for Physics
Public Member Functions | Private Member Functions | Private Attributes
TRestSummaryProcess Class Reference

Detailed Description

A process to define basic data members to serve as a metadata summary in a data processing chain.

TRestSummaryProcess might be added at any stage of the data processing chain.

This process will register as metadata the following members:

  1. The mean rate and its mean rate sigma as deduced from the final number of entries registered at the current TRestAnalysisTree, using the start and end times defined at the current TRestRun object.
  2. The average of any observable available at the TRestAnalysisTree object accessible to the processing chain. It is defined through the keyword <average where we must specify the name of the observable we are willing to calculate its average using the field obsName. Optionally we are allowed to introduce the range where events will be considered for the average calculation.
  3. The RMS of any observable available at the TRestAnalysisTree object accessible to the processing chain. It is defined through the keyword <rml where we must specify the name of the observable we are willing to calculate its RMS using the field obsName. Optionally we are allowed to introduce the range where events will be considered for the RMS calculation.
  4. The maximum of any observable available at the TRestAnalysisTree object accessible to the processing chain. It is defined through the keyword <maximum where we must specify the name of the observable we are willing to calculate its maximum using the field obsName. Optionally we are allowed to introduce the range where events will be considered for the maxium calculation.
  5. The minimum of any observable available at the TRestAnalysisTree object accessible to the processing chain. It is defined through the keyword <minimum where we must specify the name of the observable we are willing to calculate its minimum using the field obsName. Optionally we are allowed to introduce the range where events will be considered for the minimum calculation.

The following code shows an example of implementation inside a TRestProcessRunner RML section.

<addProcess type="TRestSummaryProcess" name="summary" value="ON" verboseLevel="info" >
<average obsName="rawAna_ThresholdIntegral" range="(0,500000)" />
<average obsName="rawAna_BaseLineMean" range="(0,500)" />
<average obsName="rawAna_BaseLineSigmaMean" range="(0,50)" />
<rms obsName="rawAna_ThresholdIntegral" range="(0,500000)" />
<rms obsName="rawAna_BaseLineMean" range="(0,500)" />
<maximum obsName="hitsAna_energy" />
</addProcess>

RESTsoft - Software for Rare Event Searches with TPCs

History of developments:

2020-May: First implementation and concept Javier Galan

Author
Javier Galan

Definition at line 30 of file TRestSummaryProcess.h.

#include <TRestSummaryProcess.h>

Inheritance diagram for TRestSummaryProcess:
TRestEventProcess TRestMetadata

Public Member Functions

 ClassDefOverride (TRestSummaryProcess, 2)
 
RESTValue GetInputEvent () const override
 Get pointer to input event. Must be implemented in the derived class.
 
RESTValue GetOutputEvent () const override
 Get pointer to output event. Must be implemented in the derived class.
 
const char * GetProcessName () const override
 Returns the name of this process.
 
void LoadConfig (const std::string &configFilename, const std::string &name="")
 Function to load the configuration from an external configuration file. More...
 
TRestEventProcessMaker ()
 Returns a new instance of this class.
 
void PrintMetadata () override
 It prints out the process parameters stored in the metadata structure.
 
TRestEventProcessEvent (TRestEvent *inputEvent) override
 The main processing event function.
 
 TRestSummaryProcess ()
 Default constructor.
 
 TRestSummaryProcess (const char *configFilename)
 Constructor loading data from a config file. More...
 
 ~TRestSummaryProcess ()
 Default destructor.
 
- Public Member Functions inherited from TRestEventProcess
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()
 
 ClassDefOverride (TRestEventProcess, 3)
 
virtual void EndOfEventProcess (TRestEvent *inputEvent=nullptr)
 End of event process. Nothing to do. Called directly after ProcessEvent()
 
TRestAnalysisTreeGetAnalysisTree () const
 Return the local analysis tree (dummy)
 
TCanvas * GetCanvas () const
 Get canvas.
 
TRestAnalysisTreeGetFullAnalysisTree ()
 
std::vector< std::string > GetListOfAddedObservables ()
 
TRestRunGetRunInfo () const
 Return the pointer of the hosting TRestRun object.
 
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.
 
Bool_t isExternal () const
 Return whether this process is external process.
 
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.
 
virtual Bool_t OpenInputFiles (const std::vector< std::string > &files)
 
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.
 
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.
 
Bool_t singleThreadOnly () const
 Return whether this process is single std::thread only.
 
 TRestEventProcess ()
 
 ~TRestEventProcess ()
 

Private Member Functions

void EndProcess () override
 Function to use when all events have been processed.
 
void InitFromConfigFile () override
 Function reading input parameters from the RML TRestSummaryProcess section.
 
void Initialize () override
 Function to initialize input/output event members and define the section name and library version.
 
void InitProcess () override
 Function to use in initialization of process members before starting to process the event.
 
void LoadDefaultConfig ()
 Function to load the default config in absence of RML input.
 

Private Attributes

std::map< TString, Double_t > fAverage
 It will register the average of an existing analyisTree observable.
 
std::map< TString, TVector2 > fAverageRange
 If defined it will set the range where average is calculated.
 
TRestEventfEvent = nullptr
 The event pointer is not used in this process.
 
std::map< TString, Double_t > fMaximum
 It will register the maximum value of an existing analyisTree observable.
 
std::map< TString, TVector2 > fMaximumRange
 If defined it will set the range where maximum is calculated.
 
Double_t fMeanRate
 The mean rate during the run, calculated as the final number of entries in the run.
 
Double_t fMeanRateSigma
 The mean rate sigma calculated as the square root of the corresponding mean rate counts.
 
std::map< TString, Double_t > fMinimum
 It will register the minimum value of an existing analyisTree observable.
 
std::map< TString, TVector2 > fMinimumRange
 If defined it will set the range where minimum is calculated.
 
std::map< TString, Double_t > fRMS
 It will register the RMS of an existing analysisTree observable.
 
std::map< TString, TVector2 > fRMSRange
 If defined it will set the range where RMS is calculated.
 

Additional Inherited Members

- Protected Types inherited from TRestEventProcess
enum  REST_Process_Output { No_Output , Observable , Internal_Var , Full_Output }
 
- Protected Member Functions inherited from TRestEventProcess
void BeginPrintProcess ()
 [name, cut range]
 
void CreateCanvas ()
 Create the canvas.
 
void EndPrintProcess ()
 
TRestEventProcessGetFriend (const std::string &nameOrType)
 
TRestEventProcessGetFriendLive (const std::string &nameOrType)
 
template<class T >
T * GetMetadata ()
 Get a metadata object from the host TRestRun. More...
 
TRestMetadataGetMetadata (const std::string &nameOrType)
 
size_t GetNumberOfParallelProcesses () const
 
template<class T >
GetObservableValue (const std::string &name)
 
TRestEventProcessGetParallel (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 Attributes inherited from TRestEventProcess
TRestAnalysisTreefAnalysisTree = nullptr
 
TCanvas * fCanvas = nullptr
 < Canvas for some viewer event
 
TVector2 fCanvasSize
 Canvas size.
 
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.
 
bool fIsExternal = false
 It defines if the process reads event data from an external source.
 
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.
 
bool fReadOnly = false
 not used, keep for compatibility
 
TRestRunfRunInfo = nullptr
 < Pointer to TRestRun object where to find metadata.
 
bool fSingleThreadOnly = false
 
bool fValidateObservables = false
 It defines if observable names should be added to the validation list.
 

Constructor & Destructor Documentation

◆ TRestSummaryProcess()

TRestSummaryProcess::TRestSummaryProcess ( const char *  configFilename)

Constructor loading data from a config file.

The path to the config file can be specified using full path, absolute or relative.

If the file is not found then REST will try to find the file on the default paths defined in REST Framework, usually at the REST_PATH installation directory. Additional search paths may be defined using the parameter searchPath in globals section. See TRestMetadata description.

Parameters
configFilenameA const char* giving the path to an RML file.

Definition at line 108 of file TRestSummaryProcess.cxx.

Member Function Documentation

◆ LoadConfig()

void TRestSummaryProcess::LoadConfig ( const std::string &  configFilename,
const std::string &  name = "" 
)

Function to load the configuration from an external configuration file.

If no configuration path is defined in TRestMetadata::SetConfigFilePath the path to the config file must be specified using full path, absolute or relative.

Parameters
configFilenameA const char* giving the path to an RML file.
nameThe name of the specific metadata. It will be used to find the corresponding TRestSummaryProcess section inside the RML.

Definition at line 139 of file TRestSummaryProcess.cxx.


The documentation for this class was generated from the following files: