ECCE @ EIC Software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
PHG4TpcPadPlane.h
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file PHG4TpcPadPlane.h
1 #ifndef G4TPC_PHG4TPCPADPLANE_H
2 #define G4TPC_PHG4TPCPADPLANE_H
3 
4 #include <fun4all/SubsysReco.h>
5 
7 
8 #include <phparameter/PHParameterInterface.h>
9 
10 #include <string> // for string
11 
12 class PHG4CellContainer;
14 class TrkrHitTruthAssoc;
15 
16 class PHCompositeNode;
18 class TNtuple;
19 
21 {
22  public:
23  PHG4TpcPadPlane(const std::string &name = "PHG4TpcPadPlane");
24 
25  ~PHG4TpcPadPlane() override {}
26 
28  {
29  return 0;
30  }
31  int InitRun(PHCompositeNode *topNode) override;
32  virtual int CreateReadoutGeometry(PHCompositeNode * /*topNode*/, PHG4CylinderCellGeomContainer * /*seggeo*/) { return 0; }
33  virtual void UpdateInternalParameters() { return; }
34  virtual void MapToPadPlane(PHG4CellContainer * /*g4cells*/, const double /*x_gem*/, const double /*y_gem*/, const double /*t_gem*/, PHG4HitContainer::ConstIterator /*hiter*/, TNtuple * /*ntpad*/, TNtuple * /*nthit*/) {}
35  virtual void MapToPadPlane(TrkrHitSetContainer * /*single_hitsetcontainer*/, TrkrHitSetContainer * /*hitsetcontainer*/, TrkrHitTruthAssoc * /*hittruthassoc*/, const double /*x_gem*/, const double /*y_gem*/, const double /*t_gem*/, PHG4HitContainer::ConstIterator /*hiter*/, TNtuple * /*ntpad*/, TNtuple * /*nthit*/) {}
36  void Detector(const std::string &name) { detector = name; }
37 
38  protected:
39  std::string detector;
40 };
41 
42 #endif