12 #ifndef RestCore_TRestTrackBlobAnalysisProcess
13 #define RestCore_TRestTrackBlobAnalysisProcess
15 #include <TRestTrackEvent.h>
17 #include "TRestEventProcess.h"
26 std::vector<std::string> fQ1_Observables;
27 std::vector<double> fQ1_Radius;
29 std::vector<std::string> fQ2_Observables;
30 std::vector<double> fQ2_Radius;
32 std::vector<std::string> fQ1_X_Observables;
33 std::vector<double> fQ1_X_Radius;
35 std::vector<std::string> fQ2_X_Observables;
36 std::vector<double> fQ2_X_Radius;
38 std::vector<std::string> fQ1_Y_Observables;
39 std::vector<double> fQ1_Y_Radius;
41 std::vector<std::string> fQ2_Y_Observables;
42 std::vector<double> fQ2_Y_Radius;
46 std::vector<std::string> fQhigh_Observables;
47 std::vector<double> fQhigh_Radius;
49 std::vector<std::string> fQlow_Observables;
50 std::vector<double> fQlow_Radius;
52 std::vector<std::string> fQhigh_X_Observables;
53 std::vector<double> fQhigh_X_Radius;
55 std::vector<std::string> fQlow_X_Observables;
56 std::vector<double> fQlow_X_Radius;
58 std::vector<std::string> fQhigh_Y_Observables;
59 std::vector<double> fQhigh_Y_Radius;
61 std::vector<std::string> fQlow_Y_Observables;
62 std::vector<double> fQlow_Y_Radius;
66 std::vector<std::string> fQbalance_Observables;
67 std::vector<double> fQbalance_Radius;
69 std::vector<std::string> fQratio_Observables;
70 std::vector<double> fQratio_Radius;
72 std::vector<std::string> fQbalance_X_Observables;
73 std::vector<double> fQbalance_X_Radius;
75 std::vector<std::string> fQratio_X_Observables;
76 std::vector<double> fQratio_X_Radius;
78 std::vector<std::string> fQbalance_Y_Observables;
79 std::vector<double> fQbalance_Y_Radius;
81 std::vector<std::string> fQratio_Y_Observables;
82 std::vector<double> fQratio_Y_Radius;
87 Double_t fHitsToCheckFraction;
93 void LoadDefaultConfig();
106 void LoadConfig(
const std::string& configFilename,
const std::string& name =
"");
111 RESTMetadata <<
" Hits to check factor : " << fHitsToCheckFraction <<
RESTendl;
116 const char* GetProcessName()
const override {
return "findTrackBlobs"; }
A base class for any REST event process.
void BeginPrintProcess()
[name, cut range]
A base class for any REST event.
RESTValue GetInputEvent() const override
Get pointer to input event. Must be implemented in the derived class.
void InitProcess() override
To be executed at the beginning of the run (outside event loop)
void EndProcess() override
To be executed at the end of the run (outside event loop)
void Initialize() override
Making default settings.
void PrintMetadata() override
Implemented it in the derived metadata class to print out specific metadata information.
TRestEvent * ProcessEvent(TRestEvent *inputEvent) override
Process one event.
RESTValue GetOutputEvent() const override
Get pointer to output event. Must be implemented in the derived class.
void InitFromConfigFile() override
To make settings from rml file. This method must be implemented in the derived class.