Analysis Software
Documentation for sPHENIX simulation 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 #include "TpcClusterBuilder.h"
8 
9 #include <phparameter/PHParameterInterface.h>
10 
11 #include <string> // for string
12 
14 class TrkrHitTruthAssoc;
15 
16 class PHCompositeNode;
18 class TNtuple;
19 
21 {
22  public:
23  PHG4TpcPadPlane(const std::string &name = "PHG4TpcPadPlane");
24 
26  { return 0; }
27 
28  virtual void SetDriftVelocity(double /*vd*/) {return;}
29  virtual void SetReadoutTime(float) { return; }
30  int InitRun(PHCompositeNode *topNode) override;
31  virtual void UpdateInternalParameters() { return; }
32  // virtual void MapToPadPlane(PHG4CellContainer * /*g4cells*/, const double /*x_gem*/, const double /*y_gem*/, const double /*t_gem*/, const unsigned int /*side*/, PHG4HitContainer::ConstIterator /*hiter*/, TNtuple * /*ntpad*/, TNtuple * /*nthit*/) {}
33  virtual void MapToPadPlane(TpcClusterBuilder& /*builder*/, TrkrHitSetContainer * /*single_hitsetcontainer*/, TrkrHitSetContainer * /*hitsetcontainer*/, TrkrHitTruthAssoc * /*hittruthassoc*/, const double /*x_gem*/, const double /*y_gem*/, const double /*t_gem*/, const unsigned int /*side*/, PHG4HitContainer::ConstIterator /*hiter*/, TNtuple * /*ntpad*/, TNtuple * /*nthit*/)=0;// { return {}; }
34  void Detector(const std::string &name) { detector = name; }
35 
36  protected:
38 };
39 
40 #endif