ATLAS Offline Software
Loading...
Searching...
No Matches
GeoPixelStaveRing.cxx
Go to the documentation of this file.
1/*
2 Copyright (C) 2002-2024 CERN for the benefit of the ATLAS collaboration
3*/
4
5// Build detailed stave support : face plate + carbon foam + cable flex + cooling pipe + end blocks
6// This is built one time per layer.
7
8#include "GeoPixelStaveRing.h"
9
10#include "GeoPixelSiCrystal.h"
11#include "GeoPixelModule.h"
12
13#include "GeoModelKernel/GeoBox.h"
14#include "GeoModelKernel/GeoTube.h"
15#include "GeoModelKernel/GeoSimplePolygonBrep.h"
16#include "GeoModelKernel/GeoLogVol.h"
17#include "GeoModelKernel/GeoPhysVol.h"
18#include "GeoModelKernel/GeoMaterial.h"
19#include "GeoModelKernel/GeoNameTag.h"
20#include "GaudiKernel/SystemOfUnits.h"
21
22#include <algorithm>
23#include <utility>
24using std::max;
25using namespace std;
26
29 GeoModelIO::ReadGeoModel* sqliteReader,
30 std::shared_ptr<std::map<std::string, GeoFullPhysVol*>> mapFPV,
31 std::shared_ptr<std::map<std::string, GeoAlignableTransform*>> mapAX)
32 : GeoVPixelFactory (ddmgr, mgr, sqliteReader, std::move(mapFPV), std::move(mapAX)),
33 m_physVol (nullptr),
34 m_zPosition (0),
35 m_innerRadius (0),
36 m_outerRadius (0),
37 m_ringPosition ("AC"),
38 m_ringName ("staveRing")
39{
40}
41
42GeoVPhysVol* GeoPixelStaveRing::SetParametersAndBuild(const std::string& ringName,
43 const std::string& ringPos)
44{
45 m_ringName=ringName;
46 m_ringPosition=ringPos;
47 m_physVol = Build();
48
49 return m_physVol;
50}
51
53
54 m_gmt_mgr->msg(MSG::INFO) <<"Build detailed stave ring support : "<<m_ringName<<" "<<m_ringPosition<<endmsg;
55
56 double safety = 0.001*Gaudi::Units::mm;
57 bool isBLayer = false;
58 if(m_gmt_mgr->GetLD() == 0) isBLayer = true;
61 if(m_sqliteReader) return nullptr;
62 // Ladder geometry
63
64 double endBlockFixingPoint= m_gmt_mgr->IBLStaveMechanicalStaveEndBlockFixPoint();
65 double totalStaveLength = m_gmt_mgr->IBLStaveLength();
66
67 if(m_ringPosition=="AC")
68 {
69 // Stave ring geometry
70 double ringWidth = m_gmt_mgr->IBLSupportRingWidth();
71 m_innerRadius = m_gmt_mgr->IBLSupportRingInnerRadius();
72 m_outerRadius = m_gmt_mgr->IBLSupportRingOuterRadius();
73 double fixingPoint = m_gmt_mgr->IBLSupportMechanicalStaveRingFixPoint();
74
75 // SES (dec 2012 - IBL pcache ): values hard coded as the one defined in ATLAS-IBL-02-01-00
76 // to get rid off the overlap between staverings ans ladder with ATLAS-IBL-02-00-00 values
77 if(m_innerRadius<29.56) m_innerRadius=29.56; // instead of 29.2
78 if(m_outerRadius>31.85) m_outerRadius=31.85; // instead of 32.
79
80 double endBlockPosition = totalStaveLength*0.5+endBlockFixingPoint;
81 double ringPosition = -ringWidth*0.5+fixingPoint;
82 m_zPosition = endBlockPosition-ringPosition;
83
84 double IPTouterRadius = m_gmt_mgr->IBLServiceGetMaxRadialPosition("IPT","simple",m_zPosition,m_zPosition)+safety;
85 m_gmt_mgr->msg(MSG::DEBUG)<<"IBL stave ring "<<m_zPosition<<" "<<m_innerRadius<<" "<<IPTouterRadius<<endmsg;
86 if(IPTouterRadius>m_innerRadius) m_innerRadius=IPTouterRadius;
87
88 // create log and phys volumes
89 m_gmt_mgr->msg(MSG::DEBUG)<<"-> IBL stave ring "<<m_zPosition<<" "<<m_innerRadius<<" "<<m_outerRadius<<endmsg;
90 const GeoTube* ring_tube = new GeoTube(m_innerRadius,m_outerRadius,ringWidth*0.5);
91 const GeoMaterial* ring_material_weight = m_mat_mgr->getMaterialForVolume("pix::StaveRing_IBLwght",ring_tube->volume());
92 m_gmt_mgr->msg(MSG::DEBUG)<<"IBL stave ring weighted material : "<<(ring_material_weight==nullptr)<<endmsg;
93
94 GeoLogVol * logVol = nullptr;
95 if(ring_material_weight)
96 logVol = new GeoLogVol(m_ringName,ring_tube,ring_material_weight);
97 else {
98 const GeoMaterial* ring_material = m_mat_mgr->getMaterial("pix::StaveRing_IBL");
99 logVol = new GeoLogVol(m_ringName,ring_tube,ring_material);
100 }
101 GeoPhysVol * logVolPV = new GeoPhysVol(logVol);
102 m_gmt_mgr->msg(MSG::INFO) <<"Build detailed stave ring support - logVol : "<<logVol->getName()<<endmsg;
103
104 return logVolPV;
105 }
106
107 // Stave ring geometry
108 double ringWidth = m_gmt_mgr->IBLSupportMidRingWidth();
109 m_innerRadius = m_gmt_mgr->IBLSupportMidRingInnerRadius();
110 m_outerRadius = m_gmt_mgr->IBLSupportMidRingOuterRadius();
111
112 m_zPosition = 0.0;
113
114 // create log and phys volumes
115 const GeoTube* ring_tube = new GeoTube(m_innerRadius,m_outerRadius,ringWidth*0.5);
116 const GeoMaterial* ring_material_weight = m_mat_mgr->getMaterialForVolume("pix::StaveRingMid_IBLwght",ring_tube->volume());
117 GeoLogVol *logVol=nullptr;
118 if(ring_material_weight)
119 logVol = new GeoLogVol(m_ringName,ring_tube,ring_material_weight);
120 else {
121 const GeoMaterial* ring_material = m_mat_mgr->getMaterial("pix::MiddleRing_IBL");
122 logVol = new GeoLogVol(m_ringName,ring_tube,ring_material);
123 }
124
125 GeoPhysVol * logVolPV = new GeoPhysVol(logVol);
126
127 m_gmt_mgr->msg(MSG::INFO) <<"Build detailed stave ring support - logVol : "<<logVol->getName()<<endmsg;
128
129 return logVolPV;
130
131}
132
#define endmsg
virtual GeoVPhysVol * Build() override
GeoVPhysVol * SetParametersAndBuild(const std::string &, const std::string &)
std::string m_ringPosition
GeoPixelStaveRing(InDetDD::PixelDetectorManager *ddmgr, PixelGeometryManager *mgr, GeoModelIO::ReadGeoModel *sqliteReader, std::shared_ptr< std::map< std::string, GeoFullPhysVol * > > mapFPV, std::shared_ptr< std::map< std::string, GeoAlignableTransform * > > mapAX)
GeoVPhysVol * m_physVol
std::shared_ptr< std::map< std::string, GeoFullPhysVol * > > m_mapFPV
std::shared_ptr< std::map< std::string, GeoAlignableTransform * > > m_mapAX
GeoModelIO::ReadGeoModel * m_sqliteReader
PixelGeometryManager * m_gmt_mgr
InDetDD::PixelDetectorManager * m_DDmgr
InDetMaterialManager * m_mat_mgr
GeoVPixelFactory(InDetDD::PixelDetectorManager *ddmgr, PixelGeometryManager *mgr, GeoModelIO::ReadGeoModel *sqliteReader, std::shared_ptr< std::map< std::string, GeoFullPhysVol * > > mapFPV, std::shared_ptr< std::map< std::string, GeoAlignableTransform * > > mapAX)
Dedicated detector manager extending the functionality of the SiDetectorManager with dedicated pixel ...
STL namespace.