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;
58 void fillCaloDimensionsMap(caloDimensionMap_t& caloDimensionsMap, caloSampleDDEElementsMap_t& caloSampleDDEElementsMap) const;
59
65 void generateCylinderSurfaces(caloSampleSurfaceMap_t& caloSampleSurfaceMap, caloSampleDDEElementsMap_t& caloSampleDDEElementsMap) const;
66
71 std::shared_ptr<Acts::CylinderSurface> generateCylinderSurface(const double& maxLArBRadius, const double& minLArBRadius, const double& lowZLarB, const double& highZLarB) const;
72
78 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;
79
80 void generateDiscSurfaces(caloSampleSurfaceMap_t& caloSampleSurfaceMap, caloSampleDDEElementsMap_t& caloSampleDDEElementsMap) const;
81
82 std::shared_ptr<Acts::DiscSurface> generateDiscSurface(const double& z, const double& maxLArBRadius, const double& minLArBRadius) const;
83
84 std::unique_ptr<CaloDetDescrManager> m_caloDetSecrMgr;
85
86 //create lists from all possible calo samplings that tracks could hit
87 //The first list is for disc shaped samples and the second for cylindrical shaped samples
88 //Note that TileGap3 is the barrel, but is disk shaped.
89 std::vector<std::pair<std::string, CaloCell_ID::CaloSample>> m_caloDiscSampleList{{"PreSamplerE", CaloCell_ID::PreSamplerE},
90 {"EME1",CaloCell_ID::EME1},
91 {"EME2",CaloCell_ID::EME2},
92 {"EME3",CaloCell_ID::EME3},
93 {"HEC0",CaloCell_ID::HEC0},
94 {"HEC1",CaloCell_ID::HEC1},
95 {"HEC2",CaloCell_ID::HEC2},
96 {"HEC3",CaloCell_ID::HEC3},
97 {"TileGap3",CaloCell_ID::TileGap3}};
98
99 std::vector<std::pair<std::string, CaloCell_ID::CaloSample>> m_caloCylinderSampleList{ { "PreSamplerB", CaloCell_ID::PreSamplerB},
100 {"EMB1", CaloCell_ID::EMB1},
101 {"EMB2", CaloCell_ID::EMB2},
102 {"EMB3", CaloCell_ID::EMB3},
103 {"TileBar0", CaloCell_ID::TileBar0},
104 {"TileBar1", CaloCell_ID::TileBar1},
105 {"TileBar2", CaloCell_ID::TileBar2},
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_caloCylinderSampleList) {
126 if (currentSample == sample) {
127 sampleName = name;
128 break;
129 }
130 }
131 if (sampleName == "") {
132 for ( auto& [name, sample] : m_caloDiscSampleList) {
133 if (currentSample == sample) {
134 sampleName = name;
135 break;
136 }
137 }
138 }
139 return sampleName;
140 }
141 // TODO: Temporary function to get the sample enum value from the name.
142 CaloCell_ID::CaloSample getSampleEnum(const std::string& sampleName) const {
143 CaloCell_ID::CaloSample sampleEnum = CaloCell_ID::Unknown;
144 for (auto& [name, sample] : m_caloCylinderSampleList) {
145 if (sampleName == name) {
146 sampleEnum = sample;
147 break;
148 }
149 }
150 if (sampleEnum == CaloCell_ID::Unknown) {
151 for (auto& [name, sample] : m_caloDiscSampleList) {
152 if (sampleName == name) {
153 sampleEnum = sample;
154 break;
155 }
156 }
157 }
158 return sampleEnum;
159 }
160
161
162 };
163}
164#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 fillCaloDimensionsMap(caloDimensionMap_t &caloDimensionsMap, caloSampleDDEElementsMap_t &caloSampleDDEElementsMap) const
fillCaloDimensionsMap fills a map of calorimeter dimensions for each sampling layer.
std::vector< std::pair< std::string, CaloCell_ID::CaloSample > > m_caloCylinderSampleList
void generateCylinderSurfaces(caloSampleSurfaceMap_t &caloSampleSurfaceMap, caloSampleDDEElementsMap_t &caloSampleDDEElementsMap) const
generateCylinderSurfaces generates cylindrical surfaces for each calo sampling.
std::shared_ptr< Acts::CylinderSurface > generateCylinderSurface(const double &maxLArBRadius, const double &minLArBRadius, const double &lowZLarB, const double &highZLarB) const
generateCylinderSurface generates a cylindrical surface for a given set of parameters.
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::DiscSurface > generateDiscSurface(const double &z, const double &maxLArBRadius, const double &minLArBRadius) const
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...