Class Reference for E1039 Core & Analysis Software
PHGeomTGeo.cc
Go to the documentation of this file.
1 // $Id: $
2 
11 #include "PHGeomTGeo.h"
12 
13 #include "TGeoManager.h"
14 
15 #include <iostream>
16 #include <cassert>
17 
18 using namespace std;
19 
20 //ClassImp(PHGeomTGeo);
21 
23  _fGeom(NULL)
24 {
25 // SplitLevel(0);
26 }
27 
29 {
31  Reset();
32 }
33 
34 void
35 PHGeomTGeo::SetGeometry(TGeoManager * g)
36 {
38  assert(_fGeom == NULL);
39 
40  if (!g)
41  {
42  cout << __PRETTY_FUNCTION__ << " - Error - Invalid input" << endl;
43  return;
44  }
45 
46  _fGeom = g;
47  _fGeom->LockGeometry();
48 
50 }
51 
52 TGeoManager *
54 {
55  if (_fGeom == NULL)
56  return NULL;
57 
59 
60  if (_fGeom == gGeoManager)
61  return _fGeom;
62  else
63  {
64  return NULL;
65  }
66 }
67 
71 void
72 PHGeomTGeo::identify(std::ostream& os) const
73 {
74  os << "PHGeomTGeo - ";
75  if (_fGeom)
76  os << " with geometry data " << _fGeom->GetName() << ": "
77  << _fGeom->GetTitle();
78  else
79  os << "Empty";
80  os << endl;
82 }
83 
85 void
87 {
89 
90  if (_fGeom)
91  {
92  _fGeom->UnlockGeometry();
93  delete _fGeom;
94  }
95  _fGeom = NULL;
96 }
97 
99 int
101 {
103 
104  if (_fGeom == NULL)
105  return 0;
106  if (_fGeom->IsZombie())
107  return 0;
108  return 1;
109 }
110 
111 bool
113 {
114  if (_fGeom == NULL)
115  return true; // uninitialized
116 
117  if (_fGeom == gGeoManager)
118  return true;
119  else
120  {
121 
122  cout << __PRETTY_FUNCTION__
123  << " - ERROR - gGeoManager is overridden by another TGeoManager. "
124  << "Please avoid using multiple TGeoManager in processing. Stop the process."
125  << endl;
126  exit(1);
127  return false;
128 
129  }
130 }
#define NULL
Definition: Pdb.h:9
TGeoManager * _fGeom
store and stream the full geometry via DST objects
Definition: PHGeomTGeo.h:58
TGeoManager * GetGeometry()
Definition: PHGeomTGeo.cc:53
virtual void identify(std::ostream &os=std::cout) const
Definition: PHGeomTGeo.cc:72
virtual int isValid() const
isValid returns non zero if object contains vailid data
Definition: PHGeomTGeo.cc:100
virtual ~PHGeomTGeo()
Definition: PHGeomTGeo.cc:28
void SetGeometry(TGeoManager *g)
Definition: PHGeomTGeo.cc:35
bool ConsistencyCheck() const
Definition: PHGeomTGeo.cc:112
virtual void Reset()
Clear Event.
Definition: PHGeomTGeo.cc:86