ATLAS Offline Software
Classes | Public Member Functions | Private Member Functions | Private Attributes | List of all members
BeamPipeDetectorFactory Class Referencefinal

#include <BeamPipeDetectorFactory.h>

Inheritance diagram for BeamPipeDetectorFactory:
Collaboration diagram for BeamPipeDetectorFactory:

Classes

class  EnvelopeEntry
 
class  EnvelopeShapes
 

Public Member Functions

 BeamPipeDetectorFactory (StoreGateSvc *pDetStore, IRDBAccessSvc *pAccess)
 
 ~BeamPipeDetectorFactory ()
 
virtual void create (GeoPhysVol *world) override
 
virtual const BeamPipeDetectorManagergetDetectorManager () const override
 
void setTagNode (std::string tag, std::string node, std::string mode)
 
void addSections (GeoPhysVol *parent, int region)
 

Private Member Functions

EnvelopeShapes makeEnvelope (const IRDBRecordset_ptr &bpipeEnvelope)
 
EnvelopeShapes makeEnvelopeOld (const IRDBRecordset_ptr &atlasMother)
 
const BeamPipeDetectorFactoryoperator= (const BeamPipeDetectorFactory &right)
 
 BeamPipeDetectorFactory (const BeamPipeDetectorFactory &right)
 

Private Attributes

BeamPipeDetectorManagerm_detectorManager
 
StoredMaterialManagerm_materialManager
 
StoreGateSvcm_detectorStore
 
IRDBAccessSvcm_access
 
std::string m_versionTag
 
std::string m_versionNode
 
std::string m_mode
 
double m_centralRegionZMax
 

Detailed Description

Definition at line 18 of file BeamPipeDetectorFactory.h.

Constructor & Destructor Documentation

◆ BeamPipeDetectorFactory() [1/2]

BeamPipeDetectorFactory::BeamPipeDetectorFactory ( StoreGateSvc pDetStore,
IRDBAccessSvc pAccess 
)

Definition at line 34 of file BeamPipeDetectorFactory.cxx.

36  :m_detectorManager(nullptr),
37  m_materialManager(nullptr),
39  m_access(pAccess),
41 {}

◆ ~BeamPipeDetectorFactory()

BeamPipeDetectorFactory::~BeamPipeDetectorFactory ( )
default

◆ BeamPipeDetectorFactory() [2/2]

BeamPipeDetectorFactory::BeamPipeDetectorFactory ( const BeamPipeDetectorFactory right)
private

Member Function Documentation

◆ addSections()

void BeamPipeDetectorFactory::addSections ( GeoPhysVol *  parent,
int  region 
)

Definition at line 156 of file BeamPipeDetectorFactory.cxx.

157 {
158 
159  IRDBRecordset_ptr bpipeSections = m_access->getRecordsetPtr("BPipeSections",m_versionTag,m_versionNode);
160 
161  bool central = (region == 0);
162 
163  // Sections 2 & 3 are placed in section 1.
164  // pvMotherSection will point to section 1.
165  GeoPhysVol* pvMotherSection = nullptr;
166  bool addToFirstSection = true;
167  double rminSec1 = 0;
168  double rmaxSec1 = 0;
169  double zminSec1 = 0;
170  double zmaxSec1 = 0;
171 
172  for (unsigned int itemp=0; itemp<bpipeSections->size(); itemp++)
173  {
174  std::string material = (*bpipeSections)[itemp]->getString("MATERIAL");
175  double rMin1 = (*bpipeSections)[itemp]->getDouble("RMIN1") * Gaudi::Units::mm;
176  double rMax1 = (*bpipeSections)[itemp]->getDouble("RMAX1") * Gaudi::Units::mm;
177  double rMin2 = (*bpipeSections)[itemp]->getDouble("RMIN2") * Gaudi::Units::mm;
178  double rMax2 = (*bpipeSections)[itemp]->getDouble("RMAX2") * Gaudi::Units::mm;
179  double z = (*bpipeSections)[itemp]->getDouble("Z") * Gaudi::Units::mm;
180  double dZ = (*bpipeSections)[itemp]->getDouble("DZ") * Gaudi::Units::mm;
181  int secNum = (*bpipeSections)[itemp]->getInt("SECNUM");
182 
183  double zmin = z - dZ;
184  double zmax = z + dZ;
185 
186 
187  // Check if in central or fwd region or if it is split.
188  // We assume it is left/right symmetric.
189  if (central) {
190  if (zmin > m_centralRegionZMax) continue;
192  if (zmax < -m_centralRegionZMax) continue;
194  } else {
195  if (zmax < m_centralRegionZMax) continue;
197  }
198 
199 
200  double znew = 0.5 * (zmin + zmax);
201  double dZnew = 0.5 * (zmax - zmin);
202 
203  std::ostringstream os;
204  if (central) {
205  os << "SectionC";
206  } else {
207  os << "SectionF";
208  }
209  os << std::setw(2) << std::setfill('0') << secNum;
210  std::string name = os.str();
211 
212  //std::cout << "Adding section: " << name
213  // << " rmin1,rmin2,rmax1,rmax2,z,dz = "
214  // << rMin1 << ", "
215  // << rMin2 << ", "
216  // << rMax1 << ", "
217  // << rMax2 << ", "
218  // << znew << ", "
219  // << dZnew << ", "
220  // << material << std::endl;
221 
222  bool isTube = true;
223  GeoShape* shape;
224  if((rMin1==rMin2)&&(rMax1==rMax2)) {
225  shape = new GeoTube(rMin1,rMax1,dZnew);
226  isTube = true;
227  } else {
228  shape = new GeoCons(rMin1,rMin2,
229  rMax1,rMax2,
230  dZnew,
232  isTube = false;
233  }
234 
235  const GeoMaterial* mat = m_materialManager->getMaterial(material);
236  if (mat == nullptr) {
237  // For backward compatibility - older geometry versions didn't specify the
238  // material namespace
239  // std::cout << "Material """ << material << """ not found. Trying std::" << material << std::endl;
240  mat = m_materialManager->getMaterial("std::"+material);
241  }
242 
243  GeoLogVol* lvSection = new GeoLogVol(name,shape,mat);
244  GeoIntrusivePtr<GeoPhysVol> pvSection{new GeoPhysVol(lvSection)};
245 
246  // Determine if this is a geometry where the first section can act as the mother of the following
247  // sections. The following sections are only added to this if their ave radius is within the radial
248  // extent and their ave z is within the z extent.
249  // As soon as one section fails to meet this the latter sections are not considered.
250  if(secNum==1) {
251  pvMotherSection = pvSection;
252  rminSec1 = rMin1;
253  rmaxSec1 = rMax1;
254  zminSec1 = zmin;
255  zmaxSec1 = zmax;
256  }
257 
258  if (addToFirstSection && secNum != 1) {
259  double rAve = 0.5*(rMin1+rMax1);
260  addToFirstSection = (znew > zminSec1 && znew < zmaxSec1 &&
261  rAve > rminSec1 && rAve < rmaxSec1);
262  }
263 
264 
265  GeoTransform* tfSection = nullptr;
266  if (znew != 0 && (secNum==1 || !addToFirstSection)) tfSection = new GeoTransform(GeoTrf::TranslateZ3D(znew));
267  GeoIntrusivePtr<GeoNameTag> ntSection{new GeoNameTag(name)};
268 
269  if (addToFirstSection && secNum!=1) {
270  if (!pvMotherSection) {
271  MsgStream gLog(Athena::getMessageSvc(), "BeamPipeDetectorFactory");
272  gLog << MSG::ERROR << "Logic error building beam pipe." << endmsg;
273  }
274  else {
275  //std::cout << "Placing section " << secNum << " in Section1" << std::endl;
276  pvMotherSection->add(ntSection);
277  pvMotherSection->add(pvSection);
278  }
279  } else {
280  //std::cout << "Placing section " << secNum << " in mother envelope" << std::endl;
281  parent->add(ntSection);
282  if (tfSection) parent->add(tfSection);
283  parent->add(pvSection);
284  }
285 
286  // Not needed, but just in case in the future we have +/- sections in central region
287  if(central && z!=0.) {
288  // add rotated section as well
289  GeoTransform* tfSectionRot = nullptr;
290  if (isTube) {
291  // No need for rotation.
292  tfSectionRot = new GeoTransform(GeoTrf::TranslateZ3D(-znew));
293  } else {
294  // For cone we need to rotate around Y axis.
295  tfSectionRot = new GeoTransform(GeoTrf::TranslateZ3D(-znew)*GeoTrf::RotateY3D(180*Gaudi::Units::deg));
296  }
297  parent->add(ntSection);
298  parent->add(tfSectionRot);
299  parent->add(pvSection);
300  }
301 
302  }
303 }

◆ create()

void BeamPipeDetectorFactory::create ( GeoPhysVol *  world)
overridevirtual

Definition at line 46 of file BeamPipeDetectorFactory.cxx.

47 {
49 
50  if (StatusCode::SUCCESS != m_detectorStore->retrieve(m_materialManager, std::string("MATERIALS"))) {
51  return;
52  }
53 
56  IRDBRecordset_ptr bpipeEnvelope = m_access->getRecordsetPtr("BPipeEnvelope",m_versionTag,m_versionNode);
57  IRDBRecordset_ptr bpipePosition = m_access->getRecordsetPtr("BPipePosition",m_versionTag,m_versionNode);
58 
59  // Get the materials
60  const GeoMaterial *air = m_materialManager->getMaterial("std::Air");
61 
62  // Create beam pipe top level envelopes
63  // It is split into 3 sections.
64  // left, right and central. This is to allow different truth scoring in the different regions.
65 
66  m_centralRegionZMax = 1500 * Gaudi::Units::mm; // For backward compatibility in DB.
67  if (bpipeGeneral->size() != 0) m_centralRegionZMax = (*bpipeGeneral)[0]->getDouble("CENTRALZMAX") * Gaudi::Units::mm;
68 
69  const GeoMaterial* ether = m_materialManager->getMaterial("special::Ether");
70  GeoTube* dummytube= new GeoTube(0., 4711., 4711.);
71  GeoLogVol* dummyBeamPipe = new GeoLogVol("BeamPipe",dummytube,ether);
72  GeoRef<GeoPhysVol> theBeamPipe (new GeoPhysVol(dummyBeamPipe));
73 
74  EnvelopeShapes envelopes;
75 
76  if (bpipeEnvelope->size() != 0) {
77  envelopes = makeEnvelope(bpipeEnvelope);
78  } else {
79  envelopes = makeEnvelopeOld(atlasMother);
80  }
81 
82  GeoLogVol* lvMotherCentral = new GeoLogVol("BeamPipeCentral",envelopes.centralShape,air);
83  GeoPhysVol* pvMotherCentral = new GeoPhysVol(lvMotherCentral);
84 
85 
86  // The treetops need to have unique physical volumes so
87  // we create pvMotherFwdMinus which is identical pvMotherFwdPlus.
88  GeoLogVol* lvMotherFwd = new GeoLogVol("BeamPipeFwd",envelopes.fwdShape,air);
89  GeoPhysVol* pvMotherFwdPlus = new GeoPhysVol(lvMotherFwd);
90  GeoPhysVol* pvMotherFwdMinus = new GeoPhysVol(lvMotherFwd);
91 
92 
93  // Add sections
94  addSections(pvMotherCentral, 0);
95  addSections(pvMotherFwdPlus, 1);
96  addSections(pvMotherFwdMinus, 1);
97 
98  // We have to give them all the name "BeamPipe"
99  // This is the name used by HepVis viewer
100  GeoNameTag *tag = new GeoNameTag("BeamPipe");
101 
102  double beamx = 0.0;
103  double beamy = 0.0;
104  double beamz = 0.0;
105  if (bpipePosition->size() != 0) {
106  beamx = (*bpipePosition)[0]->getDouble("POSX") * Gaudi::Units::mm;
107  beamy = (*bpipePosition)[0]->getDouble("POSY") * Gaudi::Units::mm;
108  beamz = (*bpipePosition)[0]->getDouble("POSZ") * Gaudi::Units::mm;
109  }
110 
111  if (m_mode=="AssemblyBeamPipe"){
112  // Only shift the central section
113  // Central
114  theBeamPipe->add(tag);
115  theBeamPipe->add(new GeoTransform(GeoTrf::Translate3D(beamx,beamy,beamz)));
116  theBeamPipe->add(pvMotherCentral);
117 
118  // FwdPlus
119  theBeamPipe->add(tag);
120  theBeamPipe->add(pvMotherFwdPlus);
121 
122  // FwdMinus
123  theBeamPipe->add(tag);
124  theBeamPipe->add(new GeoTransform(GeoTrf::RotateY3D(180*Gaudi::Units::degree)));
125  theBeamPipe->add(pvMotherFwdMinus);
126 
127  const GeoShape *shape = envelopes.bpShape;
128  GeoLogVol* lvMother = new GeoLogVol("BeamPipe",shape,air);
129  GeoPhysVol* pvMother = new GeoPhysVol(lvMother);
130  pvMother->add(tag);
131  pvMother->add(theBeamPipe);
132 
133  world->add(tag);
134  world->add(pvMother);
135  m_detectorManager->addTreeTop(pvMother);
136  }
137  else{
138  // Default beam pipe, union of central and forward beampipes rather than assembly volume
139  // Central
140  world->add(tag);
141  world->add(new GeoTransform(GeoTrf::Translate3D(beamx,beamy,beamz)));
142  world->add(pvMotherCentral);
143  m_detectorManager->addTreeTop(pvMotherCentral); //
144  // FwdPlus
145  world->add(tag);
146  world->add(pvMotherFwdPlus);
147  m_detectorManager->addTreeTop(pvMotherFwdPlus);
148  // FwdMinus
149  world->add(tag);
150  world->add(new GeoTransform(GeoTrf::RotateY3D(180*Gaudi::Units::degree)));
151  world->add(pvMotherFwdMinus);
152  m_detectorManager->addTreeTop(pvMotherFwdMinus);
153  }
154 }

◆ getDetectorManager()

const BeamPipeDetectorManager * BeamPipeDetectorFactory::getDetectorManager ( ) const
overridevirtual

Definition at line 305 of file BeamPipeDetectorFactory.cxx.

306 {
307  return m_detectorManager;
308 }

◆ makeEnvelope()

BeamPipeDetectorFactory::EnvelopeShapes BeamPipeDetectorFactory::makeEnvelope ( const IRDBRecordset_ptr bpipeEnvelope)
private

Definition at line 319 of file BeamPipeDetectorFactory.cxx.

320 {
321  EnvelopeShapes envelopes;
322 
323  std::vector<EnvelopeEntry> centralEntry;
324  std::vector<EnvelopeEntry> fwdEntry;
325 
326  for (unsigned int i=0; i<bpipeEnvelope->size(); i++) {
327  double z = (*bpipeEnvelope)[i]->getDouble("Z") * Gaudi::Units::mm;
328  double r = (*bpipeEnvelope)[i]->getDouble("R") * Gaudi::Units::mm;
329  EnvelopeEntry entry(z,r);
330  if (z < m_centralRegionZMax) {
331  centralEntry.push_back(entry);
332  } else {
333  fwdEntry.push_back(entry);
334  }
335  }
336 
337  double rFwd = 0;
338  if (!fwdEntry.empty()) {
339  rFwd = fwdEntry[0].r();
340  } else if (!centralEntry.empty()) {
341  rFwd = centralEntry[0].r();
342  } else {
343  std::cout << "Unexpected condition when building beam pipe." << std::endl;
344  }
345 
346  // central
347  if (centralEntry.empty()) {
348  envelopes.centralShape = new GeoTube(0, rFwd, m_centralRegionZMax);
349  } else {
350  // This case probably will never get used and is untested.
351  GeoRef<GeoPcon> pcone (new GeoPcon(0, 360*Gaudi::Units::deg));
352 
353  pcone->addPlane(-m_centralRegionZMax,0,rFwd);
354  for (int i=centralEntry.size()-1; i>=0; i--) {
355  double z = centralEntry[i].z();
356  double r = centralEntry[i].r();
357  pcone->addPlane(-z,0,r);
358  }
359  for (unsigned int i=0; i<centralEntry.size(); i++) {
360  double z = centralEntry[i].z();
361  double r = centralEntry[i].r();
362  pcone->addPlane(z,0,r);
363  }
364  pcone->addPlane(m_centralRegionZMax,0,rFwd);
365  envelopes.centralShape = pcone;
366  }
367 
368 
369  // forward
370  {
371  GeoRef<GeoPcon> pcone (new GeoPcon(0, 360*Gaudi::Units::deg));
372  pcone->addPlane(m_centralRegionZMax,0,rFwd);
373  if (fwdEntry.empty()) {
374  // Unlikely case but for completeness
375  // we make small fwd region if everything is in central region.
376  pcone->addPlane(m_centralRegionZMax+0.1*Gaudi::Units::mm,0,rFwd);
377  }
378  for (unsigned int i=0; i<fwdEntry.size(); i++) {
379  double z = fwdEntry[i].z();
380  double r = fwdEntry[i].r();
381  pcone->addPlane(z,0,r);
382  }
383  envelopes.fwdShape = pcone;
384  }
385 
386  //central+fwd
387  {
388  GeoRef<GeoPcon> Pcone =(new GeoPcon(0, 360*Gaudi::Units::deg));
389  for (int i=fwdEntry.size()-1; i>=0; i--) {
390  double z = fwdEntry[i].z();
391  double r = fwdEntry[i].r();
392  Pcone->addPlane(-z,0,r);
393  }
394  Pcone->addPlane(-m_centralRegionZMax,0,rFwd);
395  Pcone->addPlane(m_centralRegionZMax,0,rFwd);
396  for (unsigned int i=0; i<fwdEntry.size(); i++) {
397  double z = fwdEntry[i].z();
398  double r = fwdEntry[i].r();
399  Pcone->addPlane(z,0,r);
400  }
401  envelopes.bpShape = Pcone;
402  }
403 
404  return envelopes;
405 
406 }

◆ makeEnvelopeOld()

BeamPipeDetectorFactory::EnvelopeShapes BeamPipeDetectorFactory::makeEnvelopeOld ( const IRDBRecordset_ptr atlasMother)
private

Definition at line 410 of file BeamPipeDetectorFactory.cxx.

411 {
412 
413  double iir = (*atlasMother)[0]->getDouble("IDETIR")*Gaudi::Units::cm;
414  double cir = (*atlasMother)[0]->getDouble("CALOIR")*Gaudi::Units::cm;
415  double mir = (*atlasMother)[0]->getDouble("MUONIR")*Gaudi::Units::cm;
416  double totlen = (*atlasMother)[0]->getDouble("ZMAX")*Gaudi::Units::cm;
417  double ilen = (*atlasMother)[0]->getDouble("IDETZMX")*Gaudi::Units::cm;
418  double clen = (*atlasMother)[0]->getDouble("CALOZMX")*Gaudi::Units::cm;
419 
420  // Central Section.
421  GeoRef<GeoTube> bpipeCentralShape (new GeoTube(0, iir, m_centralRegionZMax));
422 
423  // Left/Right section. We create this once (as the +ve z section) and
424  // place th -ve section by doing a rotation.
425 
426  // Right section (+ve z)
427 
428  GeoRef<GeoPcon> bpipeEnvPcone (new GeoPcon(0, 360*Gaudi::Units::deg));
429  bpipeEnvPcone->addPlane(m_centralRegionZMax,0,iir);
430  bpipeEnvPcone->addPlane(ilen,0,iir);
431  bpipeEnvPcone->addPlane(ilen,0,cir);
432  bpipeEnvPcone->addPlane(clen,0,cir);
433  bpipeEnvPcone->addPlane(clen,0,mir);
434  bpipeEnvPcone->addPlane(totlen,0,mir);
435 
436  // These get returned.
437  EnvelopeShapes envelopes;
438  envelopes.centralShape = bpipeCentralShape;
439  envelopes.fwdShape = bpipeEnvPcone;
440 
441  return envelopes;
442 }

◆ operator=()

const BeamPipeDetectorFactory& BeamPipeDetectorFactory::operator= ( const BeamPipeDetectorFactory right)
private

◆ setTagNode()

void BeamPipeDetectorFactory::setTagNode ( std::string  tag,
std::string  node,
std::string  mode 
)

Definition at line 310 of file BeamPipeDetectorFactory.cxx.

311 {
312  m_versionTag = std::move(tag);
313  m_versionNode = std::move(node);
314  m_mode = std::move(mode);
315 }

Member Data Documentation

◆ m_access

IRDBAccessSvc* BeamPipeDetectorFactory::m_access
private

Definition at line 77 of file BeamPipeDetectorFactory.h.

◆ m_centralRegionZMax

double BeamPipeDetectorFactory::m_centralRegionZMax
private

Definition at line 82 of file BeamPipeDetectorFactory.h.

◆ m_detectorManager

BeamPipeDetectorManager* BeamPipeDetectorFactory::m_detectorManager
private

Definition at line 72 of file BeamPipeDetectorFactory.h.

◆ m_detectorStore

StoreGateSvc* BeamPipeDetectorFactory::m_detectorStore
private

Definition at line 76 of file BeamPipeDetectorFactory.h.

◆ m_materialManager

StoredMaterialManager* BeamPipeDetectorFactory::m_materialManager
private

Definition at line 74 of file BeamPipeDetectorFactory.h.

◆ m_mode

std::string BeamPipeDetectorFactory::m_mode
private

Definition at line 80 of file BeamPipeDetectorFactory.h.

◆ m_versionNode

std::string BeamPipeDetectorFactory::m_versionNode
private

Definition at line 79 of file BeamPipeDetectorFactory.h.

◆ m_versionTag

std::string BeamPipeDetectorFactory::m_versionTag
private

Definition at line 78 of file BeamPipeDetectorFactory.h.


The documentation for this class was generated from the following files:
BeamPipeDetectorManager::addTreeTop
void addTreeTop(const PVConstLink &)
Definition: BeamPipeDetectorManager.cxx:25
BeamPipeDetectorFactory::m_mode
std::string m_mode
Definition: BeamPipeDetectorFactory.h:80
beamspotman.r
def r
Definition: beamspotman.py:676
IRDBAccessSvc::getRecordsetPtr
virtual IRDBRecordset_ptr getRecordsetPtr(const std::string &node, const std::string &tag, const std::string &tag2node="", const std::string &connName="ATLASDD")=0
Provides access to the Recordset object containing HVS-tagged data.
PixelAthClusterMonAlgCfg.zmin
zmin
Definition: PixelAthClusterMonAlgCfg.py:169
mat
GeoMaterial * mat
Definition: LArDetectorConstructionTBEC.cxx:55
BeamPipeDetectorFactory::m_versionTag
std::string m_versionTag
Definition: BeamPipeDetectorFactory.h:78
deg
#define deg
Definition: SbPolyhedron.cxx:17
BeamPipeDetectorFactory::m_centralRegionZMax
double m_centralRegionZMax
Definition: BeamPipeDetectorFactory.h:82
BeamPipeDetectorFactory::m_detectorStore
StoreGateSvc * m_detectorStore
Definition: BeamPipeDetectorFactory.h:76
Athena::getMessageSvc
IMessageSvc * getMessageSvc(bool quiet=false)
Definition: getMessageSvc.cxx:20
BeamPipeDetectorFactory::makeEnvelopeOld
EnvelopeShapes makeEnvelopeOld(const IRDBRecordset_ptr &atlasMother)
Definition: BeamPipeDetectorFactory.cxx:410
StoreGateSvc::retrieve
StatusCode retrieve(const T *&ptr) const
Retrieve the default object into a const T*.
cm
const double cm
Definition: Simulation/ISF/ISF_FastCaloSim/ISF_FastCaloSimParametrization/tools/FCAL_ChannelMap.cxx:25
lumiFormat.i
int i
Definition: lumiFormat.py:85
z
#define z
endmsg
#define endmsg
Definition: AnalysisConfig_Ntuple.cxx:63
PixelAthClusterMonAlgCfg.zmax
zmax
Definition: PixelAthClusterMonAlgCfg.py:169
test_pyathena.parent
parent
Definition: test_pyathena.py:15
Preparation.mode
mode
Definition: Preparation.py:94
BeamPipeDetectorFactory::m_materialManager
StoredMaterialManager * m_materialManager
Definition: BeamPipeDetectorFactory.h:74
BeamPipeDetectorFactory::addSections
void addSections(GeoPhysVol *parent, int region)
Definition: BeamPipeDetectorFactory.cxx:156
ReadFromCoolCompare.os
os
Definition: ReadFromCoolCompare.py:231
IRDBRecordset_ptr
std::shared_ptr< IRDBRecordset > IRDBRecordset_ptr
Definition: IRDBAccessSvc.h:25
GetAllXsec.entry
list entry
Definition: GetAllXsec.py:132
python.PyKernel.detStore
detStore
Definition: PyKernel.py:41
name
std::string name
Definition: Control/AthContainers/Root/debug.cxx:228
BeamPipeDetectorFactory::makeEnvelope
EnvelopeShapes makeEnvelope(const IRDBRecordset_ptr &bpipeEnvelope)
Definition: BeamPipeDetectorFactory.cxx:319
python.SystemOfUnits.mm
int mm
Definition: SystemOfUnits.py:83
BeamPipeDetectorFactory::m_versionNode
std::string m_versionNode
Definition: BeamPipeDetectorFactory.h:79
StoredMaterialManager::getMaterial
virtual const GeoMaterial * getMaterial(const std::string &name)=0
CaloCondBlobAlgs_fillNoiseFromASCII.tag
string tag
Definition: CaloCondBlobAlgs_fillNoiseFromASCII.py:24
BeamPipeDetectorFactory::m_access
IRDBAccessSvc * m_access
Definition: BeamPipeDetectorFactory.h:77
BeamPipeDetectorFactory::m_detectorManager
BeamPipeDetectorManager * m_detectorManager
Definition: BeamPipeDetectorFactory.h:72
python.SystemOfUnits.degree
tuple degree
Definition: SystemOfUnits.py:106
GeoRef
GeoIntrusivePtr< T > GeoRef
Definition: GeoRef.h:20
BeamPipeDetectorManager
Definition: BeamPipeDetectorManager.h:14
node
Definition: memory_hooks-stdcmalloc.h:74