PandaRoot
BSEmcPlotBarrelFwEndcapOverlap.h
Go to the documentation of this file.
1 //****************************************************************************
2 //* This file is part of PandaRoot. *
3 //* *
4 //* PandaRoot is distributed under the terms of the *
5 //* GNU General Public License (GPL) version 3, *
6 //* copied verbatim in the file "LICENSE". *
7 //* *
8 //* Copyright (C) 2006 - 2024 FAIR GmbH and copyright holders of PandaRoot *
9 //* The copyright holders are listed in the file "COPYRIGHTHOLDERS". *
10 //* The authors are listed in the file "AUTHORS". *
11 //****************************************************************************
12 
13 #ifndef BSEMCPLOTBARRELFWENDCAPOVERLAP_HH
14 #define BSEMCPLOTBARRELFWENDCAPOVERLAP_HH
15 
16 #include <vector>
17 
18 #include "Rtypes.h"
19 #include "TString.h"
20 #include "TVector3.h"
21 
22 #include "PndContainerI.h"
23 
24 #include "BSEmcPlotProcess.h"
25 #include "BSEmcRecoHit.h"
26 
27 class TBuffer;
28 class TClass;
29 class TMemberInspector;
30 
40  public:
41  BSEmcPlotBarrelFwEndcapOverlap() : BSEmcPlotProcess("BSEmcPlotBarrelFwEndcapOverlap") {}
42 
44  virtual void RequestDataContainer(PndContainerRegister *t_register) /*override*/;
45  virtual void GetDataContainer(PndContainerRegister *t_register) /*override*/;
46  virtual void Process() /*override*/;
47  virtual void InitHistos(const TString &t_folderprefix) /*override*/;
48 
49  private:
50  PndContainerI<BSEmcRecoHit> *fFWECRecoHitArray{nullptr};
51  PndContainerI<BSEmcRecoHit> *fBarrelRecoHitArray{nullptr};
52 
53  ClassDef(BSEmcPlotBarrelFwEndcapOverlap, 0);
54 };
55 
56 #endif /*BSEMCPLOTBARRELFWENDCAPOVERLAP_HH*/
Base Processclass for plotting.
Plots some values to investigate the overlap of the Barrel and the FwEndcap.
Interface to a datacontainer to be used in PandaROOT.
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 GetDataContainer(PndContainerRegister *t_register)
Pass the container register to the process, and set the processes container requirements.
virtual void InitHistos(const TString &t_folderprefix)