Class Reference for E1039 Core & Analysis Software
PHGeomIOTGeo.h
Go to the documentation of this file.
1 // $Id: $
2 
11 #ifndef PHGeomIOTGeo_H_
12 #define PHGeomIOTGeo_H_
13 
14 #include <phool/PHObject.h>
15 #include <vector>
16 
17 class TGeoVolume;
18 class TGeoManager;
19 
25 class PHGeomIOTGeo : public PHObject
26 {
27 public:
28  PHGeomIOTGeo();
29  PHGeomIOTGeo(const PHGeomIOTGeo& geom);
30  virtual
31  ~PHGeomIOTGeo();
32 
34  virtual PHObject*
35  clone() const;
36 
40  virtual void
41  identify(std::ostream& os = std::cout) const;
42 
44  virtual void
45  Reset();
46 
48  virtual int
49  isValid() const;
50 
52  void
53  SetGeometry(const TGeoVolume * g);
54 
56  TGeoManager *
58 
62  TGeoVolume *
64 
65  std::vector<char> &
67  {
68  return Data;
69  }
70 
71  const std::vector<char> &
72  GetData() const
73  {
74  return Data;
75  }
76 
77 protected:
78 
80  std::vector<char> Data;
81 
82 ClassDef(PHGeomIOTGeo,3)
83 };
84 
85 #endif /* PHGeomIOTGeo_H_ */
PHGeomIOTGeo store geometry information to DST files in the format of binary streamed TGeoVolume....
Definition: PHGeomIOTGeo.h:26
virtual ~PHGeomIOTGeo()
Definition: PHGeomIOTGeo.cc:34
const std::vector< char > & GetData() const
Definition: PHGeomIOTGeo.h:72
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
std::vector< char > & GetData()
Definition: PHGeomIOTGeo.h:66
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
std::vector< char > Data
store the streamed geometry and its streamer via a binary stream
Definition: PHGeomIOTGeo.h:80
virtual void identify(std::ostream &os=std::cout) const
virtual void Reset()
Clear Event.
TGeoVolume * GetGeometryCopy()
Definition: PHGeomIOTGeo.cc:69
virtual PHObject * clone() const
Virtual copy constructor.
Definition: PHGeomIOTGeo.cc:40