13#include "GeoModelKernel/throwExcept.h"
23 const float time = cluster.
time();
26 Eigen::Matrix<float,3,1> localPosition = Eigen::Matrix<float,3,1>::Zero();
27 localPosition(0, 0) = localPos.x();
28 localPosition(1, 0) = localPos.y();
29 localPosition(2, 0) = time;
31 Eigen::Matrix<float,3,3> localCovariance = Eigen::Matrix<float,3,3>::Zero();
32 localCovariance(0, 0) = localCov(0, 0);
33 localCovariance(1, 1) = localCov(1, 1);
34 localCovariance(2, 2) = timeResolution * timeResolution;
36 return {localPosition, localCovariance};
47 const auto& RDOs = indetCluster.
rdoList();
48 const auto& ToTs = indetCluster.
totList();
50 xaodCluster.
setMeasurement<3>(idHash, localPosition, localCovariance);
55 return StatusCode::SUCCESS;
62 Eigen::Matrix<float,2,1> localPosition(localPos.x(), localPos.y());
64 Eigen::Matrix<float,2,2> localCovariance;
65 localCovariance.setZero();
66 localCovariance(0, 0) = localCov(0, 0);
67 localCovariance(1, 1) = localCov(1, 1);
69 return {localPosition, localCovariance};
81 Eigen::Matrix<float, 3, 1> globalPosition(globalPos.x(), globalPos.y(), globalPos.z());
83 const auto& RDOs = indetCluster.
rdoList();
84 const auto& ToTs = indetCluster.
totList();
85 const auto& charges = indetCluster.
chargeList();
88 xaodCluster.
setMeasurement<2>(idHash, localPosition, localCovariance);
98 return StatusCode::SUCCESS;
105 float localPosition = 0.f, localCovariance = 0.f;
106 if (element.
isBarrel() or (not isITk)) {
107 localPosition = localPos.x();
112 if ( design ==
nullptr ) {
116 localPosition = localInPolar.
xPhi();
117 localCovariance = design->phiPitchPhi() * design->phiPitchPhi() *
one_over_twelve;
134 Eigen::Matrix<float, 3, 1> globalPosition(globalPos.x(), globalPos.y(), globalPos.z());
136 const auto& RDOs = indetCluster.
rdoList();
139 xaodCluster.
setMeasurement<1>(idHash, localPosition, localCovariance);
145 return StatusCode::SUCCESS;
154 if (design ==
nullptr) {
155 return StatusCode::FAILURE;
165 Amg::Vector3D globalPosition(globalPos(0, 0), globalPos(1, 0), globalPos(2, 0));
168 errorMatrix.setIdentity();
169 errorMatrix.fillSymmetric(0, 0, xaodCluster.
localCovariance<2>()(0, 0));
170 errorMatrix.fillSymmetric(1, 1, xaodCluster.
localCovariance<2>()(1, 1));
172 int colmax = std::numeric_limits<int>::min();
173 int rowmax = std::numeric_limits<int>::min();
174 int colmin = std::numeric_limits<int>::max();
175 int rowmin = std::numeric_limits<int>::max();
182 const std::vector<Identifier>& rod_list_cluster = xaodCluster.
rdoList();
183 const std::vector<float>& charge_list_cluster = xaodCluster.
chargeList();
185 if (rod_list_cluster.size() == charge_list_cluster.size()) {
187 for (std::size_t i(0); i<rod_list_cluster.size(); ++i) {
188 const Identifier& this_rdo = rod_list_cluster[i];
189 const float this_charge = charge_list_cluster[i];
191 const int row = pixelID.
phi_index(this_rdo);
194 qRowMax = this_charge;
195 }
else if (row == rowmax) {
196 qRowMax += this_charge;
201 qRowMin = this_charge;
202 }
else if (row == rowmin) {
203 qRowMin += this_charge;
206 const int col = pixelID.
eta_index(this_rdo);
209 qColMax = this_charge;
210 }
else if (col == colmax) {
211 qColMax += this_charge;
216 qColMin = this_charge;
217 }
else if (col == colmin) {
218 qColMin += this_charge;
228 if(qRowMin + qRowMax > 0) omegax = qRowMax/(qRowMin + qRowMax);
229 if(qColMin + qColMax > 0) omegay = qColMax/(qColMin + qColMax);
239 std::vector<Identifier>(xaodCluster.
rdoList()),
241 std::vector<int>(xaodCluster.
totList()),
245 std::move(errorMatrix),
250 return StatusCode::SUCCESS;
267 if (design ==
nullptr) {
268 return StatusCode::FAILURE;
271 const auto designShape = design->
shape();
274 const auto& rdoList = xaodCluster.
rdoList();
279 double pos_x = localPos(0, 0);
282 const Identifier firstStripId = rdoList.front();
283 int firstStrip = stripID.
strip(firstStripId);
284 int stripRow = stripID.
row(firstStripId);
287 pos_x = clusterPosition.
xPhi() + shift;
288 pos_y = clusterPosition.xEta();
296 const auto& firstStrip = stripID.
strip(rdoList.front());
297 const auto& lastStrip = stripID.
strip(rdoList.back());
298 const auto& row = stripID.
row(rdoList.front());
299 const int firstStrip1D = design->
strip1Dim (firstStrip, row );
300 const int lastStrip1D = design->
strip1Dim( lastStrip, row );
306 const double clusterWidth = design->
stripPitch() * ( lastStrip - firstStrip + 1 );
308 const std::pair<InDetDD::SiLocalPosition, InDetDD::SiLocalPosition> ends( design->
endsOfStrip(centre) );
309 const double stripLength( std::abs(ends.first.xEta() - ends.second.xEta()) );
314 const double col_x =
width.colRow().x();
315 const double col_y =
width.colRow().y();
317 double scale_factor = 1.;
320 else if ( col_x == 2 )
324 errorMatrix.setIdentity();
337 double sn2 = sn * sn;
338 double cs2 = 1. - sn2;
340 double v0 = errorMatrix(0,0) * w * w;
341 double v1 = errorMatrix(1,1);
342 errorMatrix.fillSymmetric( 0, 0, cs2 * v0 + sn2 * v1 );
343 errorMatrix.fillSymmetric( 0, 1, sn * std::sqrt(cs2) * (v0 - v1) );
344 errorMatrix.fillSymmetric( 1, 1, sn2 * v0 + cs2 * v1 );
349 std::vector<Identifier>(rdoList),
352 std::move(errorMatrix));
354 return StatusCode::SUCCESS;
363 float time = locPos(2,0);
369 errorMatrix.setIdentity();
370 errorMatrix.fillSymmetric(0, 0, xaodCluster.
localCovariance<3>()(0, 0));
371 errorMatrix.fillSymmetric(1, 1, xaodCluster.
localCovariance<3>()(1, 1));
372 float time_resolution = std::sqrt(xaodCluster.
localCovariance<3>()(2, 2));
374 double etaWidth = 1.3;
375 double phiWidth = 1.3;
380 indetCluster = new ::HGTD_Cluster(
id,
382 std::vector<Identifier>(xaodCluster.
rdoList()),
385 std::move(errorMatrix),
388 std::vector<int>(xaodCluster.
totList()));
390 return StatusCode::SUCCESS;
static constexpr double one_over_twelve
Copyright (C) 2002-2025 CERN for the benefit of the ATLAS collaboration.
virtual float time() const
virtual const std::vector< int > & totList() const
virtual float timeResolution() const
This is a "hash" representation of an Identifier.
value_type get_compact() const
Get the compact id.
virtual DetectorShape shape() const
Shape of element.
Class to hold geometrical description of an HGTD detector element.
Class used to describe the design of a module (diode segmentation and readout scheme)
double widthFromRowRange(const int rowMin, const int rowMax) const
Method to calculate phi width from a row range.
double widthFromColumnRange(const int colMin, const int colMax) const
Method to calculate eta width from a column range.
Base class for the SCT module side design, extended by the Forward and Barrel module design.
virtual double stripPitch(const SiLocalPosition &chargePos) const =0
give the strip pitch (dependence on position needed for forward)
virtual int strip1Dim(int strip, int row) const override
only relevant for SCT.
virtual SiLocalPosition localPositionOfCluster(const SiCellId &cellId, int cluserSize) const =0
virtual std::pair< SiLocalPosition, SiLocalPosition > endsOfStrip(const SiLocalPosition &position) const override=0
give the ends of strips
Identifier for the strip or pixel cell.
Class to hold geometrical description of a silicon detector element.
virtual const SiDetectorDesign & design() const override final
access to the local description (inline):
double phiPitch() const
Pitch (inline methods)
double sinStereoLocal(const Amg::Vector2D &localPos) const
Angle of strip in local frame with respect to the etaAxis.
Class to represent a position in the natural frame of a silicon sensor, for Pixel and SCT For Pixel: ...
double xPhi() const
position along phi direction:
SiCellId cellIdOfPosition(const Amg::Vector2D &localPos) const
As in previous method but returns SiCellId.
virtual IdentifierHash identifyHash() const override final
identifier hash (inline)
Identifier identifierOfPosition(const Amg::Vector2D &localPos) const
Full identifier of the cell for a given position: assumes a raw local position (no Lorentz shift)
Amg::Vector2D rawLocalPositionOfCell(const SiCellId &cellId) const
Returns position (center) of cell.
const std::vector< int > & totList() const
const std::vector< float > & chargeList() const
const Amg::Vector3D & globalPosition() const
return global position reference
const InDet::SiWidth & width() const
return width class reference
virtual const InDetDD::SiDetectorElement * detectorElement() const override final
return the detector element corresponding to this PRD The pointer will be zero if the det el is not d...
This is an Identifier helper class for the Pixel subdetector.
int eta_index(const Identifier &id) const
int phi_index(const Identifier &id) const
This is an Identifier helper class for the SCT subdetector.
int row(const Identifier &id) const
int strip(const Identifier &id) const
const Amg::Vector2D & localPosition() const
return the local position reference
Identifier identify() const
return the identifier
const Amg::MatrixX & localCovariance() const
return const ref to the error matrix
const std::vector< Identifier > & rdoList() const
return the List of rdo identifiers (pointers)
const std::vector< int > & totList() const
Returns the list of Time Over Threshold of the channels building the cluster.
void setToTlist(const std::vector< int > &tots)
Sets the list of ToT of the channels building the cluster.
const std::vector< Identifier > rdoList() const
Returns the list of identifiers of the channels building the cluster.
void setRDOlist(const std::vector< Identifier > &rdolist)
Sets the list of identifiers of the channels building the cluster.
const std::vector< float > & chargeList() const
Returns the list of charges of the channels building the cluster.
const std::vector< int > & totList() const
Returns the list of ToT of the channels building the cluster.
void setChannelsInPhiEta(int channelsInPhi, int channelsInEta)
Sets the dimensions of the cluster in numbers of channels in phi (x) and eta (y) directions.
int channelsInPhi() const
Returns the dimensions of the cluster in numbers of channels in phi (x) and eta (y) directions,...
const std::vector< Identifier > rdoList() const
Returns the list of identifiers of the channels building the cluster.
ConstVectorMap< 3 > globalPosition() const
Returns the global position of the pixel cluster.
int lvl1a() const
Return the LVL1 accept.
void setChargelist(const std::vector< float > &charges)
Sets the list of charges of the channels building the cluster.
int channelsInEta() const
void setToTlist(const std::vector< int > &tots)
Sets the list of ToT of the channels building the cluster.
void setLVL1A(int lvl1a)
Sets the LVL1 accept.
void setRDOlist(const std::vector< Identifier > &rdolist)
Sets the list of identifiers of the channels building the cluster.
void setWidthInEta(float widthInEta)
Sets the width of the cluster in eta (y) direction.
ConstVectorMap< 3 > globalPosition() const
Returns the global position of the strip cluster.
void setRDOlist(const std::vector< Identifier > &rdolist)
Sets the list of identifiers of the channels building the cluster.
int channelsInPhi() const
Returns the dimensions of the cluster in numbers of channels in phi (x), respectively.
const std::vector< Identifier > rdoList() const
Returns the list of identifiers of the channels building the cluster.
void setChannelsInPhi(int channelsInPhi)
Sets the dimensions of the cluster in numbers of channels in phi (x)
void setMeasurement(const DetectorIDHashType idHash, MeasVector< N > locPos, MeasMatrix< N > locCov)
Sets IdentifierHash, local position and local covariance of the measurement.
ConstMatrixMap< N > localCovariance() const
Returns the local covariance of the measurement.
ConstVectorMap< N > localPosition() const
Returns the local position of the measurement.
void setIdentifier(const DetectorIdentType measId)
Sets the full Identifier of the measurement.
Eigen::Matrix< double, Eigen::Dynamic, Eigen::Dynamic > MatrixX
Dynamic Matrix - dynamic allocation.
Eigen::Matrix< double, 2, 1 > Vector2D
Eigen::Matrix< double, 3, 1 > Vector3D
std::pair< xAOD::MeasVector< 1 >, xAOD::MeasMatrix< 1 > > convertSCT_LocalPosCov(const InDet::SCT_Cluster &cluster, bool isITk=true)
std::pair< xAOD::MeasVector< 2 >, xAOD::MeasMatrix< 2 > > convertPix_LocalPosCov(const InDet::PixelCluster &cluster)
StatusCode convertXaodToInDetCluster(const xAOD::PixelCluster &xaodCluster, const InDetDD::SiDetectorElement &element, const PixelID &pixelID, InDet::PixelCluster *&indetCluster)
StatusCode convertInDetToXaodCluster(const InDet::PixelCluster &indetCluster, const InDetDD::SiDetectorElement &element, xAOD::PixelCluster &xaodCluster)
std::pair< xAOD::MeasVector< 3 >, xAOD::MeasMatrix< 3 > > convertHGTD_LocalPosCov(const HGTD_Cluster &cluster)
StripCluster_v1 StripCluster
Define the version of the strip cluster class.
Eigen::Matrix< float, N, N > MeasMatrix
Eigen::Matrix< float, N, 1 > MeasVector
Abrivation of the Matrix & Covariance definitions.
PixelCluster_v1 PixelCluster
Define the version of the pixel cluster class.
HGTDCluster_v1 HGTDCluster
Define the version of the pixel cluster class.
#define THROW_EXCEPTION(MESSAGE)