Class Reference for E1039 Core & Analysis Software
PHG4GDMLUtility.cc
Go to the documentation of this file.
1 // $Id: $
2 
11 #include "PHG4GDMLUtility.hh"
13 #include "PHG4GDMLConfig.hh"
14 
15 #include <phool/PHNodeIterator.h>
17 #include <phool/PHCompositeNode.h>
18 #include <phool/PHDataNode.h>
19 #include <phool/getClass.h>
20 #include <fun4all/Fun4AllServer.h>
21 
22 #include <Geant4/G4VPhysicalVolume.hh>
23 
24 #include <cassert>
25 #include <sstream>
26 #include <stdexcept>
27 
28 using namespace std;
29 
31 {
32  // TODO Auto-generated destructor stub
33 }
34 PHG4GDMLUtility::PHG4GDMLUtility()
35 {
36  // TODO Auto-generated constructor stub
37 }
38 
39 void PHG4GDMLUtility::Dump_GDML(const std::string &filename, G4VPhysicalVolume * vol, PHCompositeNode *topNode)
40 {
41  if (topNode == nullptr)
42  {
43 
45  topNode = se->topNode();
46 
47  }
48 
49  const PHG4GDMLConfig * config =
50  GetOrMakeConfigNode(topNode);
51  assert(config);
52 
53  PHG4GDMLWriteStructure gdml_parser(config);
54  assert(vol);
55  assert(vol->GetLogicalVolume());
56 
57  xercesc::XMLPlatformUtils::Initialize();
58  gdml_parser.Write(filename, vol->GetLogicalVolume(),get_PHG4GDML_Schema(), 0, true);
59  xercesc::XMLPlatformUtils::Terminate();
60 }
61 
62 
64 {
65  PHNodeIterator iter(topNode);
66 
67  // Looking for the RUN node
68  PHCompositeNode *parNode = static_cast<PHCompositeNode*>(iter.findFirst(
69  "PHCompositeNode", "PAR"));
70  if (!parNode)
71  {
72  stringstream serr;
73  serr << __PRETTY_FUNCTION__ << ": PAR Node missing, request aborting.";
74  cout << serr.str() << endl;
75 
76  throw runtime_error(serr.str());
77 
78  return NULL;
79  }
80 
81  PHG4GDMLConfig *config = findNode::getClass<PHG4GDMLConfig>(parNode,
82  getDSTNodeName());
83  if (!config and build_new)
84  {
85  config = new PHG4GDMLConfig();
86  PHDataNode<PHObject> *node = new PHDataNode<PHObject>(config,
87  getDSTNodeName(), "PHObject");
88  parNode->addNode(node);
89  }
90 
91  return config;
92 }
#define NULL
Definition: Pdb.h:9
static Fun4AllServer * instance()
PHCompositeNode * topNode() const
Definition: Fun4AllServer.h:59
PHBoolean addNode(PHNode *)
PHG4GDMLConfig.
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 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()
G4Transform3D Write(const G4String &filename, const G4LogicalVolume *const topLog, const G4String &schemaPath, const G4int depth, G4bool storeReferences=true)
PHNode * findFirst(const std::string &, const std::string &)