Class Reference for E1039 Core & Analysis Software
PHG4GDMLUtility.hh
Go to the documentation of this file.
1 // $Id: $
2 
11 #ifndef CORESOFTWARE_SIMULATION_G4SIMULATION_G4GDML_PHG4GDMLUTILITY_HH_
12 #define CORESOFTWARE_SIMULATION_G4SIMULATION_G4GDML_PHG4GDMLUTILITY_HH_
13 
14 #include <string>
15 
16 class G4VPhysicalVolume;
17 class PHG4GDMLConfig;
18 class PHCompositeNode;
19 
24 {
25  public:
26  virtual ~PHG4GDMLUtility();
27 
29  static void Dump_GDML(const std::string &filename, G4VPhysicalVolume * vol, PHCompositeNode *topNode = nullptr);
30 
31  static constexpr const char * get_PHG4GDML_Schema()
32  {
33  return "http://service-spi.web.cern.ch/service-spi/app/releases/GDML/schema/gdml.xsd";
34  }
35 
37  static PHG4GDMLConfig * GetOrMakeConfigNode(PHCompositeNode *topNode, bool build_new = true);
38 
39  static constexpr const char * getDSTNodeName()
40  {
41  return "G4GDML_CONFIG";
42  }
43 
44  private:
46 };
47 
48 #endif /* SIMULATION_CORESOFTWARE_SIMULATION_G4SIMULATION_G4GDML_PHG4GDMLUTILITY_HH_ */
PHG4GDMLConfig.
PHG4GDMLUtility is utility class that drive the PHG4GDMLWriteStructure.
static constexpr const char * get_PHG4GDML_Schema()
static PHG4GDMLConfig * GetOrMakeConfigNode(PHCompositeNode *topNode, bool build_new=true)
Get or make the parameter node PHG4GDMLConfig from DST nodes. If not found, make a new one.
static constexpr const char * getDSTNodeName()
static void Dump_GDML(const std::string &filename, G4VPhysicalVolume *vol, PHCompositeNode *topNode=nullptr)
save the current Geant4 geometry to GDML file. Reading PHG4GDMLConfig from topNode
virtual ~PHG4GDMLUtility()