Class Reference for E1039 Core & Analysis Software
PHG4Detector.h
Go to the documentation of this file.
1 #ifndef PHG4Detector_h
2 #define PHG4Detector_h
3 
4 #include <iostream>
5 #include <string>
6 
7 class G4UserSteppingAction;
8 class G4LogicalVolume;
9 class PHCompositeNode;
10 
12 
14 {
15 
16  public:
17 
19 
21  topNode(Node),
22  verbosity(0),
23  name("NONAME"),
24  overlapcheck(false)
25  {}
26 
27  PHG4Detector( PHCompositeNode *Node, const std::string &nam ):
28  topNode(Node),
29  verbosity(0),
30  name(nam),
31  overlapcheck(false)
32  {}
33 
35  virtual ~PHG4Detector( void )
36  {}
37 
39 
43  virtual void Construct( G4LogicalVolume* world ) = 0;
44 
45  virtual void Verbosity(const int v) {verbosity = v;}
46 
47  virtual int Verbosity() const {return verbosity;}
48 
49  virtual G4UserSteppingAction* GetSteppingAction() { return 0; }
50 
51  virtual std::string GetName() const {return name;}
52 
53  virtual void OverlapCheck(const bool chk = true) {overlapcheck = chk;}
54 
55  virtual void Print(const std::string &what = "ALL") const
56  {std::cout << name << ": Print method not implemented" << std::endl;}
57 
58  protected:
60  int verbosity;
61  std::string name;
63 };
64 
65 #endif
base class for phenix detector creation
Definition: PHG4Detector.h:14
virtual void Verbosity(const int v)
Definition: PHG4Detector.h:45
PHCompositeNode * topNode
Definition: PHG4Detector.h:59
PHG4Detector(PHCompositeNode *Node)
constructor
Definition: PHG4Detector.h:20
virtual ~PHG4Detector(void)
destructor
Definition: PHG4Detector.h:35
virtual int Verbosity() const
Definition: PHG4Detector.h:47
virtual std::string GetName() const
Definition: PHG4Detector.h:51
virtual void OverlapCheck(const bool chk=true)
Definition: PHG4Detector.h:53
virtual void Print(const std::string &what="ALL") const
Definition: PHG4Detector.h:55
bool overlapcheck
Definition: PHG4Detector.h:62
std::string name
Definition: PHG4Detector.h:61
virtual G4UserSteppingAction * GetSteppingAction()
Definition: PHG4Detector.h:49
PHG4Detector(PHCompositeNode *Node, const std::string &nam)
Definition: PHG4Detector.h:27
virtual void Construct(G4LogicalVolume *world)=0
construct method