Class Reference for E1039 Core & Analysis Software
PHGeomTGeo.h
Go to the documentation of this file.
1 // $Id: $
2 
11 #ifndef PHGEOMTGEO_H_
12 #define PHGEOMTGEO_H_
13 
14 #include <phool/PHObject.h>
15 
16 class TGeoManager;
17 
24 class PHGeomTGeo : public PHObject
25 {
26 public:
27  PHGeomTGeo();
28  virtual
29  ~PHGeomTGeo();
30 
34  virtual void identify(std::ostream& os = std::cout) const;
35 
37  virtual void Reset();
38 
40  virtual int isValid() const;
41 
45  void
46  SetGeometry(TGeoManager * g);
47 
48  TGeoManager *
49  GetGeometry();
50 
53  bool ConsistencyCheck() const;
54 
55 protected:
56 
58  TGeoManager * _fGeom;
59 
60 // ClassDef(PHGeomTGeo,1)
61 };
62 
63 #endif /* PHGEOMTGEO_H_ */
PHGeomTGeo provide run-time access to TGeoManger. It is transient object and it shall NOT be saved to...
Definition: PHGeomTGeo.h:25
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