Class Reference for E1039 Core & Analysis Software
PHGeomIOTGeo.cc
Go to the documentation of this file.
1 // $Id: $
2 
11 #include "PHGeomIOTGeo.h"
12 
13 #include <TGeoManager.h>
14 #include <TGeoVolume.h>
15 #include <TMemFile.h>
16 
17 #include <cassert>
18 #include <sstream>
19 #include <iostream>
20 
21 using namespace std;
22 
24  Data(0)
25 {
26  SplitLevel(0); // this class is packed binary stream, no need to split
27 }
28 
30  Data(geom.Data)
31 {
32 }
33 
35 {
36  Reset();
37 }
38 
39 PHObject*
41 {
42  PHGeomIOTGeo * geo = new PHGeomIOTGeo(*this);
43  return geo;
44 }
45 
46 void
47 PHGeomIOTGeo::SetGeometry(const TGeoVolume * g)
48 {
49  if (!g)
50  {
51  cout << __PRETTY_FUNCTION__ << " - Error - Invalid input" << endl;
52  return;
53  }
54 
55  // Stream TGeoVolume into binary stream with its streamer using TFIle utility
56  TMemFile f1("mem","CREATE");
57  g->Write("TOP");
58  f1.Close();
59 
60  const Long64_t n = f1.GetSize();
61 
62  Data.resize(n);
63  Long64_t n1 = f1.CopyTo(Data.data(), n);
64  assert(n1 == n);
65 
66 }
67 
68 TGeoVolume *
70 {
71  if (not isValid()) return NULL;
72 
73  TMemFile f2("mem2", Data.data(), Data.size(), "READ");
74  TGeoVolume * vol = dynamic_cast<TGeoVolume *>(f2.Get("TOP"));
75  assert(vol);
76  f2.Close();
77 
78  return vol;
79 }
80 
81 TGeoManager *
84 {
85  if (not isValid()) return NULL;
86 
87  // build new TGeoManager
88  TGeoManager * tgeo = new TGeoManager("PHGeometry", "");
89  assert(tgeo);
90 
91  TGeoVolume * vol = GetGeometryCopy();
92  vol->RegisterYourself();
93 
94  tgeo->SetTopVolume(vol);
95 // tgeo->CloseGeometry();
96 
97  stringstream stitle;
98  stitle
99  << "TGeoManager built by PHGeomUtility::LoadFromIONode based on RUN/GEOMETRY_IO node with name ("
100  << vol->GetName() << ") and title ("
101  << vol->GetTitle() << ")";
102 
103  tgeo->SetTitle(stitle.str().c_str());
104 
105  return tgeo;
106 }
107 
111 void
112 PHGeomIOTGeo::identify(std::ostream& os) const
113 {
114  os << "PHGeomIOTGeo - ";
115  if (isValid())
116  os << " with geometry data " << Data.size()<<"Byte";
117  else
118  os << "Empty";
119  os << endl;
120 }
121 
123 void
125 {
126  Data.resize(0);
127 }
128 
130 int
132 {
133  return Data.size();
134 }
#define NULL
Definition: Pdb.h:9
PHGeomIOTGeo store geometry information to DST files in the format of binary streamed TGeoVolume....
Definition: PHGeomIOTGeo.h:26
virtual ~PHGeomIOTGeo()
Definition: PHGeomIOTGeo.cc:34
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
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
int SplitLevel() const
Definition: PHObject.h:43