79{
80 ATH_MSG_INFO(
"in createObj: creating a CaloTTDescrManager object in the detector store");
81
82
83 CaloTTDescrManager* caloTTMgr = new CaloTTDescrManager();
84
85
87
88
89
90 const CaloLVL1_ID* lvl1_id = nullptr;
94
95
96
97
98
99
100
101 SG::ReadCondHandleKey<CaloDetDescrManager> caloMgrKey {"CaloDetDescrManager"};
103 SG::ReadCondHandle<CaloDetDescrManager> caloMgrHandle{caloMgrKey};
104 const CaloDetDescrManager* caloMgr = *caloMgrHandle;
105
106 SmartIF<IToolSvc> toolSvc{service("ToolSvc")};
108
109 CaloTriggerTowerService* ttSvc{nullptr};
110 ATH_CHECK(toolSvc->retrieveTool(
"CaloTriggerTowerService",ttSvc));
111
112
113
114
116
117 ATH_MSG_DEBUG(
"Initializing CaloTTMgr from values in CaloTTMgrDetDescrCnv");
118
119 int numberOfIdRegions=0;
120 int numberOfDescrRegions=0;
121 int nEmb=0;
122 int nEmec=0;
123 int nHec=0;
124 int nFcal=0;
125
126
127 const CaloLVL1_ID* lvl1_helper = lvl1_id;
128
129 std::vector<Identifier>::const_iterator itId = lvl1_id->
region_begin();
130 std::vector<Identifier>::const_iterator itIdEnd = lvl1_id->
region_end();
131
132 for(; itId!=itIdEnd;++itId){
133 Identifier regId = *itId;
134 ++numberOfIdRegions;
136
137 int region = lvl1_helper->
region(regId);
138 int halfNphi = (lvl1_helper->
phi_max(regId)+1)/2;
139 int nLay = lvl1_helper->
layer_max(regId)+1;
140
141
142 CaloTTDescriptor* calo_descriptor = new CaloTTDescriptor() ;
143 calo_descriptor->
set(regId);
144
145 if( 0 == region ) {
146
147 calo_descriptor->
set(0. ,2.5,0.1,0.,2.*
M_PI,
M_PI/halfNphi,posNeg,nLay);
148 } else if( 1 == region ) {
149
150 calo_descriptor->
set(2.5,3.1,0.2,0.,2.*
M_PI,
M_PI/halfNphi,posNeg,nLay);
151 } else if( 2 == region ) {
152
153 calo_descriptor->
set(3.1,3.2,0.1,0.,2.*
M_PI,
M_PI/halfNphi,posNeg,nLay);
154 } else if( 3 == region ) {
155
156 calo_descriptor->
set(3.2,4.9,0.4,0.,2.*
M_PI,
M_PI/halfNphi,posNeg,nLay);
157 }
158
159
160 caloTTMgr->
add(calo_descriptor);
161
162
163
166
167 int maxPhi=calo_descriptor->
nPhi();
168 for(
int iPhi=0;
iPhi<maxPhi;++
iPhi) {
169
170 Identifier TTid = lvl1_helper->
tower_id(regId,iEta,iPhi);
171 if(!lvl1_helper->
is_tile(TTid)) {
172
173 int maxLay=calo_descriptor->
nLay();
174 for(int iLay=0;iLay<maxLay;++iLay) {
175
176 Identifier layId = lvl1_helper->
layer_id(TTid,iLay);
178 if(lvl1_helper->
is_fcal(layId)) {
180 }
181 else if(lvl1_helper->
is_emec(layId) || lvl1_helper->
is_hec(layId)) {
182 isEC=true;
183 }
184 if (this->
msgLvl(MSG::DEBUG)) {
186 ++nEmb;
188 }
189 else if(lvl1_helper->
is_emec(layId)) {
190 ++nEmec;
192 }
193 else if(lvl1_helper->
is_hec(layId)) {
194 ++nHec;
196 }
197 else {
198 ++nFcal;
200 }
201 }
202
203 double dEta=calo_descriptor->
deta();
206
207 double dPhi=calo_descriptor->
dphi();
208
209
210
211 float orig=0.;
212 double phi=calo_descriptor->
phiMin() + (
iPhi+0.5)*dPhi + orig;
215
216
217 float rhoMin=99999.;
218 float rhoMax=0.;
219 float zMin=99999.;
220 float zMax=-99999.;
221
222
224
226 numberOfDescrRegions++;
227 std::vector<Identifier>::const_iterator
it =
vec.begin();
228 std::vector<Identifier>::const_iterator it_end =
vec.end();
229 for(;
it!=it_end;++
it) {
230 Identifier offId = (*it);
231 const CaloDetDescrElement* caloDDE =
234 double cDrho=caloDDE->
dr();
235 double z =caloDDE->
z_raw();
236 double cDz =caloDDE->
dz();
237
238 if( (rho-cDrho/2.)<rhoMin ) {rhoMin=std::max(rho-cDrho/2.,0.);}
239 if( (rho+cDrho/2.)>rhoMax ) {rhoMax=
rho+cDrho/2.;}
240 if( (
z-cDz/2.)<zMin ) {zMin=
z-cDz/2.;}
241 if( (
z+cDz/2.)>zMax ) {zMax=
z+cDz/2.;}
242 }
243
244
245 CaloTTDescrRegion* tt_region = new CaloTTDescrRegion(layId,calo_descriptor);
246 if(isFCAL) {
247
250 } else if(isEC) {
253 } else {
256 }
257
258 caloTTMgr->
add(tt_region);
259
260 }
261 else {
263 }
264 }
265 }
266 }
267 }
268 }
269
270
272
273 ATH_MSG_INFO(
" Initialized CaloTTMgr, number of descr regions is " << numberOfDescrRegions);
275 << nEmb << " Em Barrel "
276 << nEmec << " Em EC "
277 << nHec << " HEC "
278 << nFcal << " FCAL ");
279 ATH_MSG_DEBUG(
" number of helper regions= " << numberOfIdRegions);
280 }
281
282 return StatusCode::SUCCESS;
283}
Scalar eta() const
pseudorapidity method
Scalar phi() const
phi method
#define ATH_CHECK
Evaluate an expression and check for errors.
std::vector< size_t > vec
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
float r_raw() const
cell r_raw
float z_raw() const
cell z_raw
const CaloDetDescrElement * get_element(const Identifier &cellId) const
get element by its identifier
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
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
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,...
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)
std::vector< Identifier > createCellIDvecLayer(const Identifier &id) const
Return a vector of offline Identifiers (corresponding helpers = LArEM_ID, LArHEC_ID,...
const ServiceHandle< StoreGateSvc > & detStore() const
Handle to DetectorStore.
StatusCode initialize(bool used=true)
DataObject * asStorable(SG::DataObjectSharedPtr< T > pObject)
bool dPhi(const xAOD::TauJet &tau, const xAOD::CaloVertexedTopoCluster &cluster, float &out)
bool dEta(const xAOD::TauJet &tau, const xAOD::CaloVertexedTopoCluster &cluster, float &out)
retrieve(aClass, aKey=None)
bool isFCAL(const xAOD::CaloCluster *cluster)
return true if the cluster (or the majority of its energy) is in the FCAL0
setScale setgFexType iEta