ATLAS Offline Software
Loading...
Searching...
No Matches
CaloBlueprintNodeBuilder.h
Go to the documentation of this file.
1/*
2 Copyright (C) 2002-2026 CERN for the benefit of the ATLAS collaboration
3*/
4
5#ifndef ACTSGEOMETRY_CALOBLUEPRINTNODEBUILDER_H
6#define ACTSGEOMETRY_CALOBLUEPRINTNODEBUILDER_H
7
10
11#include "Acts/Surfaces/CylinderSurface.hpp"
12#include "Acts/Surfaces/DiscSurface.hpp"
13#include "Acts/Surfaces/Surface.hpp"
15#include "CaloDetDescr/CaloDetDescrElement.h"
16
17#include <map>
18#include <string>
19#include <vector>
20#include <memory>
21
22using caloSampleSurfaceMap_t = std::map<std::pair<std::string, CaloCell_ID::CaloSample>, std::vector<std::shared_ptr<Acts::Surface> > >;
23using caloSampleDDEElementsMap_t = std::map<std::pair<std::string, CaloCell_ID::CaloSample>, std::vector<const CaloDetDescrElement*> >;
24using caloDimensionMap_t = std::map<std::string, double>;
25
26namespace ActsTrk {
27
29
33 class CaloBlueprintNodeBuilder : public extends<AthAlgTool, IBlueprintNodeBuilder> {
34 public:
35 StatusCode initialize() override;
36 StatusCode finalize() override;
37 using base_class::base_class;
38
42 std::shared_ptr<Acts::Experimental::BlueprintNode> buildBlueprintNode(const Acts::GeometryContext& gctx,
43 std::shared_ptr<Acts::Experimental::BlueprintNode>&& childNode) override;
44
45 private:
46
53 void fillMaps(std::map<caloRegion, caloSampleSurfaceMap_t>& caloRegionSampleSurfaceMap,
54 std::map<caloRegion, caloSampleDDEElementsMap_t>& caloRegionSampleDDEElementsMap) const;
55
61 void generateCylinderSurfaces(caloSampleSurfaceMap_t& caloSampleSurfaceMap, caloSampleDDEElementsMap_t& caloSampleDDEElementsMap, bool asymmetricZ) const;
62
67 std::shared_ptr<Acts::CylinderSurface> generateCylinderSurface(const double& maxLArBRadius, const double& minLArBRadius, const double& lowZLarB, const double& highZLarB, bool asymmetricZ) const;
68
74 void addCylindricalTrackingVolumeToCaloNode(Acts::Experimental::CylinderContainerBlueprintNode& containerNode, const std::string& volumeName,const std::vector<std::shared_ptr<Acts::Surface>>& surfaces, int layerIndex, const bool& isDisc) const;
75
76 void generateDiscSurfaces(caloSampleSurfaceMap_t& caloSampleSurfaceMap, caloSampleDDEElementsMap_t& caloSampleDDEElementsMap) const;
77
78 std::shared_ptr<Acts::DiscSurface> generateDiscSurface(const double& z, const double& maxLArBRadius, const double& minLArBRadius) const;
79
80 std::unique_ptr<CaloDetDescrManager> m_caloDetSecrMgr;
81
82 //create lists from all possible calo samplings that tracks could hit
83 //The first list is for disc shaped samples and the second for cylindrical shaped samples
84 //Note that TileGap3 is the barrel, but is disk shaped.
85 std::vector<std::pair<std::string, CaloCell_ID::CaloSample>> m_caloDiscSampleList{
86 {"PreSamplerE", CaloCell_ID::PreSamplerE},
87 {"EME1",CaloCell_ID::EME1},
88 {"EME2",CaloCell_ID::EME2},
89 {"EME3",CaloCell_ID::EME3},
90 {"HEC0",CaloCell_ID::HEC0},
91 {"HEC1",CaloCell_ID::HEC1},
92 {"HEC2",CaloCell_ID::HEC2},
93 {"HEC3",CaloCell_ID::HEC3},
94 {"TileGap3",CaloCell_ID::TileGap3}};
95
96 std::vector<std::pair<std::string, CaloCell_ID::CaloSample>> m_caloCylinderSymmetricSampleList{
97 { "PreSamplerB", CaloCell_ID::PreSamplerB},
98 {"EMB1", CaloCell_ID::EMB1},
99 {"EMB2", CaloCell_ID::EMB2},
100 {"EMB3", CaloCell_ID::EMB3},
101 {"TileBar0", CaloCell_ID::TileBar0},
102 {"TileBar1", CaloCell_ID::TileBar1},
103 {"TileBar2", CaloCell_ID::TileBar2}};
104
105 std::vector<std::pair<std::string, CaloCell_ID::CaloSample>> m_caloCylinderAsymmetricSampleList{
106 {"TileGap1", CaloCell_ID::TileGap1},
107 {"TileGap2", CaloCell_ID::TileGap2},
108 {"TileExt0", CaloCell_ID::TileExt0},
109 {"TileExt1", CaloCell_ID::TileExt1},
110 {"TileExt2", CaloCell_ID::TileExt2}};
111
112 Gaudi::Property<double> m_radiusTolerance { this
113 , "RadiusTolerance"
114 , 2.0
115 , "Tolerance for determining if a ring of cells in phi has changed the radius w.r.t to the previous ring in phi" };
116
117 Gaudi::Property<double> m_zTolerance { this
118 , "ZTolerance"
119 , 2.0
120 , "Tolerance for determining if a ring of cells in phi has changed the z w.r.t to the previous ring in phi" };
121
122 // TODO: Temporary function to get the sample name from the enum value.
123 std::string getSampleName(CaloCell_ID::CaloSample currentSample) const {
124 std::string sampleName = "";
125 for ( auto& [name, sample] : m_caloCylinderSymmetricSampleList) {
126 if (currentSample == sample) {
127 sampleName = name;
128 break;
129 }
130 }
131 if (sampleName == "") {
132 for ( auto& [name, sample] : m_caloCylinderAsymmetricSampleList) {
133 if (currentSample == sample) {
134 sampleName = name;
135 break;
136 }
137 }
138 }
139 if (sampleName == "") {
140 for ( auto& [name, sample] : m_caloDiscSampleList) {
141 if (currentSample == sample) {
142 sampleName = name;
143 break;
144 }
145 }
146 }
147 return sampleName;
148 }
149 // TODO: Temporary function to get the sample enum value from the name.
150 CaloCell_ID::CaloSample getSampleEnum(const std::string& sampleName) const {
151 CaloCell_ID::CaloSample sampleEnum = CaloCell_ID::Unknown;
152 for (auto& [name, sample] : m_caloCylinderSymmetricSampleList) {
153 if (sampleName == name) {
154 sampleEnum = sample;
155 break;
156 }
157 }
158 if (sampleEnum == CaloCell_ID::Unknown) {
159 for (auto& [name, sample] : m_caloCylinderAsymmetricSampleList) {
160 if (sampleName == name) {
161 sampleEnum = sample;
162 break;
163 }
164 }
165 }
166 if (sampleEnum == CaloCell_ID::Unknown) {
167 for (auto& [name, sample] : m_caloDiscSampleList) {
168 if (sampleName == name) {
169 sampleEnum = sample;
170 break;
171 }
172 }
173 }
174 return sampleEnum;
175 }
176
177
178 };
179}
180#endif
std::map< std::string, double > caloDimensionMap_t
std::map< std::pair< std::string, CaloCell_ID::CaloSample >, std::vector< std::shared_ptr< Acts::Surface > > > caloSampleSurfaceMap_t
std::map< std::pair< std::string, CaloCell_ID::CaloSample >, std::vector< const CaloDetDescrElement * > > caloSampleDDEElementsMap_t
Definition of CaloDetDescrManager.
#define z
Builds the Calo Blueprint Node.
void fillMaps(std::map< caloRegion, caloSampleSurfaceMap_t > &caloRegionSampleSurfaceMap, std::map< caloRegion, caloSampleDDEElementsMap_t > &caloRegionSampleDDEElementsMap) const
fillMaps fills two maps.
std::vector< std::pair< std::string, CaloCell_ID::CaloSample > > m_caloDiscSampleList
std::string getSampleName(CaloCell_ID::CaloSample currentSample) const
void addCylindricalTrackingVolumeToCaloNode(Acts::Experimental::CylinderContainerBlueprintNode &containerNode, const std::string &volumeName, const std::vector< std::shared_ptr< Acts::Surface > > &surfaces, int layerIndex, const bool &isDisc) const
addCylindricalTrackingVolumeToCaloNode adds a cylindrical tracking volume to the calo node.
std::shared_ptr< Acts::CylinderSurface > generateCylinderSurface(const double &maxLArBRadius, const double &minLArBRadius, const double &lowZLarB, const double &highZLarB, bool asymmetricZ) const
generateCylinderSurface generates a cylindrical surface for a given set of parameters.
std::shared_ptr< Acts::DiscSurface > generateDiscSurface(const double &z, const double &maxLArBRadius, const double &minLArBRadius) const
std::vector< std::pair< std::string, CaloCell_ID::CaloSample > > m_caloCylinderAsymmetricSampleList
void generateCylinderSurfaces(caloSampleSurfaceMap_t &caloSampleSurfaceMap, caloSampleDDEElementsMap_t &caloSampleDDEElementsMap, bool asymmetricZ) const
generateCylinderSurfaces generates cylindrical surfaces for each calo sampling.
std::vector< std::pair< std::string, CaloCell_ID::CaloSample > > m_caloCylinderSymmetricSampleList
std::shared_ptr< Acts::Experimental::BlueprintNode > buildBlueprintNode(const Acts::GeometryContext &gctx, std::shared_ptr< Acts::Experimental::BlueprintNode > &&childNode) override
Build the Itk Blueprint Node.
std::unique_ptr< CaloDetDescrManager > m_caloDetSecrMgr
CaloCell_ID::CaloSample getSampleEnum(const std::string &sampleName) const
void generateDiscSurfaces(caloSampleSurfaceMap_t &caloSampleSurfaceMap, caloSampleDDEElementsMap_t &caloSampleDDEElementsMap) const
CaloSampling::CaloSample CaloSample
Definition CaloCell_ID.h:53
The AlignStoreProviderAlg loads the rigid alignment corrections and pipes them through the readout ge...