CMS 3D CMS Logo

List of all members | Public Member Functions | Private Member Functions | Private Attributes
TGeoFromDddService Class Reference

#include <Fireworks/Geometry/interface/TGeoFromDddService.h>

Public Member Functions

TGeoManager * getGeoManager ()
 
void postBeginRun (const edm::Run &, const edm::EventSetup &)
 
void postEndRun (const edm::Run &, const edm::EventSetup &)
 
 TGeoFromDddService (const edm::ParameterSet &, edm::ActivityRegistry &)
 
virtual ~TGeoFromDddService ()
 

Private Member Functions

TGeoManager * createManager (int level)
 
TGeoMaterial * createMaterial (const DDMaterial &iMaterial)
 
TGeoShape * createShape (const std::string &iName, const DDSolid &iSolid)
 
TGeoVolume * createVolume (const std::string &iName, const DDSolid &iSolid, const DDMaterial &iMaterial)
 
const TGeoFromDddServiceoperator= (const TGeoFromDddService &)
 
 TGeoFromDddService (const TGeoFromDddService &)
 

Private Attributes

const edm::EventSetupm_eventSetup
 
TGeoManager * m_geoManager
 
int m_level
 
bool m_verbose
 
std::map< std::string, TGeoMaterial * > nameToMaterial_
 
std::map< std::string, TGeoMedium * > nameToMedium_
 
std::map< std::string, TGeoShape * > nameToShape_
 
std::map< std::string, TGeoVolume * > nameToVolume_
 

Detailed Description

Description: [one line class summary]

Usage: <usage>

Definition at line 48 of file TGeoFromDddService.h.

Constructor & Destructor Documentation

TGeoFromDddService::TGeoFromDddService ( const edm::ParameterSet pset,
edm::ActivityRegistry ar 
)

Definition at line 58 of file TGeoFromDddService.cc.

References postBeginRun(), postEndRun(), edm::ActivityRegistry::watchPostBeginRun(), and edm::ActivityRegistry::watchPostEndRun().

58  :
59  m_level (pset.getUntrackedParameter<int> ("level", 10)),
60  m_verbose (pset.getUntrackedParameter<bool>("verbose",false)),
61  m_eventSetup (0),
62  m_geoManager (0)
63 {
66 }
void watchPostBeginRun(PostBeginRun::slot_type const &iSlot)
T getUntrackedParameter(std::string const &, T const &) const
TGeoManager * m_geoManager
const edm::EventSetup * m_eventSetup
void postBeginRun(const edm::Run &, const edm::EventSetup &)
void watchPostEndRun(PostEndRun::slot_type const &iSlot)
void postEndRun(const edm::Run &, const edm::EventSetup &)
TGeoFromDddService::~TGeoFromDddService ( )
virtual

Definition at line 68 of file TGeoFromDddService.cc.

References m_geoManager.

69 {
70  if (m_geoManager)
71  {
72  delete m_geoManager;
73  }
74 }
TGeoManager * m_geoManager
TGeoFromDddService::TGeoFromDddService ( const TGeoFromDddService )
private

Member Function Documentation

TGeoManager * TGeoFromDddService::createManager ( int  level)
private

Definition at line 151 of file TGeoFromDddService.cc.

References gather_cfg::cout, createVolume(), edm::EventSetup::get(), DDCompactView::graph(), mps_fire::i, info(), edm::ESHandleBase::isValid(), m_eventSetup, m_verbose, DDSolidShapesName::name(), nameToMaterial_, nameToMedium_, nameToShape_, and nameToVolume_.

Referenced by getGeoManager().

152 {
153  using namespace edm;
154 
156  m_eventSetup->get<IdealGeometryRecord>().get(viewH);
157 
158  if ( ! viewH.isValid() )
159  {
160  return 0;
161  }
162 
163  TGeoManager *geo_mgr = new TGeoManager("cmsGeo","CMS Detector");
164  // NOTE: the default constructor does not create the identity matrix
165  if (gGeoIdentity == 0)
166  {
167  gGeoIdentity = new TGeoIdentity("Identity");
168  }
169 
170  std::cout << "about to initialize the DDCompactView walker" << std::endl;
171  DDCompactView::walker_type walker(viewH->graph());
172  DDCompactView::walker_type::value_type info = walker.current();
173 
174  // The top most item is actually the volume holding both the
175  // geometry AND the magnetic field volumes!
176  walker.firstChild();
177 
178  TGeoVolume *top = createVolume(info.first.name().fullname(),
179  info.first.solid(),
180  info.first.material());
181  if (top == 0)
182  {
183 
184  return 0;
185  }
186 
187  geo_mgr->SetTopVolume(top);
188  // ROOT chokes unless colors are assigned
189  top->SetVisibility(kFALSE);
190  top->SetLineColor(kBlue);
191 
192  std::vector<TGeoVolume*> parentStack;
193  parentStack.push_back(top);
194 
195  if( ! walker.firstChild() ) {
196  return 0;
197  }
198 
199  do
200  {
201  DDCompactView::walker_type::value_type info = walker.current();
202 
203  if (m_verbose)
204  {
205  for(unsigned int i=0; i<parentStack.size();++i) {
206  std::cout <<" ";
207  }
208  std::cout << info.first.name()<<" "<<info.second->copyno_<<" "
209  << DDSolidShapesName::name(info.first.solid().shape())<<std::endl;
210  }
211 
212  bool childAlreadyExists = (0 != nameToVolume_[info.first.name().fullname()]);
213  TGeoVolume *child = createVolume(info.first.name().fullname(),
214  info.first.solid(),
215  info.first.material());
216  if (0!=child && info.second != 0)
217  {
218  parentStack.back()->AddNode(child,
219  info.second->copyno_,
220  createPlacement(info.second->rotation(),
221  info.second->translation()));
222  child->SetLineColor(kBlue);
223  }
224  else
225  {
226  if ( info.second == 0 ) {
227  break;
228  }
229  }
230  if (0 == child || childAlreadyExists || level == int(parentStack.size()))
231  {
232  if (0!=child)
233  {
234  child->SetLineColor(kRed);
235  }
236  //stop descending
237  if ( ! walker.nextSibling())
238  {
239  while (walker.parent())
240  {
241  parentStack.pop_back();
242  if (walker.nextSibling()) {
243  break;
244  }
245  }
246  }
247  }
248  else
249  {
250  if (walker.firstChild())
251  {
252  parentStack.push_back(child);
253  }
254  else
255  {
256  if ( ! walker.nextSibling())
257  {
258  while (walker.parent())
259  {
260  parentStack.pop_back();
261  if (walker.nextSibling()) {
262  break;
263  }
264  }
265  }
266  }
267  }
268  } while ( ! parentStack.empty());
269 
270  geo_mgr->CloseGeometry();
271 
272  geo_mgr->DefaultColors();
273 
274  nameToShape_.clear();
275  nameToVolume_.clear();
276  nameToMaterial_.clear();
277  nameToMedium_.clear();
278 
279  return geo_mgr;
280 }
std::map< std::string, TGeoMaterial * > nameToMaterial_
static const TGPicture * info(bool iBackgroundIsBlack)
const edm::EventSetup * m_eventSetup
TGeoVolume * createVolume(const std::string &iName, const DDSolid &iSolid, const DDMaterial &iMaterial)
const graph_type & graph() const
Provides read-only access to the data structure of the compact-view.
std::map< std::string, TGeoVolume * > nameToVolume_
static const char *const name(DDSolidShape s)
Definition: DDSolidShapes.h:22
graph< DDLogicalPart, DDPosData * >::value_type value_type
Definition: graphwalker.h:38
std::map< std::string, TGeoMedium * > nameToMedium_
const T & get() const
Definition: EventSetup.h:56
std::map< std::string, TGeoShape * > nameToShape_
HLT enums.
bool isValid() const
Definition: ESHandle.h:47
TGeoMaterial * TGeoFromDddService::createMaterial ( const DDMaterial iMaterial)
private

Definition at line 578 of file TGeoFromDddService.cc.

References DDMaterial::a(), DDMaterial::constituent(), DDMaterial::density(), DDName::fullname(), g, mps_fire::i, ecalTB2006H4_GenSimDigiReco_cfg::mix, DDBase< N, C >::name(), nameToMaterial_, DDMaterial::noOfConstituents(), AlCaHLTBitMon_QueryRunRegistry::string, and DDMaterial::z().

Referenced by createVolume().

579 {
580  std::string mat_name = iMaterial.name().fullname();
581  TGeoMaterial *mat = nameToMaterial_[mat_name];
582 
583  if (mat == 0)
584  {
585  if (iMaterial.noOfConstituents() > 0)
586  {
587  TGeoMixture *mix = new TGeoMixture(mat_name.c_str(),
588  iMaterial.noOfConstituents(),
589  iMaterial.density()*cm3/g);
590  for (int i = 0; i < iMaterial.noOfConstituents(); ++i)
591  {
592  mix->AddElement(createMaterial(iMaterial.constituent(i).first),
593  iMaterial.constituent(i).second);
594  }
595  mat = mix;
596  }
597  else
598  {
599  mat = new TGeoMaterial(mat_name.c_str(),
600  iMaterial.a()*mole/g, iMaterial.z(),
601  iMaterial.density()*cm3/g);
602  }
603  nameToMaterial_[mat_name] = mat;
604  }
605 
606  return mat;
607 }
std::map< std::string, TGeoMaterial * > nameToMaterial_
double a() const
returns the atomic mass
Definition: DDMaterial.cc:97
const N & name() const
Definition: DDBase.h:78
The Signals That Services Can Subscribe To This is based on ActivityRegistry and is current per Services can connect to the signals distributed by the ActivityRegistry in order to monitor the activity of the application Each possible callback has some defined which we here list in angle e g
Definition: Activities.doc:4
double z() const
retruns the atomic number
Definition: DDMaterial.cc:103
const std::string fullname() const
Definition: DDName.h:52
FractionV::value_type constituent(int i) const
returns the i-th compound material and its fraction-mass
Definition: DDMaterial.cc:91
double density() const
returns the density
Definition: DDMaterial.cc:109
TGeoMaterial * createMaterial(const DDMaterial &iMaterial)
int noOfConstituents() const
returns the number of compound materials or 0 for elementary materials
Definition: DDMaterial.cc:85
TGeoShape * TGeoFromDddService::createShape ( const std::string &  iName,
const DDSolid iSolid 
)
private

Definition at line 283 of file TGeoFromDddService.cc.

References DDPseudoTrap::atMinusZ(), MessageLogger_cfi::cerr, popcon2dropbox::copy(), edmIntegrityCheck::d, ddbox, ddcons, ddcuttubs, ddextrudedpolygon, ddintersection, ddpolycone_rrz, ddpolyhedra_rrz, ddpseudotrap, ddsubtraction, ddtrap, ddtubs, ddunion, delta, Exception, DDName::fullname(), DDPseudoTrap::halfZ(), mps_fire::i, DDRotation::matrix(), DDName::name(), DDBase< N, C >::name(), nameToShape_, DDSolid::parameters(), EnergyCorrector::pt, alignCSCRings::r, DDPseudoTrap::radius(), DDBooleanSolid::rotation(), DDSolid::shape(), DDBooleanSolid::solidA(), DDBooleanSolid::solidB(), mathSSE::sqrt(), groupFilesInBlocks::temp, create_public_lumi_plots::transform, DDBooleanSolid::translation(), x, DDPseudoTrap::x1(), DDPseudoTrap::x2(), DDExtrudedPolygon::xVec(), y, DDPseudoTrap::y1(), DDPseudoTrap::y2(), DDExtrudedPolygon::yVec(), z, DDExtrudedPolygon::zscaleVec(), DDExtrudedPolygon::zVec(), DDExtrudedPolygon::zxVec(), and DDExtrudedPolygon::zyVec().

Referenced by createVolume().

285 {
286  TGeoShape* rSolid= nameToShape_[iName];
287  if (rSolid == 0)
288  {
289  const std::vector<double>& params = iSolid.parameters();
290  // std::cout <<" shape "<<iSolid<<std::endl;
291  switch(iSolid.shape())
292  {
293  case ddbox:
294  rSolid = new TGeoBBox(
295  iName.c_str(),
296  params[0]/cm,
297  params[1]/cm,
298  params[2]/cm);
299  break;
300  case ddcons:
301  rSolid = new TGeoConeSeg(
302  iName.c_str(),
303  params[0]/cm,
304  params[1]/cm,
305  params[2]/cm,
306  params[3]/cm,
307  params[4]/cm,
308  params[5]/deg,
309  params[6]/deg+params[5]/deg
310  );
311  break;
312  case ddtubs:
313  //Order in params is zhalf,rIn,rOut,startPhi,deltaPhi
314  rSolid= new TGeoTubeSeg(
315  iName.c_str(),
316  params[1]/cm,
317  params[2]/cm,
318  params[0]/cm,
319  params[3]/deg,
320  params[3]/deg + params[4]/deg);
321  break;
322  case ddcuttubs:
323  //Order in params is zhalf,rIn,rOut,startPhi,deltaPhi
324  rSolid= new TGeoCtub(
325  iName.c_str(),
326  params[1]/cm,
327  params[2]/cm,
328  params[0]/cm,
329  params[3]/deg,
330  params[3]/deg + params[4]/deg,
331  params[5],params[6],params[7],
332  params[8],params[9],params[10]);
333  break;
334  case ddtrap:
335  rSolid =new TGeoTrap(
336  iName.c_str(),
337  params[0]/cm, //dz
338  params[1]/deg, //theta
339  params[2]/deg, //phi
340  params[3]/cm, //dy1
341  params[4]/cm, //dx1
342  params[5]/cm, //dx2
343  params[6]/deg, //alpha1
344  params[7]/cm, //dy2
345  params[8]/cm, //dx3
346  params[9]/cm, //dx4
347  params[10]/deg);//alpha2
348  break;
349  case ddpolycone_rrz:
350  rSolid = new TGeoPcon(
351  iName.c_str(),
352  params[0]/deg,
353  params[1]/deg,
354  (params.size()-2)/3) ;
355  {
356  std::vector<double> temp(params.size()+1);
357  temp.reserve(params.size()+1);
358  temp[0]=params[0]/deg;
359  temp[1]=params[1]/deg;
360  temp[2]=(params.size()-2)/3;
361  std::copy(params.begin()+2,params.end(),temp.begin()+3);
362  for(std::vector<double>::iterator it=temp.begin()+3;
363  it != temp.end();
364  ++it) {
365  *it /=cm;
366  }
367  rSolid->SetDimensions(&(*(temp.begin())));
368  }
369  break;
370  case ddpolyhedra_rrz:
371  rSolid = new TGeoPgon(
372  iName.c_str(),
373  params[1]/deg,
374  params[2]/deg,
375  static_cast<int>(params[0]),
376  (params.size()-3)/3);
377  {
378  std::vector<double> temp(params.size()+1);
379  temp[0]=params[1]/deg;
380  temp[1]=params[2]/deg;
381  temp[2]=params[0];
382  temp[3]=(params.size()-3)/3;
383  std::copy(params.begin()+3,params.end(),temp.begin()+4);
384  for(std::vector<double>::iterator it=temp.begin()+4;
385  it != temp.end();
386  ++it) {
387  *it /=cm;
388  }
389  rSolid->SetDimensions(&(*(temp.begin())));
390  }
391  break;
392  case ddextrudedpolygon:
393  {
394  DDExtrudedPolygon extrPgon(iSolid);
395  std::vector<double> x = extrPgon.xVec();
396  std::transform(x.begin(), x.end(), x.begin(),[](double d) { return d/cm; });
397  std::vector<double> y = extrPgon.yVec();
398  std::transform(y.begin(), y.end(), y.begin(),[](double d) { return d/cm; });
399  std::vector<double> z = extrPgon.zVec();
400  std::vector<double> zx = extrPgon.zxVec();
401  std::vector<double> zy = extrPgon.zyVec();
402  std::vector<double> zscale = extrPgon.zscaleVec();
403 
404  TGeoXtru* mySolid = new TGeoXtru(z.size());
405  mySolid->DefinePolygon(x.size(), &(*x.begin()), &(*y.begin()));
406  for( size_t i = 0; i < params[0]; ++i )
407  {
408  mySolid->DefineSection( i, z[i]/cm, zx[i]/cm, zy[i]/cm, zscale[i]);
409  }
410 
411  rSolid = mySolid;
412  }
413  break;
414  case ddpseudotrap:
415  {
416  //implementation taken from SimG4Core/Geometry/src/DDG4SolidConverter.cc
417  const static DDRotationMatrix s_rot(ROOT::Math::RotationX(90.*deg));
418  DDPseudoTrap pt(iSolid);
419  assert(pt.radius() < 0);
420  double x=0;
421  double r = fabs(pt.radius());
422  if( pt.atMinusZ()) {
423  x=pt.x1();
424  } else {
425  x=pt.x2();
426  }
427  double openingAngle = 2.0*asin(x/r);
428  double h=pt.y1()<pt.y2()? pt.y2() :pt.y1();
429  h+=h/20.;
430  double displacement=0;
431  double startPhi = 0;
432  double delta = sqrt((r+x)*(r-x));
433  if(pt.atMinusZ()) {
434  displacement=-pt.halfZ() - delta;
435  startPhi = 270.-openingAngle/deg/2.0;
436  }else {
437  displacement = pt.halfZ() + delta;
438  startPhi = 90. - openingAngle/deg/2.;
439  }
440  std::auto_ptr<TGeoShape> trap( new TGeoTrd2(pt.name().name().c_str(),
441  pt.x1()/cm,
442  pt.x2()/cm,
443  pt.y1()/cm,
444  pt.y2()/cm,
445  pt.halfZ()/cm) );
446  std::auto_ptr<TGeoShape> tubs( new TGeoTubeSeg(pt.name().name().c_str(),
447  0.,
448  r/cm,
449  h/cm,
450  startPhi,
451  openingAngle) );
452  TGeoSubtraction* sub = new TGeoSubtraction(trap.release(),
453  tubs.release(),
454  createPlacement(s_rot,
455  DDTranslation(0.,
456  0.,
457  displacement)));
458  rSolid = new TGeoCompositeShape(iName.c_str(),
459  sub);
460 
461 
462  break;
463  }
464  case ddsubtraction:
465  {
466  DDBooleanSolid boolSolid(iSolid);
467  if(!boolSolid) {
468  throw cms::Exception("GeomConvert") <<"conversion to DDBooleanSolid failed";
469  }
470 
471  std::auto_ptr<TGeoShape> left( createShape(boolSolid.solidA().name().fullname(),
472  boolSolid.solidA()) );
473  std::auto_ptr<TGeoShape> right( createShape(boolSolid.solidB().name().fullname(),
474  boolSolid.solidB()));
475  if( 0 != left.get() &&
476  0 != right.get() ) {
477  TGeoSubtraction* sub = new TGeoSubtraction(left.release(),right.release(),
478  gGeoIdentity,
479  createPlacement(
480  *(boolSolid.rotation().matrix()),
481  boolSolid.translation()));
482  rSolid = new TGeoCompositeShape(iName.c_str(),
483  sub);
484  }
485  break;
486  }
487  case ddunion:
488  {
489  DDBooleanSolid boolSolid(iSolid);
490  if(!boolSolid) {
491  throw cms::Exception("GeomConvert") <<"conversion to DDBooleanSolid failed";
492  }
493 
494  std::auto_ptr<TGeoShape> left( createShape(boolSolid.solidA().name().fullname(),
495  boolSolid.solidA()) );
496  std::auto_ptr<TGeoShape> right( createShape(boolSolid.solidB().name().fullname(),
497  boolSolid.solidB()));
498  //DEBUGGING
499  //break;
500  if( 0 != left.get() &&
501  0 != right.get() ) {
502  TGeoUnion* boolS = new TGeoUnion(left.release(),right.release(),
503  gGeoIdentity,
504  createPlacement(
505  *(boolSolid.rotation().matrix()),
506  boolSolid.translation()));
507  rSolid = new TGeoCompositeShape(iName.c_str(),
508  boolS);
509  }
510  break;
511  }
512  case ddintersection:
513  {
514  DDBooleanSolid boolSolid(iSolid);
515  if(!boolSolid) {
516  throw cms::Exception("GeomConvert") <<"conversion to DDBooleanSolid failed";
517  }
518 
519  std::auto_ptr<TGeoShape> left( createShape(boolSolid.solidA().name().fullname(),
520  boolSolid.solidA()) );
521  std::auto_ptr<TGeoShape> right( createShape(boolSolid.solidB().name().fullname(),
522  boolSolid.solidB()));
523  if( 0 != left.get() &&
524  0 != right.get() ) {
525  TGeoIntersection* boolS = new TGeoIntersection(left.release(),
526  right.release(),
527  gGeoIdentity,
528  createPlacement(
529  *(boolSolid.rotation().matrix()),
530  boolSolid.translation()));
531  rSolid = new TGeoCompositeShape(iName.c_str(),
532  boolS);
533  }
534  break;
535  }
536  default:
537  break;
538  }
539  nameToShape_[iName]=rSolid;
540  }
541  if (rSolid == 0)
542  {
543  std::cerr <<"COULD NOT MAKE "<<iName<<std::endl;
544  }
545  return rSolid;
546 }
dbl * delta
Definition: mlp_gen.cc:36
const std::vector< double > & parameters(void) const
Give the parameters of the solid.
Definition: DDSolid.cc:147
ROOT::Math::DisplacementVector3D< ROOT::Math::Cartesian3D< double > > DDTranslation
Definition: DDTranslation.h:7
T sqrt(T t)
Definition: SSEVec.h:18
DDSolidShape shape(void) const
The type of the solid.
Definition: DDSolid.cc:141
std::map< std::string, TGeoShape * > nameToShape_
ROOT::Math::Rotation3D DDRotationMatrix
A DDRotationMatrix is currently implemented with a ROOT Rotation3D.
TGeoShape * createShape(const std::string &iName, const DDSolid &iSolid)
TGeoVolume * TGeoFromDddService::createVolume ( const std::string &  iName,
const DDSolid iSolid,
const DDMaterial iMaterial 
)
private

Definition at line 549 of file TGeoFromDddService.cc.

References createMaterial(), createShape(), DDName::fullname(), DDBase< N, C >::name(), nameToMedium_, nameToVolume_, AlCaHLTBitMon_QueryRunRegistry::string, and findQualityFiles::v.

Referenced by createManager().

552 {
553  TGeoVolume* v=nameToVolume_[iName];
554  if (v == 0)
555  {
556  TGeoShape* solid = createShape(iSolid.name().fullname(),
557  iSolid);
558  std::string mat_name = iMaterial.name().fullname();
559  TGeoMedium *geo_med = nameToMedium_[mat_name];
560  if (geo_med == 0)
561  {
562  TGeoMaterial *geo_mat = createMaterial(iMaterial);
563  geo_med = new TGeoMedium(mat_name.c_str(), 0, geo_mat);
564  nameToMedium_[mat_name] = geo_med;
565  }
566  if (solid)
567  {
568  v = new TGeoVolume(iName.c_str(),
569  solid,
570  geo_med);
571  }
572  nameToVolume_[iName] = v;
573  }
574  return v;
575 }
const N & name() const
Definition: DDBase.h:78
std::map< std::string, TGeoVolume * > nameToVolume_
const std::string fullname() const
Definition: DDName.h:52
std::map< std::string, TGeoMedium * > nameToMedium_
TGeoMaterial * createMaterial(const DDMaterial &iMaterial)
TGeoShape * createShape(const std::string &iName, const DDSolid &iSolid)
TGeoManager * TGeoFromDddService::getGeoManager ( )

Definition at line 103 of file TGeoFromDddService.cc.

References createManager(), allElectronIsolations_cfi::elements, m_eventSetup, m_geoManager, m_level, alignCSCRings::r, and lumiQTWidget::t.

104 {
105  if (m_geoManager == 0)
106  {
107  if (m_eventSetup == 0)
108  edm::LogError("TGeoFromDddService") << "getGeoManager() -- EventSetup not present.\n";
109  else
110  {
112  if (m_geoManager == 0)
113  edm::LogError("TGeoFromDddService") << "getGeoManager() -- creation failed.\n";
114  }
115  }
116  gGeoManager = m_geoManager;
117  return m_geoManager;
118 }
TGeoManager * m_geoManager
const edm::EventSetup * m_eventSetup
TGeoManager * createManager(int level)
const TGeoFromDddService& TGeoFromDddService::operator= ( const TGeoFromDddService )
private
void TGeoFromDddService::postBeginRun ( const edm::Run ,
const edm::EventSetup es 
)

Definition at line 81 of file TGeoFromDddService.cc.

References m_eventSetup.

Referenced by TGeoFromDddService().

82 {
83  printf("TGeoFromDddService::postBeginRun\n");
84 
85  m_eventSetup = &es;
86 }
const edm::EventSetup * m_eventSetup
void TGeoFromDddService::postEndRun ( const edm::Run ,
const edm::EventSetup  
)

Definition at line 88 of file TGeoFromDddService.cc.

References m_eventSetup.

Referenced by TGeoFromDddService().

89 {
90  printf("TGeoFromDddService::postEndRun\n");
91 
92  // Construction of geometry fails miserably on second attempt ...
93  /*
94  if (m_geoManager)
95  {
96  delete m_geoManager;
97  m_geoManager = 0;
98  }
99  */
100  m_eventSetup = 0;
101 }
const edm::EventSetup * m_eventSetup

Member Data Documentation

const edm::EventSetup* TGeoFromDddService::m_eventSetup
private

Definition at line 83 of file TGeoFromDddService.h.

Referenced by createManager(), getGeoManager(), postBeginRun(), and postEndRun().

TGeoManager* TGeoFromDddService::m_geoManager
private

Definition at line 84 of file TGeoFromDddService.h.

Referenced by getGeoManager(), and ~TGeoFromDddService().

int TGeoFromDddService::m_level
private

Definition at line 81 of file TGeoFromDddService.h.

Referenced by getGeoManager().

bool TGeoFromDddService::m_verbose
private

Definition at line 82 of file TGeoFromDddService.h.

Referenced by createManager().

std::map<std::string, TGeoMaterial*> TGeoFromDddService::nameToMaterial_
private

Definition at line 88 of file TGeoFromDddService.h.

Referenced by createManager(), and createMaterial().

std::map<std::string, TGeoMedium*> TGeoFromDddService::nameToMedium_
private

Definition at line 89 of file TGeoFromDddService.h.

Referenced by createManager(), and createVolume().

std::map<std::string, TGeoShape*> TGeoFromDddService::nameToShape_
private

Definition at line 86 of file TGeoFromDddService.h.

Referenced by createManager(), and createShape().

std::map<std::string, TGeoVolume*> TGeoFromDddService::nameToVolume_
private

Definition at line 87 of file TGeoFromDddService.h.

Referenced by createManager(), and createVolume().