ECCE @ EIC Software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
PHG4GDMLSubsystem.h
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file PHG4GDMLSubsystem.h
1 // Tell emacs that this is a C++ source
2 // -*- C++ -*-.
3 // $Id: $
4 
13 #ifndef G4DETECTORS_PHG4GDMLSUBSYSTEM_H
14 #define G4DETECTORS_PHG4GDMLSUBSYSTEM_H
15 
16 #include "PHG4DetectorSubsystem.h"
17 
18 #include <string>
19 
20 class PHCompositeNode;
21 class PHG4GDMLDetector;
22 class PHG4Detector;
23 class PHG4SteppingAction;
24 
29 {
30  public:
31 
32  PHG4GDMLSubsystem(const std::string &name);
33  ~PHG4GDMLSubsystem() override;
34 
35 
41  int InitRunSubsystem(PHCompositeNode*) override;
42 
44 
48  int process_event(PHCompositeNode*) override;
49 
51  void Print(const std::string& what = "ALL") const override;
52 
54  PHG4Detector* GetDetector(void) const override;
55  PHG4SteppingAction* GetSteppingAction(void) const override { return nullptr; }
56 
57  private:
58  void SetDefaultParameters() override;
59 
61 
63 
64 };
65 
66 #endif /* PHG4GDMLSUBSYSTEM_H_ */