20 base_class(
type, name, parent) {}
36 return StatusCode::SUCCESS;
43 InDet::PixelClusterCollection& pixelColl,
44 InDet::SCT_ClusterCollection& SCTColl)
const {
45 ATH_MSG_DEBUG(
"Found " << hits.size() <<
" FPGATrackSimHits [InDet]");
47 pixelColl.reserve(hits.size());
48 SCTColl.reserve(hits.size());
51 std::vector<Identifier> rdoList{
Identifier(
h.getRdoIdentifier())};
53 std::unique_ptr<InDet::PixelCluster> pixelCl{};
54 std::unique_ptr<InDet::SCT_Cluster> SCTCl{};
58 if (pixelCl) pixelColl.push_back(std::move(pixelCl));
62 if (SCTCl) SCTColl.push_back(std::move(SCTCl));
66 ATH_MSG_DEBUG(
"pixelColl size: " << pixelColl.size() <<
" SCTColl size: " << SCTColl.size() );
68 return StatusCode::SUCCESS;
73 InDet::PixelClusterCollection& pixelColl,
74 InDet::SCT_ClusterCollection& SCTColl)
const {
75 ATH_MSG_DEBUG(
"Found " << hits.size() <<
" FPGATrackSimHits [InDet]");
79 if (!FPGAClustersHandle.
isValid()) {
80 ATH_MSG_FATAL(
"Failed to retrieve FPGATrackSimClusterCollection");
81 return StatusCode::FAILURE;
104 std::vector<Identifier> rdoList;
107 std::unique_ptr<InDet::PixelCluster> pixelCl{};
108 std::unique_ptr<InDet::SCT_Cluster> SCTCl{};
112 if (pixelCl) pixelColl.push_back(std::move(pixelCl));
116 if (SCTCl) SCTColl.push_back(std::move(SCTCl));
121 ATH_MSG_DEBUG(
"pixelColl size: " << pixelColl.size() <<
" SCTColl size: " << SCTColl.size());
123 return StatusCode::SUCCESS;
131 ATH_MSG_DEBUG(
"Found " << hits.size() <<
" FPGATrackSimHits [xAOD]");
133 pixelCont.
reserve(hits.size());
137 std::vector<Identifier> rdoList{
Identifier(
h.getIdentifier())};
148 if(!xaod_scl->
rdoList().size())
153 ATH_MSG_DEBUG(
"xAOD pixelCont size: " << pixelCont.
size() <<
" xAOD pixelCont size: " << SCTCont.
size());
155 return StatusCode::SUCCESS;
161 InDet::PixelClusterCollection& pixelColl,
162 InDet::SCT_ClusterCollection& SCTColl)
const {
163 ATH_MSG_DEBUG(
"Found " << clusters.size() <<
" FPGATrackSimClusters [InDet]");
165 pixelColl.reserve(clusters.size());
166 SCTColl.reserve(clusters.size());
170 std::vector<Identifier> rdoList;
173 std::unique_ptr<InDet::PixelCluster> pixelCl{};
174 std::unique_ptr<InDet::SCT_Cluster> SCTCl{};
178 if (pixelCl) pixelColl.push_back(std::move(pixelCl));
182 if (SCTCl) SCTColl.push_back(std::move(SCTCl));
186 ATH_MSG_DEBUG(
"pixelColl size: " << pixelColl.size() <<
" SCTColl size: " << SCTColl.size());
188 return StatusCode::SUCCESS;
194 ATH_MSG_DEBUG(
"Found " << clusters.size() <<
" FPGATrackSimClusters [xAOD]");
196 pixelCont.
reserve(clusters.size());
197 SCTCont.
reserve(clusters.size());
203 std::vector<Identifier> rdoList;
218 ATH_MSG_DEBUG(
"xAOD pixelCont size: " << pixelCont.
size() <<
" xAOD SCTCont size: " << SCTCont.
size());
220 return StatusCode::SUCCESS;
234 SPStripCont.
reserve(fpgaSPs.size());
243 return StatusCode::SUCCESS;
247 ATH_MSG_DEBUG(
"\tCreate InDet::PixelCluster from FPGATrackSimHit");
251 float etaWidth =
h.getEtaWidth();
252 float phiWidth =
h.getPhiWidth();
253 int phiIndex =
h.getPhiIndex();
254 int etaIndex =
h.getEtaIndex();
260 return StatusCode::FAILURE;
267 if(!cell.isValid()) {
269 return StatusCode::FAILURE;
275 int colMin =
static_cast<int>(etaIndex-0.5*etaWidth);
276 int colMax = colMin+etaWidth;
278 int rowMin =
static_cast<int>(phiIndex-0.5*phiWidth);
279 int rowMax = rowMin+phiWidth;
294 localPos = localPosShift;
298 ATH_MSG_DEBUG(
"\t\tLocal position: x=" << localPos.x() <<
" y=" << localPos.y() );
299 ATH_MSG_DEBUG(
"\t\tGlobal position: x=" << globalPos.x() <<
" y=" << globalPos.y() <<
" z=" << globalPos.z() );
305 cov(0,0) = siWidth.
phiR()*siWidth.
phiR()/12;
306 cov(1,1) = siWidth.
z()*siWidth.
z()/12;
310 cov(1,1) = siWidth.
z()*siWidth.
z()/(12*siWidth.
colRow().
y()*siWidth.
colRow().y());
313 float dummy_omegax = 0.5;
314 float dummy_omegay = 0.5;
316 float splitProb1 = 0;
317 float splitProb2 = 0;
319 cl = std::make_unique<InDet::PixelCluster>(hit_id, localPos, std::vector<Identifier>(rdoList), siWidth, pDE,
Amg::MatrixX(cov), dummy_omegax, dummy_omegay,
split, splitProb1, splitProb2);
321 return StatusCode::SUCCESS;
325 ATH_MSG_DEBUG(
"\tCreate xAOD::PixelCluster from FPGATrackSimHit");
333 return StatusCode::FAILURE;
340 if(!cell.isValid()) {
342 return StatusCode::FAILURE;
347 int rowmin =
h.getMinPhiIndex();
348 int rowmax =
h.getMaxPhiIndex();
349 int colmin =
h.getMinEtaIndex();
350 int colmax =
h.getMaxEtaIndex();
354 if (colmin == std::numeric_limits<int>::max() || colmax == std::numeric_limits<int>::min() ||
355 rowmin == std::numeric_limits<int>::max() || rowmax == std::numeric_limits<int>::min()) {
356 ATH_MSG_ERROR(
"Pixel cluster indices appear uninitialized: colmin=" << colmin <<
", colmax=" << colmax
357 <<
", rowmin=" << rowmin <<
", rowmax=" << rowmax);
358 return StatusCode::FAILURE;
361 if (colmin < 0 || colmax < 0 || rowmin < 0 || rowmax < 0) {
362 ATH_MSG_ERROR(
"Pixel cluster indices out of range: colmin=" << colmin <<
", colmax=" << colmax
363 <<
", rowmin=" << rowmin <<
", rowmax=" << rowmax);
364 return StatusCode::FAILURE;
367 if (colmax < colmin || rowmax < rowmin) {
368 ATH_MSG_ERROR(
"Pixel cluster index max < min: colmin=" << colmin <<
", colmax=" << colmax
369 <<
", rowmin=" << rowmin <<
", rowmax=" << rowmax);
370 return StatusCode::FAILURE;
385 localPos(0,0) =
h.getPhiCoord();
386 localPos(1,0) =
h.getEtaCoord();
392 localPos = localPosShift;
395 ATH_MSG_DEBUG(
"\t\tLocal position: x=" << localPos.x() <<
" y=" << localPos.y() );
401 cov(0,0) = siWidth.
phiR()*siWidth.
phiR()/12;
402 cov(1,1) = siWidth.
z()*siWidth.
z()/12;
406 cov(1,1) = siWidth.
z()*siWidth.
z()/(12*siWidth.
colRow().
y()*siWidth.
colRow().y());
409 Eigen::Matrix<float,2,1> localPosition(localPos.x(), localPos.y());
410 Eigen::Matrix<float,2,2> localCovariance;
411 localCovariance.setZero();
412 localCovariance(0, 0) = cov(0, 0);
413 localCovariance(1, 1) = cov(1, 1);
415 Eigen::Matrix<float,3,1> globalPosition(
h.getX(),
h.getY(),
h.getZ());
416 ATH_MSG_DEBUG(
"\t\tGlobal position: x=" << globalPosition.x() <<
" y=" << globalPosition.y() <<
" z=" << globalPosition.z() );
418 cl.setMeasurement<2>(hash, localPosition, localCovariance);
420 cl.setIdentifier(
h.getRdoIdentifier() );
421 cl.setRDOlist(rdoList);
422 cl.globalPosition() = globalPosition;
423 cl.setChannelsInPhiEta(siWidth.
colRow()[0], siWidth.
colRow()[1]);
424 cl.setWidthInEta(
static_cast<float>(siWidth.
widthPhiRZ()[1]));
427 return StatusCode::SUCCESS;
431 ATH_MSG_DEBUG(
"\t Create InDet::SCTCluster from FPGATrackSimHit ");
436 float phiWidth =
h.getPhiWidth();
437 int strip =
static_cast<int>(
h.getPhiIndex());
458 const int firstStrip =
m_SCTId->strip(rdoList.front());
459 const int lastStrip =
m_SCTId->strip(rdoList.back());
460 const int row =
m_SCTId->row(rdoList.front());
461 const int firstStrip1D = design->
strip1Dim (firstStrip, row );
462 const int lastStrip1D = design->
strip1Dim( lastStrip, row );
468 const double width = design->
stripPitch() * ( lastStrip - firstStrip + 1 );
470 const std::pair<InDetDD::SiLocalPosition, InDetDD::SiLocalPosition> ends( design->
endsOfStrip(centre) );
471 const double stripLength( std::abs(ends.first.xEta() - ends.second.xEta()) );
478 ATH_MSG_DEBUG(
"\t\tlocal position before shift: " << localPos.x() <<
" phi: " << localPos.y());
482 localPos = localPosShift;
486 ATH_MSG_DEBUG(
"\t\tLocal position: x=" << localPos.x() <<
" y=" << localPos.y() );
487 ATH_MSG_DEBUG(
"\t\tGlobal position: x=" << globalPos.x() <<
" y=" << globalPos.y() <<
" z=" << globalPos.z() );
490 const double col_x = siWidth.
colRow().x();
491 const double col_y = siWidth.
colRow().y();
493 double scale_factor = 1.;
494 if ( std::abs(col_x-1) < std::numeric_limits<double>::epsilon() )
496 else if ( std::abs(col_x-2) < std::numeric_limits<double>::epsilon() )
501 cov.fillSymmetric(0, 0, scale_factor * scale_factor * siWidth.
phiR() * siWidth.
phiR() * (1./12.));
502 cov.fillSymmetric(1, 1, siWidth.
z() * siWidth.
z() / col_y / col_y * (1./12.));
510 double v0 = (cov)(0,0)*w*w;
511 double v1 = (cov)(1,1);
512 cov.fillSymmetric( 0, 0, cs2 * v0 + sn2 * v1 );
513 cov.fillSymmetric( 0, 1, sn * std::sqrt(cs2) * (v0 - v1) );
514 cov.fillSymmetric( 1, 1, sn2 * v0 + cs2 * v1 );
517 cl = std::make_unique<InDet::SCT_Cluster>(strip_id, localPos, std::vector<Identifier>(rdoList), siWidth, pDE,
Amg::MatrixX(cov));
519 return StatusCode::SUCCESS;
523 ATH_MSG_DEBUG(
"\t Create xAOD::StripCluster from FPGATrackSimHit ");
528 float phiWidth =
h.getPhiWidth();
529 int strip =
static_cast<int>(
h.getPhiIndex());
549 const int firstStrip =
m_SCTId->strip(rdoList.front());
550 const int lastStrip =
m_SCTId->strip(rdoList.back());
551 const int row =
m_SCTId->row(rdoList.front());
552 const int firstStrip1D = design->
strip1Dim (firstStrip, row);
553 const int lastStrip1D = design->
strip1Dim(lastStrip, row);
557 ATH_MSG_WARNING(
"Cell ID out of range. Skip making this Strip cluster");
558 return StatusCode::SUCCESS;
563 const double width = design->
stripPitch() * ( lastStrip - firstStrip + 1 );
565 const std::pair<InDetDD::SiLocalPosition, InDetDD::SiLocalPosition> ends( design->
endsOfStrip(centre) );
566 const double stripLength( std::abs(ends.first.xEta() - ends.second.xEta()) );
572 localPos(0,0) =
h.getPhiCoord();
576 ATH_MSG_DEBUG(
"\t\tlocal position before shift: " << localPos.x() <<
" phi: " << localPos.y());
581 localPos = localPosShift;
584 ATH_MSG_DEBUG(
"\t\tLocal position: x=" << localPos.x() <<
" y=" << localPos.y() );
587 Eigen::Matrix<float,1,1> localPosition;
588 Eigen::Matrix<float,1,1> localCovariance;
589 localCovariance.setZero();
592 localPosition(0, 0) = localPos.x();
600 std::ostringstream
msg;
601 msg <<
"Original cellId: " << cellId <<
" (strip=" << cellId.
strip() <<
")\n";
602 msg <<
"Cell ID invalid or out of range. Resetting to the closest cell of the active area.\n";
607 msg <<
"Active area boundaries [eta,phi]: min [" << localPosMin.x() <<
", " << localPosMin.y() <<
"] , " <<
608 "max [" << localPosMax.x() <<
", " << localPosMax.y() <<
"]\n";
609 msg <<
"Compared to localPos of invalid cell: [" << localPos.x() <<
", " << localPos.y() <<
"]\n";
617 msg <<
" \\___ resetting to minCell [" << localPosMin.x() <<
", " << localPosMin.y() <<
"]";
620 msg <<
" \\___ resetting to maxCell [" << localPosMax.x() <<
", " << localPosMax.y() <<
"]";
626 localPosition(0, 0) = localInPolar.
xPhi();
630 Eigen::Matrix<float,3,1> globalPosition(
h.getX(),
h.getY(),
h.getZ());
631 ATH_MSG_DEBUG(
"\t\tGlobal position: x=" << globalPosition.x() <<
" y=" << globalPosition.y() <<
" z=" << globalPosition.z() );
633 cl.setMeasurement<1>(hash, localPosition, localCovariance);
634 cl.setIdentifier(
h.getRdoIdentifier() );
635 cl.setRDOlist(rdoList);
636 cl.globalPosition() = globalPosition;
637 cl.setChannelsInPhi(siWidth.
colRow()[0]);
639 return StatusCode::SUCCESS;
643 ATH_MSG_DEBUG(
"\t Create InDet::PixelCluster from FPGATrackSimCluster");
645 std::vector<Identifier> rdoList;
648 return StatusCode::SUCCESS;
652 ATH_MSG_DEBUG(
"\t Create xAOD::PixelCluster from FPGATrackSimCluster");
654 std::vector<Identifier> rdoList;
657 return StatusCode::SUCCESS;
661 ATH_MSG_DEBUG(
"\t Create InDet::SCT_Cluster from FPGATrackSimCluster");
663 std::vector<Identifier> rdoList;
666 return StatusCode::SUCCESS;
670 ATH_MSG_DEBUG(
"\t Create xAOD::StripCluster from FPGATrackSimCluster");
672 std::vector<Identifier> rdoList;
675 return StatusCode::SUCCESS;
686 Eigen::Matrix<float, 3, 1> globalPos(p_cl->globalPosition().x(), p_cl->globalPosition().y(), p_cl->globalPosition().z());
690 const float cov_r = p_cl->localCovariance<2>()(0,0);
691 const float cov_z = p_cl->localCovariance<2>()(1,0);
694 p_cl->identifierHash(),
698 std::vector< const xAOD::UncalibratedMeasurement* >({ p_cl })
702 return StatusCode::SUCCESS;
714 Eigen::Matrix<float,3,1> globalPos(clEq.
getX(),clEq.
getY(),clEq.
getZ());
719 float deltaY = 0.0004;
720 float covTerm = 1600.*deltaY;
721 Eigen::Matrix<float, 2, 1> variance(0.1, 8.*covTerm);
725 std::swap( variance(0, 0), variance(1, 0) );
726 float cov_r = variance(0,0);
727 float cov_z = variance(1,0);
732 std::vector<unsigned int> idHashList;
733 std::vector<const xAOD::UncalibratedMeasurement_v1*> measurements;
737 float topHalfStripLength, bottomHalfStripLength;
744 idHashList.push_back(
h.getIdentifierHash());
745 for (
auto orig_cl : clustersCont) {
746 if (
h.getIdentifierHash()==orig_cl->identifierHash()) {
749 measurements.push_back(orig_cl);
756 Amg::Vector3D stripCenterDistance = stripCenter1 - stripCenter2;
758 ATH_MSG_DEBUG(
"topHalfStripLength = " << topHalfStripLength <<
" bottomHalfStripLength = " << bottomHalfStripLength);
759 ATH_MSG_DEBUG(
"topStripDirection = (" << topStripDirection.x() <<
", " << topStripDirection.y() <<
", " << topStripDirection.z() <<
") " <<
"bottomStripDirection = (" << bottomStripDirection.x() <<
", " << bottomStripDirection.y() <<
", " << bottomStripDirection.z() <<
") " );
760 ATH_MSG_DEBUG(
"stripCenterDistance = (" << stripCenterDistance.x() <<
", " << stripCenterDistance.y() <<
", " << stripCenterDistance.z() <<
")" );
761 ATH_MSG_DEBUG(
"topStripCenter = (" << topStripCenter.x() <<
", " << topStripCenter.y() <<
", " << topStripCenter.z() <<
")" );
765 std::move(idHashList),
769 std::move(measurements),
771 bottomHalfStripLength,
772 topStripDirection.cast<
float>(),
773 bottomStripDirection.cast<
float>(),
774 stripCenterDistance.cast<
float>(),
775 topStripCenter.cast<
float>()
778 return StatusCode::SUCCESS;
783 std::vector<FPGATrackSimHit> hits = cluster.
getHitList();
786 rdoList.emplace_back(
h.getRdoIdentifier());
789 return StatusCode::SUCCESS;
806 std::pair<Amg::Vector3D, Amg::Vector3D> end = (sDE->
endsOfStrip(localPos));
807 stripCenter = 0.5 * (end.first + end.second);
810 halfStripLength = 0.5 * stripDir.norm();
811 stripDirection = stripDir / (2. * (halfStripLength));
813 return StatusCode::SUCCESS;
#define ATH_CHECK
Evaluate an expression and check for errors.
#define ATH_MSG_DEBUG(x,...)
#define ATH_MSG_ERROR(x,...)
#define ATH_MSG_WARNING(x,...)
#define ATH_MSG_INFO(x,...)
#define ATH_MSG_FATAL(x,...)
This class provides an interface to generate or decode an identifier for the upper levels of the dete...
std::vector< FPGATrackSimCluster > FPGATrackSimClusterCollection
DataVector< FPGATrackSimHit > FPGATrackSimHitCollection
This is an Identifier helper class for the Pixel subdetector.
This is an Identifier helper class for the SCT subdetector.
Header file for AthHistogramAlgorithm.
const T * back() const
Access the last element in the collection as an rvalue.
void reserve(size_type n)
Attempt to preallocate enough memory for a specified number of elements.
value_type emplace_back(value_type pElem)
Add an element to the end of the collection.
void pop_back()
Remove the last element from the collection.
value_type push_back(value_type pElem)
Add an element to the end of the collection.
size_type size() const noexcept
Returns the number of elements in the collection.
virtual StatusCode createPixelCluster(const FPGATrackSimHit &h, const std::vector< Identifier > &rdoList, std::unique_ptr< InDet::PixelCluster > &) const override final
SG::ReadHandleKey< FPGATrackSimClusterCollection > m_FPGAClusterKey
const PixelID * m_pixelId
const InDetDD::PixelDetectorManager * m_pixelManager
Gaudi::Property< bool > m_broadErrors
virtual StatusCode getRdoList(std::vector< Identifier > &rdoList, const FPGATrackSimCluster &cluster) const override final
FPGAClusterConverter(const std::string &type, const std::string &name, const IInterface *parent)
virtual StatusCode createSCTCluster(const FPGATrackSimHit &h, const std::vector< Identifier > &rdoList, std::unique_ptr< InDet::SCT_Cluster > &) const override final
Gaudi::Property< bool > m_skipStripSpacePointFormation
virtual StatusCode createSP(const FPGATrackSimCluster &cl, xAOD::SpacePoint &sp, xAOD::StripClusterContainer &clustersCont) const override final
virtual StatusCode createPixelSPs(xAOD::SpacePointContainer &pixelSPs, xAOD::PixelClusterContainer &clustersCont) const override final
virtual StatusCode initialize() override final
ToolHandle< ISiLorentzAngleTool > m_lorentzAngleToolPixel
virtual StatusCode convertHits(const FPGATrackSimHitCollection &, InDet::PixelClusterCollection &, InDet::SCT_ClusterCollection &) const override final
Gaudi::Property< bool > m_doShift
ToolHandle< ISiLorentzAngleTool > m_lorentzAngleToolStrip
Gaudi::Property< bool > m_useInherentLocalCoordinates
const InDetDD::SCT_DetectorManager * m_SCTManager
virtual StatusCode convertSpacePoints(const std::vector< FPGATrackSimCluster > &fpgaSPs, xAOD::SpacePointContainer &SPStripCont, xAOD::SpacePointContainer &SPPixelCont, xAOD::StripClusterContainer &stripClusterCont, xAOD::PixelClusterContainer &pixelClusterCont) const override final
virtual StatusCode convertClusters(const std::vector< FPGATrackSimCluster > &, InDet::PixelClusterCollection &, InDet::SCT_ClusterCollection &) const override final
virtual StatusCode getStripsInfo(const xAOD::StripCluster &cl, float &halfStripLength, Amg::Vector3D &stripDirection, Amg::Vector3D &stripCenter) const override final
hitVector const & getHitList() const
FPGATrackSimHit const & getClusterEquiv() const
unsigned getIdentifierHash() const
This is a "hash" representation of an Identifier.
virtual DetectorShape shape() const
Shape of 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 SiCellId cellIdInRange(const SiCellId &cellId) const override
Check if cell is in range.
int cells() const
number of readout stips within module side:
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 std::pair< SiLocalPosition, SiLocalPosition > endsOfStrip(const SiLocalPosition &position) const override=0
give the ends of strips
Identifier for the strip or pixel cell.
int strip() const
Get strip number. Equivalent to phiIndex().
bool isValid() const
Test if its in a valid state.
Class to hold geometrical description of a silicon detector element.
virtual SiCellId cellIdFromIdentifier(const Identifier &identifier) const override final
SiCellId from Identifier.
virtual const SiDetectorDesign & design() const override final
access to the local description (inline):
double phiPitch() const
Pitch (inline methods).
std::pair< Amg::Vector3D, Amg::Vector3D > endsOfStrip(const Amg::Vector2D &position) const
Special method for SCT to retrieve the two ends of a "strip" Returned coordinates are in global frame...
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:
double xEta() const
position along eta direction:
SiCellId cellIdOfPosition(const Amg::Vector2D &localPos) const
As in previous method but returns SiCellId.
HepGeom::Point3D< double > globalPosition(const HepGeom::Point3D< double > &localPos) const
transform a reconstruction local position into a global position (inline):
Amg::Vector2D rawLocalPositionOfCell(const SiCellId &cellId) const
Returns position (center) of cell.
virtual SiCellId cellIdInRange(const SiCellId &) const override
DEPRECATED: only used in a stupid example (2014) Check if cell is in range.
double phiPitchPhi(const SiLocalPosition &localPosition) const
SiLocalPosition localPositionOfCellPC(const SiCellId &cellId) const
This is for debugging only.
const Amg::Vector2D & widthPhiRZ() const
const Amg::Vector2D & colRow() const
virtual bool isValid() override final
Can the handle be successfully dereferenced?
const_pointer_type cptr()
Dereference the pointer.
const std::vector< DetectorIDHashType > & elementIdList() const
Returns the IdentifierHash of the spacepoint (corresponds to the detector element IdentifierHash).
void setSpacePoint(DetectorIDHashType idHash, const Eigen::Matrix< float, 3, 1 > &globPos, float cov_r, float cov_z, std::vector< const xAOD::UncalibratedMeasurement * > &&measurementIndexes)
SG::ConstAccessor< SG::JaggedVecElt< Identifier::value_type > >::element_type rdoList() const
Returns the list of identifiers of the channels building the cluster.
std::vector< std::string > split(const std::string &s, const std::string &t=":")
Eigen::Matrix< double, Eigen::Dynamic, Eigen::Dynamic > MatrixX
Dynamic Matrix - dynamic allocation.
Eigen::Matrix< double, 2, 1 > Vector2D
Eigen::Matrix< double, 3, 1 > Vector3D
void swap(ElementLinkVector< DOBJ > &lhs, ElementLinkVector< DOBJ > &rhs)
PixelClusterContainer_v1 PixelClusterContainer
Define the version of the pixel cluster container.
StripCluster_v1 StripCluster
Define the version of the strip cluster class.
SpacePointContainer_v1 SpacePointContainer
Define the version of the space point container.
StripClusterContainer_v1 StripClusterContainer
Define the version of the strip cluster container.
PixelCluster_v1 PixelCluster
Define the version of the pixel cluster class.