Class Reference for E1039 Core & Analysis Software
PHGeomUtility.cc
Go to the documentation of this file.
1 #include "PHGeomUtility.h"
2 #include "PHGeomTGeo.h"
3 #include "PHGeomIOTGeo.h"
4 
5 #include <TGeoManager.h>
6 #include <TROOT.h>
7 
8 // PHENIX includes
10 #include <phool/recoConsts.h>
11 #include <phool/PHNodeIterator.h>
13 #include <phool/PHCompositeNode.h>
14 #include <phool/PHIODataNode.h>
15 #include <phool/getClass.h>
16 
17 #include <cassert>
18 #include <iostream>
19 #include <sstream>
20 #include <fstream>
21 #include <cstdio>
22 #include <stdexcept>
23 
24 #include <sys/types.h>
25 #include <unistd.h> // for generate unique local file
26 using namespace std;
27 
29 {
30 }
31 
33 {
34 
35 }
36 
38 TGeoManager *
40 {
41  PHGeomTGeo *dst_geom = GetGeomTGeoNode(topNode, true);
42  if (!dst_geom)
43  {
44  cout << __PRETTY_FUNCTION__
45  << " - Error - Can NOT construct geometry node." << endl;
46  exit(1);
47  return NULL;
48  }
49 
50  if (not dst_geom->isValid())
51  {
52  // try to construct the geometry node
53  dst_geom = LoadFromIONode(topNode);
54  }
55 
56  UpdateIONode(topNode);
57 
58  return dst_geom->GetGeometry();
59 }
60 
61 void
63  const std::string & geometry_file)
64 {
65  TGeoManager * tgeo = GetTGeoManager(topNode);
66 
67  assert(tgeo);
68 
69  tgeo->Export(geometry_file.c_str());
70 }
71 
72 int
74  const std::string & geometry_file)
75 {
76  PHGeomTGeo *dst_geom = GetGeomTGeoNode(topNode);
77  assert(dst_geom);
78 
79  dst_geom->Reset();
80 
81  TGeoManager::SetVerboseLevel(GetVerbosity());
82  dst_geom->SetGeometry(TGeoManager::Import(geometry_file.c_str()));
83 
84  if (dst_geom->GetGeometry() == NULL)
85  {
86  cout << __PRETTY_FUNCTION__ << "failed to import " << geometry_file
87  << endl;
89  }
90 
91  UpdateIONode(topNode);
92 
94 }
95 
96 int
98 {
99  PHGeomTGeo *dst_geom = GetGeomTGeoNode(topNode);
100  assert(dst_geom);
101 
102  if (dst_geom->GetGeometry() == gGeoManager)
103  return Fun4AllReturnCodes::EVENT_OK; // noting to be done
104 
105  assert(not dst_geom->isValid()); // check that it is uninitialized
106  dst_geom->SetGeometry(gGeoManager);
107  TGeoManager::SetVerboseLevel(GetVerbosity());
108 
110 }
111 
113 PHGeomTGeo *
115 {
116  PHNodeIterator iter(topNode);
117 
118  // Looking for the RUN node
119  PHCompositeNode *parNode = static_cast<PHCompositeNode*>(iter.findFirst(
120  "PHCompositeNode", "PAR"));
121  if (!parNode)
122  {
123  stringstream serr;
124  serr << __PRETTY_FUNCTION__ << ": PAR Node missing, request aborting.";
125  cout << serr.str() << endl;
126 
127  throw runtime_error(serr.str());
128 
129  return NULL;
130  }
131 
132  PHGeomTGeo *dst_geom = findNode::getClass<PHGeomTGeo>(parNode,
133  GetDSTNodeName());
134  if (!dst_geom and build_new)
135  {
136  dst_geom = new PHGeomTGeo();
137  PHDataNode<PHObject> *GeomNode = new PHDataNode<PHObject>(dst_geom,
138  GetDSTNodeName(), "PHObject");
139  parNode->addNode(GeomNode);
140  }
141 
142  return dst_geom;
143 }
144 
146 PHGeomIOTGeo *
148 {
149  PHNodeIterator iter(topNode);
150 
151  // Looking for the RUN node
152  PHCompositeNode *runNode = static_cast<PHCompositeNode*>(iter.findFirst(
153  "PHCompositeNode", "RUN"));
154  if (!runNode)
155  {
156  stringstream serr;
157  serr << __PRETTY_FUNCTION__ << ": RUN Node missing, request aborting.";
158  cout << serr.str() << endl;
159 
160  throw runtime_error(serr.str());
161 
162  return NULL;
163  }
164 
165  PHGeomIOTGeo *dst_geom = findNode::getClass<PHGeomIOTGeo>(runNode,
166  GetDSTIONodeName());
167  if (!dst_geom and build_new)
168  {
169  dst_geom = new PHGeomIOTGeo();
170  PHIODataNode<PHObject> *GeomNode = new PHIODataNode<PHObject>(dst_geom,
171  GetDSTIONodeName(), "PHObject");
172  runNode->addNode(GeomNode);
173  }
174 
175  return dst_geom;
176 }
177 
178 std::string
179 PHGeomUtility::GenerateGeometryFileName(const std::string & filename_extension)
180 {
181  stringstream file;
182  file << "/tmp/" << "PHGeomUtility_geom_file_" << ::getpid() << "."
183  << filename_extension ;
184 
185  return file.str();
186 }
187 
189 bool
190 PHGeomUtility::RemoveGeometryFile(const std::string & file_name)
191 {
192  fstream ifile(file_name, ios_base::in);
193 
194  if (ifile)
195  {
196  ifile.close();
197  if (remove(file_name.c_str()) != 0)
198  {
199  cout << __PRETTY_FUNCTION__ << " - Error - can not remove file "
200  << file_name << endl;
201  return false;
202  }
203  else
204  return true;
205  }
206  else
207  return true; // file do not exist
208 
209 }
210 
213 PHGeomIOTGeo *
215 {
216  PHGeomTGeo *dst_geom = GetGeomTGeoNode(topNode, false);
217 
218  if (not dst_geom)
219  {
220  cout << __PRETTY_FUNCTION__
221  << " - ERROR - failed to update PHGeomIOTGeo node RUN/GEOMETRY_IO due to missing PHGeomTGeo node at RUN/GEOMETRY"
222  << endl;
223  return NULL;
224  }
225  if (not dst_geom->isValid())
226  {
227  cout << __PRETTY_FUNCTION__
228  << " - ERROR - failed to update PHGeomIOTGeo node RUN/GEOMETRY_IO due to invalid PHGeomTGeo node at RUN/GEOMETRY"
229  << endl;
230  return NULL;
231  }
232 
233  PHGeomIOTGeo *dst_geom_io = GetGeomIOTGeoNode(topNode, true);
234  assert(dst_geom_io);
235 
236  dst_geom_io->SetGeometry(dst_geom->GetGeometry()->GetTopVolume());
237 
238  return dst_geom_io;
239 }
240 
243 PHGeomTGeo *
245 {
246  PHGeomIOTGeo *dst_geom_io = GetGeomIOTGeoNode(topNode, false);
247 
248  if (not dst_geom_io)
249  {
250  cout << __PRETTY_FUNCTION__
251  << " - ERROR - failed to update PHGeomTGeo node RUN/GEOMETRY due to missing PHGeomIOTGeo node at RUN/GEOMETRY_IO"
252  << endl;
253  return NULL;
254  }
255  if (not dst_geom_io->isValid())
256  {
257  cout << __PRETTY_FUNCTION__
258  << " - ERROR - failed to update PHGeomTGeo node RUN/GEOMETRY due to invalid PHGeomIOTGeo node at RUN/GEOMETRY_IO"
259  << endl;
260  return NULL;
261  }
262 
263 
264  // build new TGeoManager
265  TGeoManager::SetVerboseLevel(GetVerbosity());
266  TGeoManager * tgeo = dst_geom_io->ConstructTGeoManager();
267  tgeo->CloseGeometry();
268 
269  PHGeomTGeo *dst_geom = GetGeomTGeoNode(topNode, true);
270  assert(dst_geom);
271  dst_geom->SetGeometry(tgeo);
272 
273  return dst_geom;
274 }
275 
276 
278 void
280 {
282  rc->set_IntFlag("PHGEOMETRY_VERBOSITY", v);
283 }
284 
286 int
288 {
290  if (rc->FlagExist("PHGEOMETRY_VERBOSITY"))
291  return rc->get_IntFlag("PHGEOMETRY_VERBOSITY");
292  else
293  return 0;
294 }
#define NULL
Definition: Pdb.h:9
PHBoolean addNode(PHNode *)
virtual int FlagExist(const std::string &name) const
Definition: PHFlag.cc:255
virtual void set_IntFlag(const std::string &name, const int flag)
Definition: PHFlag.cc:145
virtual int get_IntFlag(const std::string &name) const
Definition: PHFlag.cc:117
PHGeomIOTGeo store geometry information to DST files in the format of binary streamed TGeoVolume....
Definition: PHGeomIOTGeo.h:26
TGeoManager * ConstructTGeoManager()
Construct TGeoManager. The result TGeoManager is not yet closed and open for further editing.
Definition: PHGeomIOTGeo.cc:83
virtual int isValid() const
isValid returns non zero if object contains vailid data
void SetGeometry(const TGeoVolume *g)
PHGeomIOTGeo do NOT own this TGeoVolume * g. Internally, it will use g to make a copy which PHGeomIOT...
Definition: PHGeomIOTGeo.cc:47
PHGeomTGeo provide run-time access to TGeoManger. It is transient object and it shall NOT be saved to...
Definition: PHGeomTGeo.h:25
TGeoManager * GetGeometry()
Definition: PHGeomTGeo.cc:53
virtual int isValid() const
isValid returns non zero if object contains vailid data
Definition: PHGeomTGeo.cc:100
void SetGeometry(TGeoManager *g)
Definition: PHGeomTGeo.cc:35
virtual void Reset()
Clear Event.
Definition: PHGeomTGeo.cc:86
static PHGeomIOTGeo * UpdateIONode(PHCompositeNode *topNode)
static std::string GenerateGeometryFileName(const std::string &filename_extension="gdml")
static int ImportGeomFile(PHCompositeNode *topNode, const std::string &geometry_file)
TGeo ROOT/GDML/Macro file -> DST node with automatic file type discrimination based on file names.
static PHGeomIOTGeo * GetGeomIOTGeoNode(PHCompositeNode *topNode, bool build_new=true)
Get persistent PHGeomIOTGeo from DST nodes. If not found, make a new one.
static int GetVerbosity()
Verbosity for geometry IO like, TGeoMangers.
static PHGeomTGeo * GetGeomTGeoNode(PHCompositeNode *topNode, bool build_new=true)
Get non-persistent PHGeomTGeo from DST nodes. If not found, make a new one.
static TGeoManager * GetTGeoManager(PHCompositeNode *topNode)
Main user interface: DST node -> TGeoManager for downstream use.
static void ExportGeomtry(PHCompositeNode *topNode, const std::string &geometry_file)
DST node -> TGeoManager -> export files, like gdml, .root or .C formats.
static void SetVerbosity(int v)
Verbosity for geometry IO like, TGeoMangers.
virtual ~PHGeomUtility()
static int ImportCurrentTGeoManager(PHCompositeNode *topNode)
gGeoManager -> DST node
static PHGeomTGeo * LoadFromIONode(PHCompositeNode *topNode)
static bool RemoveGeometryFile(const std::string &file_name)
delete the geometry file after use
PHNode * findFirst(const std::string &, const std::string &)
static recoConsts * instance()
Definition: recoConsts.cc:7