PandaRoot
BSEmcPlotAllRecoHits.h
Go to the documentation of this file.
1 #ifndef BSEMCPLOTALLRECOHITS_HH
2 #define BSEMCPLOTALLRECOHITS_HH
3 
4 #include "Rtypes.h"
5 #include "TString.h"
6 
7 #include "PndContainerI.h"
8 
9 #include "BSEmcPlotProcess.h"
10 #include "BSEmcRecoHit.h"
11 
12 class TBuffer;
13 class TClass;
14 class TMemberInspector;
15 
25  public:
26  BSEmcPlotAllRecoHits() : BSEmcPlotProcess("BSEmcPlotAllRecoHits") {}
27  virtual void RequestDataContainer(PndContainerRegister *t_register) /*override*/;
28  virtual void GetDataContainer(PndContainerRegister *t_register) /*override*/;
29  virtual void Process() /*override*/;
30  virtual void InitHistos(const TString &t_folderprefix) /*override*/;
31 
32  private:
33  void FillPositionPlot(const BSEmcRecoHit *t_recoHit);
34 
35  PndContainerI<BSEmcRecoHit> *fFWECRecoHitArray{};
36  PndContainerI<BSEmcRecoHit> *fBarrelRecoHitArray{};
37  PndContainerI<BSEmcRecoHit> *fBWECRecoHitArray{};
38  PndContainerI<BSEmcRecoHit> *fShashlikRecoHitArray{};
39  ClassDef(BSEmcPlotAllRecoHits, 1);
40 };
41 
42 #endif /*BSEMCPLOTALLRECOHITS_HH*/
Resembles/Contains all information a particle hitting the EMC can provide for later use in the PID st...
Definition: BSEmcRecoHit.h:31
Base Processclass for plotting.
Process to plot all EMC Reco Hits.
virtual void RequestDataContainer(PndContainerRegister *t_register)
Pass the container register to the process, and get the processes container requirements.
virtual void Process()
The actual data transformation (digitizing, clustering, etc.) should be defined here.
virtual void InitHistos(const TString &t_folderprefix)
Interface to a datacontainer to be used in PandaROOT.
virtual void GetDataContainer(PndContainerRegister *t_register)
Pass the container register to the process, and set the processes container requirements.