ATLAS Offline Software
Loading...
Searching...
No Matches
PixelClusteringTool.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// Tell clang not to allow spurious FPEs.
8
10
15#include <TrkSurfaces/Surface.h>
17
19
20#include <algorithm>
21#include <array>
22#include <cassert>
23#include <cstdint>
24#include <limits>
25#include <optional>
26#include <stdexcept>
27
28using CLHEP::micrometer;
29
30namespace {
32 template <typename T1, typename T2>
33 T1 check_integer_cast(T2 a) {
34 assert( std::in_range<T1>(a) );
35 return static_cast<T1>(a);
36 }
37
38 inline bool isFEI3(const InDetDD::PixelModuleDesign& design) {
40 }
41
42 template <typename IndexType>
43 inline std::optional<std::array<std::int16_t,2> >
44 getGangedCoordinates(const std::array<IndexType,2> &coordinates,
45 const InDetDD::PixelModuleDesign& design)
46 {
47 // If the pixel is ganged, returns a new identifier for it
48 InDetDD::SiCellId cellId(check_integer_cast<int>(coordinates[0]),check_integer_cast<int>(coordinates[1]));
49 InDetDD::SiReadoutCellId readoutId = design.readoutIdOfCell(cellId);
50 if ( design.numberOfConnectedCells( readoutId ) > 1 ) {
51 InDetDD::SiCellId gangedCellId = design.connectedCell( readoutId, 1 );
52 return std::array<std::int16_t,2>{ static_cast<std::int16_t>(gangedCellId.phiIndex()),
53 static_cast<std::int16_t>(gangedCellId.etaIndex())};
54 }
55 return std::nullopt;
56 }
57
58 // PixelRDO_Container
59 std::array<std::int16_t,2>
60 makeCellCoordinates(const std::array<InDetDD::PixelDiodeTree::CellIndexType,2> &diode_idx) {
61 return std::array<std::int16_t,2>{
62 check_integer_cast<std::int16_t>(diode_idx[0]),
63 check_integer_cast<std::int16_t>(diode_idx[1])};
64 }
65 // PixelRDO_Container
66 const std::array<InDetDD::PixelDiodeTree::CellIndexType,2> &
67 makeDiodeIdx(const std::array<InDetDD::PixelDiodeTree::CellIndexType,2> &diode_idx) {
68 return diode_idx;
69 }
70
71 // PhaseIIPixelRawDataContainer
72 std::array<std::int16_t,2>
73 makeCellCoordinates(const std::array<std::int16_t,2> &diode_idx) {
74 return diode_idx;
75 }
76 // PhaseIIPixelRawDataContainer
77 std::array<InDetDD::PixelDiodeTree::CellIndexType,2>
78 makeDiodeIdx(const std::array<std::int16_t,2> &diode_idx) {
79 return std::array<InDetDD::PixelDiodeTree::CellIndexType,2>{
80 check_integer_cast<InDetDD::PixelDiodeTree::CellIndexType>(diode_idx[0]),
81 check_integer_cast<InDetDD::PixelDiodeTree::CellIndexType>(diode_idx[1])};
82 }
83
85
86namespace ActsTrk {
87
88template <typename T_RDOContainer>
90{
91 ATH_MSG_DEBUG("Initializing " << this->name() << " ...");
92
97
98 ATH_CHECK(this->m_pixelLorentzAngleTool.retrieve());
99
100 ATH_CHECK(this->m_chargeDataKey.initialize(not m_chargeDataKey.empty()));
101
102 ATH_MSG_INFO(" Charge Data Key:" << m_chargeDataKey);
103 ATH_MSG_INFO(" ID Helper Name:" << m_idHelperName);
104
105 ATH_CHECK( this->detStore()->retrieve(m_pixelID, m_idHelperName) );
106
107 ATH_MSG_DEBUG(this->name() << " successfully initialized");
108 return StatusCode::SUCCESS;
109}
110
111template <typename T_RDOContainer>
113 const std::string& type, const std::string& name, const IInterface* parent)
114 : base_class(type,name,parent)
115{}
116
117
118template <typename T_RDOContainer>
119template <bool GANGED>
120std::pair<unsigned int, unsigned int>
122 const std::vector<IdentifierHash> &listOfIds,
123 const InDetDD::SiDetectorElementCollection &detector_elements) const {
126 const PixelID* pixelID)
127 -> unsigned int
128 {
129 unsigned int n_hits = RDOs.size();
130 if constexpr(GANGED) {
131 assert(elements.at(RDOs.identifyHash()));
132 assert(dynamic_cast<const InDetDD::PixelModuleDesign *>(&elements.at(RDOs.identifyHash())->design()) != nullptr);
133 const InDetDD::PixelModuleDesign &design = static_cast<const InDetDD::PixelModuleDesign &>(elements.at(RDOs.identifyHash())->design());
134 if (isFEI3(design)) {
135 for(RDOAdapter<T_RDOContainer> rdo : RDOs) {
136 if (rdo.isGanged(design, *pixelID)) {
137 ++n_hits;
138 }
139 }
140 }
141 }
142 return n_hits;
143 };
144 unsigned int n_hits=0u;
145 if (listOfIds.empty()) {
147 assert( RDOs.isValid());
148 n_hits += getNHits(*RDOs, detector_elements, m_pixelID);
149 }
150 }
151 else {
152 for (const IdentifierHash& id : listOfIds) {
153 if (not id.is_valid()) continue;
154 std::optional<RDOCollectionAdapter<T_RDOContainer> > RDOs = RDOCollectionAdapter<T_RDOContainer>::make(rdo_collection,id);
155 if (RDOs.has_value()) {
156 n_hits += getNHits(*(RDOs.value()), detector_elements, m_pixelID);
157 }
158 }
159 }
160 // the total number of hits is the best estimate of the maximum number of clusters.
161 // @TODO could apply a factor for the number clusters or only if the number of hits
162 // are above a certain threshold to reduce memory consumption though impact
163 // is likely small.
164 return {n_hits,n_hits};
165}
166
167template <typename T_RDOContainer>
168std::pair<unsigned int, unsigned int>
169PixelClusteringToolImpl<T_RDOContainer>::countCells(const T_RDOContainer& rdo_collection,
170 const std::vector<IdentifierHash> &listOfIds,
171 const InDetDD::SiDetectorElementCollection &detector_elements) const {
172 if (m_isITk || !m_checkGanged ) {
173 return countCellsImpl<false>(rdo_collection,listOfIds, detector_elements);
174 }
175 else {
176 return countCellsImpl<true>(rdo_collection,listOfIds, detector_elements);
177 }
178}
179
180template <typename T_RDOContainer>
181StatusCode
184 const InDetDD::SiDetectorElement& element,
185 const InDetDD::PixelModuleDesign& design,
187 const PixelChargeCalibCondData *calibData,
189 const double lorentzShift,
190 xAOD::PixelCluster::ClusterVars& clusterVars) const
191{
192 Amg::Vector2D pos_acc(0,0);
193 float tot_acc = 0.f;
194 //to start, set max to the min possible int and min to the max possible int
195 static constexpr InDetDD::PixelDiodeTree::CellIndexType defaultMax = std::numeric_limits<InDetDD::PixelDiodeTree::CellIndexType>::min();
196 static constexpr InDetDD::PixelDiodeTree::CellIndexType defaultMin = std::numeric_limits<InDetDD::PixelDiodeTree::CellIndexType>::max();
197 //
198 InDetDD::PixelDiodeTree::CellIndexType rowmax = defaultMax;
199 InDetDD::PixelDiodeTree::CellIndexType colmax = defaultMax;
200 InDetDD::PixelDiodeTree::CellIndexType rowmin = defaultMin;
201 InDetDD::PixelDiodeTree::CellIndexType colmin = defaultMin;
206
207 // We temporary comment this since it is not used
208 // bool hasGanged = false;
209 unsigned int n_rdos = clusterVars.rdoList.getBeginIndex(icluster);
210 assert( clusterVars.totList.getBeginIndex(icluster)==n_rdos );
211 assert( calibData==nullptr || clusterVars.chargeList.getBeginIndex(icluster)==n_rdos );
212
213 IdentifierHash idHash = element.identifyHash();
214 assert( idHash == cluster.identifyHash());
215 Identifier module_id = element.identify();
216 std::optional<Identifier::value_type> first_rdo_id;
217 int cluster_lvl1min = std::numeric_limits<int>::max();
218 float totalCharge = 0.f;
219
221 for (CellProxy cellProxy : cluster) {
222
223 //Construct the identifier class
224
225 // We temporary comment this since it is not used
226 // TODO: Check how the ganged info is used in legacy
227 // if (multiChip) {
228 // hasGanged = hasGanged ||
229 // m_pixelRDOTool->isGanged(id, element).has_value();
230 // }
231 assert(cellProxy.srcIndex() < rdos.size());
232
233 RDOAdapter<T_RDOContainer> rdo(rdos[cellProxy.srcIndex()]);
234 if constexpr(std::is_same_v<T_RDOContainer, PhaseIIPixelRawDataContainer>) {
235 assert( rdo.index() >= rdos.beginIndex() && rdo.index() < rdos.endIndex() );
236 }
237
238 Identifier rdo_id = rdo.computeIdentifier(*m_pixelID,module_id, cellProxy);
239 if (!first_rdo_id.has_value()) {
240 first_rdo_id=rdo_id.get_compact();
241 }
242
243 assert(rdo.getLVL1A()>=0 && rdo.getLVL1A() < std::numeric_limits<uint8_t>::max());
244 cluster_lvl1min = std::min(cluster_lvl1min, static_cast<int>(rdo.getLVL1A()) );
245
246 const int tot = rdo.getToT();
247 float charge = tot;
248
249 std::array<InDetDD::PixelDiodeTree::CellIndexType,2> diode_idx
250 = InDetDD::PixelDiodeTree::makeCellIndex(cellProxy.coordinates()[0],
251 cellProxy.coordinates()[1]);
253
254 if (calibData) {
255 // Retrieving the calibration only depends on FE and not per cell (can be further optimized)
256 // Single FE modules could have an optimized getCharge function where the calib constants are cached
257 std::uint32_t feValue = design.getFE(si_param);
258 auto diode_type = design.getDiodeType(si_param);
259 if (m_isITk){
260 // @TODO only check in makeClusters or check at all ?
262 ATH_MSG_ERROR("Chip type is not recognized!");
263 return StatusCode::FAILURE;
264 }
265
266 charge = calibData->getCharge(diode_type,
267 calibStrategy,
268 idHash,
269 feValue,
270 tot);
271 } else {
272 charge = calibData->getCharge(diode_type,
273 idHash,
274 feValue,
275 tot);
276
277 // These numbers are taken from the Cluster Maker Tool
278 if (design.getReadoutTechnology() != InDetDD::PixelReadoutTechnology::RD53 && (idHash < 12 or idHash > 2035)) {
279 charge = tot/8.0*(8000.0-1200.0)+1200.0;
280 }
281 }
282 clusterVars.chargeList.setValue(n_rdos,charge);
283 }
284 clusterVars.rdoList.setValue(n_rdos,rdo_id.get_compact());
285 clusterVars.totList.setValue(n_rdos,tot);
286 totalCharge += charge;
287 ++n_rdos;
288
289 const InDetDD::PixelDiodeTree::CellIndexType &row = diode_idx[0];
290 const InDetDD::PixelDiodeTree::CellIndexType &col = diode_idx[1];
291 if (row>rowmax) {
292 rowmax=row;
293 rowmax_diode = si_param;
294 }
295 if (row<rowmin) {
296 rowmin=row;
297 rowmin_diode = si_param;
298 }
299 if (col>colmax) {
300 colmax=col;
301 colmax_diode = si_param;
302 }
303 if (col<colmin) {
304 colmin=col;
305 colmin_diode = si_param;
306 }
307
308 // We compute the digital position as a sum of all RDO positions
309 // all with the same weight of 1
310 // We do not compute a charge-weighted center of gravity here (by default) since
311 // we observe it to be worse than the digital position
312 // ToT-weighted center of gravity must not be used
313 if (m_useWeightedPos) {
314 pos_acc += charge * si_param.position();
315 tot_acc += charge;
316 } else {
317 pos_acc += si_param.position();
318 tot_acc += 1;
319 }
320
321 } // loop on cluster's cells
322 assert(n_rdos>0); // clusters must not be empty
323 if (tot_acc > 0)
324 pos_acc /= tot_acc;
325
326 const long long diffCol = static_cast<long long>(colmax) - static_cast<long long>(colmin) + 1LL;
327 const long long diffRow = static_cast<long long>(rowmax) - static_cast<long long>(rowmin) + 1LL;
328 assert(std::in_range<int>(diffCol));
329 assert(std::in_range<int>(diffRow));
330 const int colWidth = static_cast<int>(diffCol);
331 const int rowWidth = static_cast<int>(diffRow);
332
333 double etaWidth = colmax_diode.xEtaMax() - colmin_diode.xEtaMin(); // design.widthFromColumnRange(colmin, colmax);
334 double phiWidth = rowmax_diode.xPhiMax() - rowmin_diode.xPhiMin(); // design.widthFromColumnRange(colmin, colmax);
335
336 // ask for Lorentz correction, get global position
337 const Amg::Vector2D localPos = pos_acc;
338 Amg::Vector2D locpos(localPos[Trk::locX]+lorentzShift, localPos[Trk::locY]);
339 // find global position of element
340 const Amg::Transform3D& T = element.surface().transform();
341 double Ax[3] = {T(0,0),T(1,0),T(2,0)};
342 double Ay[3] = {T(0,1),T(1,1),T(2,1)};
343 double R [3] = {T(0,3),T(1,3),T(2,3)};
344
345 const Amg::Vector2D& M = locpos;
346 Amg::Vector3D globalPos(M[0]*Ax[0]+M[1]*Ay[0]+R[0],M[0]*Ax[1]+M[1]*Ay[1]+R[1],M[0]*Ax[2]+M[1]*Ay[2]+R[2]);
347
348 // Compute error matrix
349 float width0, width1;
350 if (m_broadErrors) {
351 // Use cluster width
352 width0 = phiWidth;
353 width1 = etaWidth;
354 } else {
355 // Use average pixel width
356 width0 = phiWidth / rowWidth;
357 width1 = etaWidth / colWidth;
358 }
359
360 // Actually create the cluster (i.e. fill the values)
361
362 Eigen::Matrix<float,2,1> localPosition(locpos.x(), locpos.y());
363 Eigen::Matrix<float,2,2> localCovariance = Eigen::Matrix<float,2,2>::Zero();
364 localCovariance(0, 0) = width0 * width0 / 12.0f;
365 localCovariance(1, 1) = width1 * width1 / 12.0f;
366
367 clusterVars.identifierHash[icluster] = idHash;
368 xAOD::VectorMap<2>(clusterVars.localPositionDim2[icluster].data()) = localPosition;
369 xAOD::MatrixMap<2>(clusterVars.localCovarianceDim2[icluster].data()) = localCovariance;
370 assert( first_rdo_id.has_value());
371 clusterVars.identifier[icluster] = *first_rdo_id;
372 clusterVars.rdoList.updateEndIndex(icluster,n_rdos);
373 xAOD::VectorMap<3>(clusterVars.globalPosition[icluster].data()) = globalPos.cast<float>();
374 clusterVars.totList.updateEndIndex(icluster,n_rdos);
375 clusterVars.chargeList.updateEndIndex(icluster, (calibData ? n_rdos : 0u));
376 clusterVars.totalCharge[icluster] = totalCharge;
377 clusterVars.lvl1a[icluster] = cluster_lvl1min;
378 clusterVars.channelsInPhi[icluster] = rowWidth;
379 clusterVars.channelsInEta[icluster] = colWidth;
380 clusterVars.widthInEta[icluster] = etaWidth;
381
382 return StatusCode::SUCCESS;
383}
384
385template <typename T_RDOContainer>
386StatusCode
387PixelClusteringToolImpl<T_RDOContainer>::clusterize([[maybe_unused]] const EventContext& ctx,
389 const InDet::SiDetectorElementStatus& pixelDetElStatus,
390 const InDetDD::SiDetectorElement& element,
392{
393 IdentifierHash idHash = RDOs.identifyHash();
394 typename IClusteringToolType::CellContainer::ModuleRangeGuard rangeGuard(cellContainer.startNewModule(idHash));
395 if ( pixelDetElStatus.isGood(idHash) ) {
396 // Retrieve the cells from the detector element
397 std::span<typename IClusteringToolType::CellContainer::Cell>
398 cellRange = unpackRDOs(RDOs, pixelDetElStatus, element, cellContainer);
399
400 static constexpr unsigned int SORT_BY_LOCAL_X=0u;
401 namespace CL=Acts::InPlaceClusterization;
402 CL::clusterize<SORT_BY_LOCAL_X, std::uint16_t>(cellRange,
403 CL::defaultConnectionHelper<CL::EConnectionType::CommonEdgeOrCorner>(cellRange));
404 // set the cell range per cluster
406 [&cellContainer](std::span<typename IClusteringToolType::CellContainer::Cell> &/*the_range*/,
407 unsigned int idx_begin,
408 unsigned int idx_end) {
409 cellContainer.registerNewCluster(idx_begin,idx_end);
410 });
411 }
412 // must add a range for every call otherwise the cell container and
413 // the list of processed modules get out of sync.
414 cellContainer.registerClustersForNewModule(rangeGuard.range());
415
416 return StatusCode::SUCCESS;
417}
418
419
420template <typename T_RDOContainer>
422 [[maybe_unused]] std::size_t nClusterRDOs) const
423{
424 return std::any (xAOD::PixelCluster::ClusterVars (cont, nClusterRDOs));
425}
426
427
428template <typename T_RDOContainer>
429StatusCode
431 const EventContext& ctx,
432 const T_RDOContainer &rdoContainer,
434 unsigned int imodule,
435 const InDetDD::SiDetectorElement& element,
436 unsigned int icluster,
437 [[maybe_unused]] xAOD::PixelClusterContainer& cont,
438 std::any& cache) const
439{
440 // Retrieve the calibration data
441 const PixelChargeCalibCondData *calibData = nullptr;
442 if (not m_chargeDataKey.empty()) {
444 calibData = calibDataHandle.cptr();
445
446 if (!calibData) {
447 ATH_MSG_ERROR("PixelChargeCalibCondData requested but couldn't be retrieved from " << m_chargeDataKey.key());
448 return StatusCode::FAILURE;
449 }
450 }
451
452 // Get the element design
453 const InDetDD::PixelModuleDesign& design =
454 static_cast<const InDetDD::PixelModuleDesign&>(element.design());
455
456 // Get the calibration strategy for this module.
457 // Default to RD53 if the calibData is not available. That is fine because it won't be used anyway
458 auto calibrationStrategy = calibData ? calibData->getCalibrationStrategy(element.identifyHash()) : PixelChargeCalibCondData::CalibrationStrategy::RD53;
459
460 IdentifierHash idHash = element.identifyHash();
461 double lorentzShift = m_pixelLorentzAngleTool->getLorentzShift(idHash, ctx);
462
463 auto* clusterVars = std::any_cast<xAOD::PixelCluster::ClusterVars> (&cache);
464 if (!clusterVars) throw std::bad_any_cast();
465
466 std::optional<RDOCollectionAdapter<T_RDOContainer> > rdos_optional(RDOCollectionAdapter<T_RDOContainer>::make(rdoContainer,idHash));
467 if (!rdos_optional.has_value()) return StatusCode::FAILURE;
468 const RDOCollectionAdapter<T_RDOContainer> &rdos(*rdos_optional);
469
473 CellContainerProxy cellContainerProxy(&cellContainer);
474 ModuleProxy moduleProxy(cellContainerProxy[imodule]);
475
476 for (ClusterProxy clusterProxy: moduleProxy) {
477 ATH_CHECK(makeCluster(icluster++,
478 clusterProxy,
479 element,
480 design,
481 *rdos,
482 calibData,
483 calibrationStrategy,
484 lorentzShift,
485 *clusterVars));
486 }
487
488 return StatusCode::SUCCESS;
489}
490
491template <typename T_RDOContainer>
492std::span<typename ActsTrk::RDOContainerTraits<T_RDOContainer>::IClusteringToolType::CellContainer::Cell>
495 const InDet::SiDetectorElementStatus& pixelDetElStatus,
496 const InDetDD::SiDetectorElement& element,
498{
499 // Get the element design
500 const InDetDD::PixelModuleDesign& design =
501 static_cast<const InDetDD::PixelModuleDesign&>(element.design());
502
503 bool check_ganged = !m_isITk && m_checkGanged && isFEI3(design);
504
505 typename IClusteringToolType::CellContainer::ModuleRangeGuard rangeGuard(cellContainer, RDOs.identifyHash() );
506 unsigned int rdo_i=0;
507 for (RDOAdapter<T_RDOContainer> rdo : RDOs) {
508 auto coordinates=rdo.coordinates(*m_pixelID);
509 InDetDD::PixelDiodeTree::DiodeProxy si_param ( design.diodeProxyFromIdx(makeDiodeIdx(coordinates)));
510 std::uint32_t fe = design.getFE(si_param);
511
512 // check if good RDO
513 // the pixel RDO tool here says always good if m_useModuleMap is false
514 if (pixelDetElStatus.isChipGood(rangeGuard.identifyHash(), fe)) {
515 cellContainer.emplace_back_cell(makeCellCoordinates(coordinates), rdo_i);
516
517 if ( check_ganged ) {
518 std::optional<std::array<std::int16_t,2> > gangedCoordinates = getGangedCoordinates(coordinates, design);
519 if (gangedCoordinates.has_value()) {
520 cellContainer.emplace_back_cell(*gangedCoordinates, rdo_i);
521 }
522 }
523 }
524 ++rdo_i;
525 }
526
527 return rangeGuard.moduleCellSpan();
528}
529
532} // namespace ActsTrk
#define ATH_CHECK
Evaluate an expression and check for errors.
#define ATH_MSG_ERROR(x)
#define ATH_MSG_INFO(x)
#define ATH_MSG_DEBUG(x)
double charge(const T &p)
Definition AtlasPID.h:1003
static Double_t a
virtual std::pair< unsigned int, unsigned int > countCells(const T_RDOContainer &rdo_collection, const std::vector< IdentifierHash > &listOfIds, const InDetDD::SiDetectorElementCollection &detector_elements) const override
std::pair< unsigned int, unsigned int > countCellsImpl(const T_RDOContainer &rdo_collection, const std::vector< IdentifierHash > &listOfIds, const InDetDD::SiDetectorElementCollection &detector_elements) const
InPlaceClusterization::ClusterProxy< const typename IClusteringToolType::CellContainer > ClusterProxy
virtual StatusCode initialize() override
Gaudi::Property< bool > m_broadErrors
extends< AthAlgTool, typename ActsTrk::RDOContainerTraits< T_RDOContainer >::IClusteringToolType >::base_class base_class
Gaudi::Property< bool > m_useWeightedPos
StatusCode makeCluster(size_t icluster, const PixelClusteringToolImpl::ClusterProxy &cluster, const InDetDD::SiDetectorElement &element, const InDetDD::PixelModuleDesign &design, const ActsTrk::RDOContainerTraits< T_RDOContainer >::PerModuleRDOs &RDOs, const PixelChargeCalibCondData *calibData, const PixelChargeCalibCondData::CalibrationStrategy calibStrategy, const double lorentz_shift, xAOD::PixelCluster::ClusterVars &clusterVars) const
ToolHandle< ISiLorentzAngleTool > m_pixelLorentzAngleTool
virtual StatusCode clusterize(const EventContext &ctx, const ActsTrk::RDOContainerTraits< T_RDOContainer >::PerModuleRDOs &RDOs, const InDet::SiDetectorElementStatus &pixelDetElStatus, const InDetDD::SiDetectorElement &element, typename IClusteringToolType::CellContainer &cellContainer) const override
Gaudi::Property< bool > m_checkGanged
Gaudi::Property< std::string > m_idHelperName
virtual StatusCode makeClusters(const EventContext &ctx, const T_RDOContainer &rdo_container, const typename IClusteringToolType::CellContainer &cellContainer, unsigned int module_i, const InDetDD::SiDetectorElement &element, unsigned int icluster, xAOD::PixelClusterContainer &cont, std::any &vars) const override
PixelClusteringToolImpl(const std::string &type, const std::string &name, const IInterface *parent)
SG::ReadCondHandleKey< PixelChargeCalibCondData > m_chargeDataKey
std::span< typename IClusteringToolType::CellContainer::Cell > unpackRDOs(const ActsTrk::RDOContainerTraits< T_RDOContainer >::PerModuleRDOs &RDOs, const InDet::SiDetectorElementStatus &pixelDetElStatus, const InDetDD::SiDetectorElement &element, typename IClusteringToolType::CellContainer &cellContainer) const
virtual std::any createEventDataCache(xAOD::PixelClusterContainer &cont, std::size_t nClusterRDOs) const override
static const T_RDOContainer & range(const T_RDOContainer &rdo_container)
static std::optional< RDOCollectionAdapter > make(const T_RDOContainer &rdo_container, const IdentifierHash &id_hash)
This is a "hash" representation of an Identifier.
value_type get_compact() const
Get the compact id.
static constexpr std::array< PixelDiodeTree::CellIndexType, 2 > makeCellIndex(T local_x_idx, T local_y_idx)
Create a 2D cell index from the indices in local-x (phi, row) and local-y (eta, column) direction.
Class used to describe the design of a module (diode segmentation and readout scheme).
PixelDiodeTree::DiodeProxyWithPosition diodeProxyFromIdxCachePosition(const std::array< PixelDiodeTree::IndexType, 2 > &idx) const
virtual int numberOfConnectedCells(const SiReadoutCellId &readoutId) const
readout id -> id of connected diodes
PixelReadoutTechnology getReadoutTechnology() const
PixelDiodeTree::DiodeProxy diodeProxyFromIdx(const std::array< PixelDiodeTree::IndexType, 2 > &idx) const
virtual SiReadoutCellId readoutIdOfCell(const SiCellId &cellId) const
diode id -> readout id
static InDetDD::PixelDiodeType getDiodeType(const PixelDiodeTree::DiodeProxy &diode_proxy)
virtual SiCellId connectedCell(const SiReadoutCellId &readoutId, int number) const
readout id -> id of connected diodes.
static unsigned int getFE(const PixelDiodeTree::DiodeProxy &diode_proxy)
Identifier for the strip or pixel cell.
Definition SiCellId.h:29
int phiIndex() const
Get phi index. Equivalent to strip().
Definition SiCellId.h:122
int etaIndex() const
Get eta index.
Definition SiCellId.h:114
Class to hold the SiDetectorElement objects to be put in the detector store.
Class to hold geometrical description of a silicon detector element.
virtual const SiDetectorDesign & design() const override final
access to the local description (inline):
Identifier for the strip or pixel readout cell.
virtual IdentifierHash identifyHash() const override final
identifier hash (inline)
virtual Identifier identify() const override final
identifier of this detector element (inline)
Trk::Surface & surface()
Element Surface.
bool isChipGood(IdentifierHash hash, unsigned int chip) const
bool isGood(IdentifierHash hash) const
CalibrationStrategy getCalibrationStrategy(unsigned int moduleHash) const
float getCharge(InDetDD::PixelDiodeType type, unsigned int moduleHash, unsigned int FE, float ToT) const
This is an Identifier helper class for the Pixel subdetector.
Definition PixelID.h:69
const_pointer_type cptr()
const Amg::Transform3D & transform() const
Returns HepGeom::Transform3D by reference.
void updateEndIndex(unsigned int obj_i, unsigned int elm_i)
unsigned int getBeginIndex(unsigned int obj_i) const
The AlignStoreProviderAlg loads the rigid alignment corrections and pipes them through the readout ge...
void for_each_cluster(cell_collection_t &cells, func_t func)
call the given function for each cluster of a label sorted cell collection.
Eigen::Affine3d Transform3D
Eigen::Matrix< double, 2, 1 > Vector2D
Eigen::Matrix< double, 3, 1 > Vector3D
SG::ReadCondHandle< T > makeHandle(const SG::ReadCondHandleKey< T > &key, const EventContext &ctx=Gaudi::Hive::currentContext())
@ locY
local cartesian
Definition ParamDefs.h:38
@ locX
Definition ParamDefs.h:37
PixelClusterContainer_v1 PixelClusterContainer
Define the version of the pixel cluster container.
Eigen::Map< MeasVector< N > > VectorMap
Eigen::Map< MeasMatrix< N > > MatrixMap
typename T_RDO_Container::base_value_type PerModuleRDOs
A diode proxy which caches the position of a diode.
double xPhiMax() const
for backward compatibility, return the position of the lower edge of the diode in local-y(phi,...
double xEtaMin() const
for backward compatibility, return the position of the lower edge of the diode in local-y(eta,...
double xPhiMin() const
for backward compatibility, return the position of the lower edge of the diode in local-x(phi,...
const Vector2D & position() const
get the cached position of this diode
double xEtaMax() const
for backward compatibility, return the position of the upper edge of the diode in local-y(eta,...
Helper class to access parameters of a diode.
xAOD::xAODInDetMeasurement::Utilities::JaggedVecEltCache< float > chargeList
xAOD::xAODInDetMeasurement::Utilities::JaggedVecEltCache< int > totList
xAOD::xAODInDetMeasurement::Utilities::JaggedVecEltCache< Identifier::value_type > rdoList
Tell the compiler to optimize assuming that FP may trap.
#define CXXUTILS_TRAPPING_FP
Definition trapping_fp.h:24