hpstr
The Heavy Photon Search Toolkit for Reconstruction (hpstr) provides an interface to physics data from the HPS experiment saved in the LCIO format and converts it into an ROOT based format.
|
#include <SvtRawDataProcessor.h>
Public Member Functions | |
SvtRawDataProcessor (const std::string &name, Process &process) | |
Class constructor. | |
~SvtRawDataProcessor () | |
virtual void | configure (const ParameterSet ¶meters) |
Callback for the Processor to configure itself from the given set of parameters. | |
virtual void | initialize (TTree *tree) |
Callback for the Processor to take any necessary action when the processing of events starts. | |
virtual bool | process (IEvent *ievent) |
Process the event and put new data products into it. | |
virtual void | finalize () |
Callback for the Processor to take any necessary action when the processing of events finishes. | |
![]() | |
Processor (const std::string &name, Process &process) | |
Class constructor. | |
virtual | ~Processor () |
virtual void | initialize (std::string inFilename, std::string outFilename) |
Callback for the Processor to take any necessary action when the processing of events starts, such as initializing files. | |
virtual void | setFile (TFile *outFile) |
Set output TFile for AnaProcessors. | |
virtual bool | process () |
Process the histograms and generate analysis output. | |
Private Attributes | |
std::vector< RawSvtHit * > | rawhits_ |
Container to hold all TrackerHit objects. | |
std::string | hitCollLcio_ {"SVTRawTrackerHits"} |
collection name | |
std::string | hitfitCollLcio_ {"SVTFittedRawTrackerHits"} |
collection name | |
std::string | hitCollRoot_ {"SVTRawTrackerHits"} |
collection name | |
int | debug_ {0} |
Debug Level. | |
Additional Inherited Members | |
![]() | |
static void | declare (const std::string &classname, ProcessorMaker *) |
Internal function which is part of the ProcessorFactory machinery. | |
![]() | |
Process & | process_ |
TFile * | outF_ {nullptr} |
std::string | name_ |
Definition at line 36 of file SvtRawDataProcessor.h.
SvtRawDataProcessor | ( | const std::string & | name, |
Process & | process | ||
) |
Class constructor.
name | Name for this instance of the class. |
process | The Process class associated with Processor, provided by the processing framework. |
Definition at line 9 of file SvtRawDataProcessor.cxx.
~SvtRawDataProcessor | ( | ) |
Destructor
Definition at line 13 of file SvtRawDataProcessor.cxx.
|
virtual |
Callback for the Processor to configure itself from the given set of parameters.
parameters | ParameterSet for configuration. |
Reimplemented from Processor.
Definition at line 16 of file SvtRawDataProcessor.cxx.
|
virtual |
Callback for the Processor to take any necessary action when the processing of events finishes.
Implements Processor.
Definition at line 150 of file SvtRawDataProcessor.cxx.
|
virtual |
Callback for the Processor to take any necessary action when the processing of events starts.
tree |
Implements Processor.
Definition at line 33 of file SvtRawDataProcessor.cxx.
|
virtual |
Process the event and put new data products into it.
event | The Event to process. |
Implements Processor.
Definition at line 38 of file SvtRawDataProcessor.cxx.
|
private |
Debug Level.
Definition at line 85 of file SvtRawDataProcessor.h.
|
private |
collection name
Definition at line 81 of file SvtRawDataProcessor.h.
|
private |
collection name
Definition at line 83 of file SvtRawDataProcessor.h.
|
private |
collection name
Definition at line 82 of file SvtRawDataProcessor.h.
|
private |
Container to hold all TrackerHit objects.
Definition at line 80 of file SvtRawDataProcessor.h.