ATLAS Offline Software
Loading...
Searching...
No Matches
CaloTTMgrDetDescrCnv.cxx
Go to the documentation of this file.
1/*
2 Copyright (C) 2002-2026 CERN for the benefit of the ATLAS collaboration
3*/
4
5/***************************************************************************
6 Calo Trigger Tower Manager converter package
7 --------------------------------------------
8 ***************************************************************************/
9
10
12
13// infrastructure includes
16
17// detdescr includes
22
26#include "CaloDetDescr/CaloDetDescrElement.h"
28
29// Instantiation of a static factory class used by clients to create
30// instances of this service
31
32long int
34{
35 return (storageType());
36}
37
38StatusCode
40{
41 ATH_MSG_DEBUG("in initialize");
42 // First call parent init
43 ATH_CHECK(DetDescrConverter::initialize());
44
45 // The following is an attempt to "bootstrap" the loading of a
46 // proxy for CaloTTDescrManager into the detector store. However,
47 // CaloTTMgrDetDescrCnv::initialize is NOT called by the conversion
48 // service. So for the moment, this cannot be use. Instead the
49 // DetDescrCnvSvc must do the bootstrap from a parameter list.
50
51
52// // Add CaloTTDescrManager proxy as entry point to the detector store
53// // - this is ONLY needed for the manager of each system
54// sc = addToDetStore(classID(), "CaloTTDescrManager");
55// if (sc.isFailure()) {
56// log << MSG::FATAL << "Unable to add proxy for CaloTTDescrManager to the Detector Store!" << endmsg;
57// return StatusCode::FAILURE;
58// } else {}
59
60 return StatusCode::SUCCESS;
61}
62
63//--------------------------------------------------------------------
64
65StatusCode
67{
68 ATH_MSG_DEBUG("in finalize");
69 return StatusCode::SUCCESS;
70}
71
72//--------------------------------------------------------------------
73
74StatusCode
75CaloTTMgrDetDescrCnv::createObj(IOpaqueAddress* /*pAddr*/, DataObject*& pObj)
76{
77 ATH_MSG_INFO("in createObj: creating a CaloTTDescrManager object in the detector store");
78
79 // Create a new CaloTTDescrManager
80 CaloTTDescrManager* caloTTMgr = new CaloTTDescrManager();
81
82 // Pass a pointer to the container to the Persistency service by reference.
83 pObj = SG::asStorable(caloTTMgr);
84
85 // Get idhelper from detector store and add to mgr
86 const CaloLVL1_ID* lvl1_id = nullptr;
87 ATH_CHECK(detStore()->retrieve(lvl1_id, "CaloLVL1_ID"));
88 caloTTMgr->set_helper(lvl1_id);
89 ATH_MSG_INFO("Set CaloLVL1_ID helper in CaloTTMgr ");
90
91 // Get CaloDetDescrManager from condition store
92 // to build geometry of trigger towers
93 //
94 // NB! The information retrieved from the CaloDetDescrManager is NOT sensitive
95 // to Calo alignment changes. Hence, it is OK to write CaloTTDescrManager
96 // into DetStore
97 SG::ReadCondHandleKey<CaloDetDescrManager> caloMgrKey {"CaloDetDescrManager"};
98 ATH_CHECK(caloMgrKey.initialize());
99 SG::ReadCondHandle<CaloDetDescrManager> caloMgrHandle{caloMgrKey};
100 const CaloDetDescrManager* caloMgr = *caloMgrHandle;
101
102 SmartIF<IToolSvc> toolSvc{service("ToolSvc")};
103 ATH_CHECK(toolSvc.isValid());
104
105 CaloTriggerTowerService* ttSvc{nullptr};
106 ATH_CHECK(toolSvc->retrieveTool("CaloTriggerTowerService",ttSvc));
107
108 // Initialize the caloTT mgr
109 // We protect here in case this has been initialized elsewhere
110
111 if (!caloTTMgr->is_initialized()) {
112
113 ATH_MSG_DEBUG("Initializing CaloTTMgr from values in CaloTTMgrDetDescrCnv");
114
115 int numberOfIdRegions=0;
116 int numberOfDescrRegions=0;
117 int nEmb=0;
118 int nEmec=0;
119 int nHec=0;
120 int nFcal=0;
121
122 // Initialize the manager ...
123 const CaloLVL1_ID* lvl1_helper = lvl1_id;
124
125 std::vector<Identifier>::const_iterator itId = lvl1_id->region_begin();
126 std::vector<Identifier>::const_iterator itIdEnd = lvl1_id->region_end();
127
128 for(; itId!=itIdEnd;++itId){
129 Identifier regId = *itId;
130 ++numberOfIdRegions;
131 int posNeg = lvl1_helper->pos_neg_z(regId);
132 // int sampling = lvl1_helper->sampling(regId);
133 int region = lvl1_helper->region(regId);
134 int halfNphi = (lvl1_helper->phi_max(regId)+1)/2;
135 int nLay = lvl1_helper->layer_max(regId)+1;
136
137 // create Descriptors for both LAr and Tile
138 CaloTTDescriptor* calo_descriptor = new CaloTTDescriptor() ;
139 calo_descriptor->set(regId);
140
141 if( 0 == region ) {
142 // calo_descriptor->set(0. ,2.5,0.1,-M_PI,M_PI,M_PI/halfNphi,posNeg,nLay);
143 calo_descriptor->set(0. ,2.5,0.1,0.,2.*M_PI,M_PI/halfNphi,posNeg,nLay);
144 } else if( 1 == region ) {
145 // calo_descriptor->set(2.5,3.1,0.2,-M_PI,M_PI,M_PI/halfNphi,posNeg,nLay);
146 calo_descriptor->set(2.5,3.1,0.2,0.,2.*M_PI,M_PI/halfNphi,posNeg,nLay);
147 } else if( 2 == region ) {
148 // calo_descriptor->set(3.1,3.2,0.1,-M_PI,M_PI,M_PI/halfNphi,posNeg,nLay);
149 calo_descriptor->set(3.1,3.2,0.1,0.,2.*M_PI,M_PI/halfNphi,posNeg,nLay);
150 } else if( 3 == region ) {
151 // calo_descriptor->set(3.2,4.9,0.4,-M_PI,M_PI,M_PI/halfNphi,posNeg,nLay);
152 calo_descriptor->set(3.2,4.9,0.4,0.,2.*M_PI,M_PI/halfNphi,posNeg,nLay);
153 }
154
155 // Initialize
156 caloTTMgr->add(calo_descriptor);
157
158 // now, create CaloTTDescrRegions for LAr only
159 // Loop on TTs of this region and create CaloTTDescrRegion's (equiv. to cell's CaloDDE for TT)
160 int maxEta=calo_descriptor->nEta();
161 for(int iEta=0;iEta<maxEta;++iEta) {
162
163 int maxPhi=calo_descriptor->nPhi();
164 for(int iPhi=0;iPhi<maxPhi;++iPhi) {
165
166 Identifier TTid = lvl1_helper->tower_id(regId,iEta,iPhi);
167 if(!lvl1_helper->is_tile(TTid)) {
168
169 int maxLay=calo_descriptor->nLay();
170 for(int iLay=0;iLay<maxLay;++iLay) {
171
172 Identifier layId = lvl1_helper->layer_id(TTid,iLay);
173 bool isFCAL(0), isEC(0);
174 if(lvl1_helper->is_fcal(layId)) {
175 isFCAL=true;
176 }
177 else if(lvl1_helper->is_emec(layId) || lvl1_helper->is_hec(layId)) {
178 isEC=true;
179 }
180 if (this->msgLvl(MSG::DEBUG)) {
181 if(lvl1_helper->is_emb(layId) || lvl1_helper->is_barrel_end(layId) ) {
182 ++nEmb;
183 ATH_MSG_DEBUG(" Found EMB TT " << lvl1_helper->show_to_string(layId));
184 }
185 else if(lvl1_helper->is_emec(layId)) {
186 ++nEmec;
187 ATH_MSG_DEBUG(" Found EMEC TT " << lvl1_helper->show_to_string(layId));
188 }
189 else if(lvl1_helper->is_hec(layId)) {
190 ++nHec;
191 ATH_MSG_DEBUG(" Found HEC TT " << lvl1_helper->show_to_string(layId));
192 }
193 else { // FCAL
194 ++nFcal;
195 ATH_MSG_DEBUG(" Found FCAL TT " << lvl1_helper->show_to_string(layId));
196 }
197 }
198
199 double dEta=calo_descriptor->deta();
200 double eta=calo_descriptor->eta_min()+(iEta+0.5)*dEta;
201 eta*=calo_descriptor->sign_eta();
202
203 double dPhi=calo_descriptor->dphi();
204 // beware of the -pi,pi convention
205 // fixed thanks to Denis Damazio when integrating LArRegionSelector
206 // float orig=-M_PI;
207 float orig=0.;
208 double phi=calo_descriptor->phiMin() + (iPhi+0.5)*dPhi + orig;
209 if(phi>=M_PI) {phi-=2.*M_PI;}
210 if(phi<-M_PI) {phi+=2.*M_PI;}
211
212
213 float rhoMin=99999.;
214 float rhoMax=0.;
215 float zMin=99999.;
216 float zMax=-99999.;
217
218 //int atlas_tb=0;
219 std::vector<Identifier> vec = ttSvc->createCellIDvecLayer(layId);
220
221 if(vec.size() > 0) {
222 numberOfDescrRegions++;
223 std::vector<Identifier>::const_iterator it = vec.begin();
224 std::vector<Identifier>::const_iterator it_end = vec.end();
225 for(;it!=it_end;++it) {
226 Identifier offId = (*it);
227 const CaloDetDescrElement* caloDDE =
228 caloMgr->get_element(offId);
229 double rho =caloDDE->r_raw();
230 double cDrho=caloDDE->dr();
231 double z =caloDDE->z_raw();
232 double cDz =caloDDE->dz();
233
234 if( (rho-cDrho/2.)<rhoMin ) {rhoMin=std::max(rho-cDrho/2.,0.);}
235 if( (rho+cDrho/2.)>rhoMax ) {rhoMax=rho+cDrho/2.;}
236 if( (z-cDz/2.)<zMin ) {zMin=z-cDz/2.;}
237 if( (z+cDz/2.)>zMax ) {zMax=z+cDz/2.;}
238 } // end loop on vector elements
239
240
241 CaloTTDescrRegion* tt_region = new CaloTTDescrRegion(layId,calo_descriptor);
242 if(isFCAL) {
243 // FIX ME !?
244 tt_region->set_cylindric(eta,phi,(zMax+zMin)/2.);
245 tt_region->set_cylindric_size(dEta,dPhi,fabs(zMax-zMin));
246 } else if(isEC) {
247 tt_region->set_cylindric(eta,phi,(zMax+zMin)/2.);
248 tt_region->set_cylindric_size(dEta,dPhi,fabs(zMax-zMin));
249 } else {
250 tt_region->set_spherical(eta,phi,(rhoMax+rhoMin)/2.);
251 tt_region->set_spherical_size(dEta,dPhi,fabs(rhoMax-rhoMin));
252 }
253
254 caloTTMgr->add(tt_region);
255
256 } // end condition of vec size
257 else {
258 ATH_MSG_DEBUG(" Found no cell for TT " << lvl1_helper->show_to_string(layId));
259 }
260 } // end loop on layers
261 } // end condition against tile
262 } // end loop on phi
263 } // end loop on eta
264 } // end loop on descr_regions
265
266 // Set to initialized state only if descriptors have been found
267 if (caloTTMgr->calo_descriptors_size () > 0) caloTTMgr->initialize();
268
269 ATH_MSG_INFO(" Initialized CaloTTMgr, number of descr regions is " << numberOfDescrRegions);
270 ATH_MSG_DEBUG(" including "
271 << nEmb << " Em Barrel "
272 << nEmec << " Em EC "
273 << nHec << " HEC "
274 << nFcal << " FCAL ");
275 ATH_MSG_DEBUG(" number of helper regions= " << numberOfIdRegions);
276 } // end of condition !is_initialized()
277
278 return StatusCode::SUCCESS;
279}
280
281//--------------------------------------------------------------------
282
283long
288
289//--------------------------------------------------------------------
290CLID
294
295//--------------------------------------------------------------------
300
#define M_PI
Scalar eta() const
pseudorapidity method
Scalar phi() const
phi method
#define ATH_CHECK
Evaluate an expression and check for errors.
#define ATH_MSG_INFO(x)
#define ATH_MSG_DEBUG(x)
Definition of CaloDetDescrManager.
std::vector< size_t > vec
const long DetDescr_StorageType
uint32_t CLID
The Class ID type.
#define z
bool msgLvl(const MSG::Level lvl) const
Test the output level.
std::string show_to_string(Identifier id, const IdContext *context=0, char sep='.') const
or provide the printout in string form
This class groups all DetDescr information related to a CaloCell.
const CaloDetDescrElement * get_element(const Identifier &cellId) const
get element by its identifier
This class provides the client interface for accessing the detector description information common to...
Helper class for offline TT identifiers.
Definition CaloLVL1_ID.h:66
bool is_barrel_end(const Identifier id) const
Test wether given tower or layer is part of the EM barrel END.
int phi_max(const Identifier regId) const
min value of phi index (-999 == failure)
int region(const Identifier id) const
return region according to :
bool is_emb(const Identifier id) const
Test wether given tower or layer is part of the EM barrel.
bool is_tile(const Identifier id) const
Test wether given tower or layer is part of the Tile Calorimeter.
bool is_emec(const Identifier id) const
Test wether given tower or layer is part of the EM end-cap.
id_iterator region_begin() const
begin iterator over regions
int layer_max(const Identifier regId) const
max value of phi index (-999 == failure)
bool is_fcal(const Identifier id) const
Test wether given tower or layer is part of the FCAL.
id_iterator region_end() const
end iterator over regions
bool is_hec(const Identifier id) const
Test wether given tower or layer is part of the HEC.
int pos_neg_z(const Identifier id) const
return pos_neg_z according to :
Identifier tower_id(int pos_neg_z, int sampling, int region, int eta, int phi) const
build a tower identifier
Identifier layer_id(int pos_neg_z, int sampling, int region, int eta, int phi, int layer) const
build a layer identifier
This class is used to build the CaloTTDescriptors and CaloTTDetDescrRegions carrying the geometry inf...
void add(CaloTTDescrRegion *region)
Insertion in the vector of Det Descr regions (== Trigger Towers).
calo_descr_size calo_descriptors_size(void) const
Total number of descriptors.
void set_helper(const CaloLVL1_ID *id_helper)
set the helper used to decode the TT offline identifiers
void initialize(void)
dummy.
bool is_initialized(void) const
This class provides an interface to the geometrical description of the Calorimeter Trigger Towers.
void set_spherical_size(double deta, double dphi, double drho)
set size of the Det Descr region – pseudo spherical system; eta is signed, rho is unsigned
void set_cylindric_size(double deta, double dphi, double dz)
set size of the Det Descr region – pseudo cylindrical system; eta is signed, z as well (same sign)
void set_spherical(double eta, double phi, double rho)
set coordinates of the Det Descr region – pseudo spherical system; eta is signed, rho is unsigned
void set_cylindric(double eta, double phi, double z)
set coordinates of the Det Descr region – pseudo cylindrical system; eta is signed,...
This class holds the Calorimeter TriggerTower geometrical description.
void set(const Identifier &id)
set internal data member m_id (which is unused.
short nPhi() const
descriptor parameter: number of phi bins
float deta() const
descriptor parameter: eta granularity
short nLay() const
descriptor parameter: number of layers
int sign_eta() const
descriptor parameter: sign of eta (+-1)
float dphi() const
descriptor parameter: phi granularity
short nEta() const
descriptor parameter: number of eta bins
float phiMin() const
descriptor parameter: min value of phi
float eta_min() const
descriptor parameter: min value of abs(eta)
virtual StatusCode finalize() override
CaloTTMgrDetDescrCnv(ISvcLocator *svcloc)
virtual long int repSvcType() const override
virtual StatusCode createObj(IOpaqueAddress *pAddr, DataObject *&pObj) override
virtual StatusCode initialize() override
Tool providing the mapping of the online and offline TriggerTower identifiers as well as the TT-cells...
std::vector< Identifier > createCellIDvecLayer(const Identifier &id) const
Return a vector of offline Identifiers (corresponding helpers = LArEM_ID, LArHEC_ID,...
DetDescrConverter(const CLID &myCLID, ISvcLocator *svcloc, const char *name=nullptr)
const ServiceHandle< StoreGateSvc > & detStore() const
Handle to DetectorStore.
StatusCode initialize(bool used=true)
DataObject * asStorable(SG::DataObjectSharedPtr< T > pObject)
Default, invalid implementation of ClassID_traits.