PandaRoot
BSEmcPlotDigis.h
Go to the documentation of this file.
1 #ifndef BSEMCPLOTDIGIS_HH
2 #define BSEMCPLOTDIGIS_HH
3 
4 #include "Rtypes.h"
5 #include "RtypesCore.h"
6 #include "TString.h"
7 
8 #include "BSEmcPlotProcess.h"
9 
10 class TBuffer;
11 class TClass;
12 class TMemberInspector;
13 
23  public:
24  BSEmcPlotDigis() : BSEmcPlotProcess("BSEmcPlotDigis") {}
25  virtual void RequestDataContainer(PndContainerRegister *t_register) /*override*/;
26  virtual void GetDataContainer(PndContainerRegister *t_register) /*override*/;
27  virtual void Process() /*override*/;
28  virtual void InitHistos(const TString &t_folderprefix) /*override*/;
29 
30  private:
31  Int_t fEvent{0};
32 
33  ClassDef(BSEmcPlotDigis, 1);
34 };
35 
36 #endif /*BSEMCPLOTDIGIS_HH*/
Base Processclass for plotting.
Process to plot some digi values, such as number of digis per event, energy of each digi...
virtual void RequestDataContainer(PndContainerRegister *t_register)
Pass the container register to the process, and get the processes container requirements.
virtual void GetDataContainer(PndContainerRegister *t_register)
Pass the container register to the process, and set the processes container requirements.
virtual void InitHistos(const TString &t_folderprefix)
virtual void Process()
The actual data transformation (digitizing, clustering, etc.) should be defined here.