37 return StatusCode::SUCCESS;
48 pixelColl.reserve(
hits.size());
49 SCTColl.reserve(
hits.size());
52 std::vector<Identifier> rdoList;
55 std::unique_ptr<InDet::PixelCluster> pixelCl{};
56 std::unique_ptr<InDet::SCT_Cluster> SCTCl{};
60 if (pixelCl) pixelColl.push_back(std::move(pixelCl));
64 if (SCTCl) SCTColl.push_back(std::move(SCTCl));
68 ATH_MSG_DEBUG(
"pixelColl size: " << pixelColl.size() <<
" SCTColl size: " << SCTColl.size() );
70 return StatusCode::SUCCESS;
81 if (!FPGAClustersHandle.
isValid()) {
82 ATH_MSG_FATAL(
"Failed to retrieve FPGATrackSimClusterCollection");
83 return StatusCode::FAILURE;
106 std::vector<Identifier> rdoList;
109 std::unique_ptr<InDet::PixelCluster> pixelCl{};
110 std::unique_ptr<InDet::SCT_Cluster> SCTCl{};
114 if (pixelCl) pixelColl.push_back(std::move(pixelCl));
118 if (SCTCl) SCTColl.push_back(std::move(SCTCl));
123 ATH_MSG_DEBUG(
"pixelColl size: " << pixelColl.size() <<
" SCTColl size: " << SCTColl.size());
125 return StatusCode::SUCCESS;
139 std::vector<Identifier> rdoList;
151 if(!xaod_scl->
rdoList().size())
156 ATH_MSG_DEBUG(
"xAOD pixelCont size: " << pixelCont.
size() <<
" xAOD pixelCont size: " << SCTCont.
size());
158 return StatusCode::SUCCESS;
173 std::vector<Identifier> rdoList;
176 std::unique_ptr<InDet::PixelCluster> pixelCl{};
177 std::unique_ptr<InDet::SCT_Cluster> SCTCl{};
181 if (pixelCl) pixelColl.push_back(std::move(pixelCl));
185 if (SCTCl) SCTColl.push_back(std::move(SCTCl));
189 ATH_MSG_DEBUG(
"pixelColl size: " << pixelColl.size() <<
" SCTColl size: " << SCTColl.size());
191 return StatusCode::SUCCESS;
206 std::vector<Identifier> rdoList;
221 ATH_MSG_DEBUG(
"xAOD pixelCont size: " << pixelCont.
size() <<
" xAOD SCTCont size: " << SCTCont.
size());
223 return StatusCode::SUCCESS;
237 SPStripCont.
reserve(fpgaSPs.size());
246 return StatusCode::SUCCESS;
250 ATH_MSG_DEBUG(
"\tCreate InDet::PixelCluster from FPGATrackSimHit");
254 float etaWidth =
h.getEtaWidth();
257 int etaIndex =
h.getEtaIndex();
263 return StatusCode::FAILURE;
270 if(!
cell.isValid()) {
272 return StatusCode::FAILURE;
278 int colMin =
static_cast<int>(etaIndex-0.5*etaWidth);
279 int colMax = colMin+etaWidth;
297 localPos = localPosShift;
301 ATH_MSG_DEBUG(
"\t\tLocal position: x=" << localPos.x() <<
" y=" << localPos.y() );
302 ATH_MSG_DEBUG(
"\t\tGlobal position: x=" << globalPos.x() <<
" y=" << globalPos.y() <<
" z=" << globalPos.z() );
308 cov(1,1) = siWidth.
z()*siWidth.
z()/12;
309 float dummy_omegax = 0.5;
310 float dummy_omegay = 0.5;
312 float splitProb1 = 0;
313 float splitProb2 = 0;
315 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);
317 return StatusCode::SUCCESS;
321 ATH_MSG_DEBUG(
"\tCreate xAOD::PixelCluster from FPGATrackSimHit");
325 float etaWidth =
h.getEtaWidth();
328 int etaIndex =
h.getEtaIndex();
334 return StatusCode::FAILURE;
341 if(!
cell.isValid()) {
343 return StatusCode::FAILURE;
349 int colMin =
static_cast<int>(etaIndex-0.5*etaWidth);
350 int colMax = colMin+etaWidth;
369 localPos = localPosShift;
372 ATH_MSG_DEBUG(
"\t\tLocal position: x=" << localPos.x() <<
" y=" << localPos.y() );
378 cov(1,1) = siWidth.
z()*siWidth.
z()/12;
383 float splitProb1 = 0;
384 float splitProb2 = 0;
386 Eigen::Matrix<float,2,1> localPosition(localPos.x(), localPos.y());
387 Eigen::Matrix<float,2,2> localCovariance;
388 localCovariance.setZero();
389 localCovariance(0, 0) =
cov(0, 0);
390 localCovariance(1, 1) =
cov(1, 1);
392 Eigen::Matrix<float,3,1> globalPosition(
h.getX(),
h.getY(),
h.getZ());
393 ATH_MSG_DEBUG(
"\t\tGlobal position: x=" << globalPosition.x() <<
" y=" << globalPosition.y() <<
" z=" << globalPosition.z() );
395 cl.setMeasurement<2>(
hash, localPosition, localCovariance);
396 cl.setIdentifier( rdoList.front().get_compact() );
397 cl.setRDOlist(rdoList);
398 cl.globalPosition() = globalPosition;
400 cl.setWidthInEta(
static_cast<float>(siWidth.
widthPhiRZ()[1]));
401 cl.setOmegas(omegax, omegay);
403 cl.setSplitProbabilities(splitProb1, splitProb2);
406 return StatusCode::SUCCESS;
410 ATH_MSG_DEBUG(
"\t Create InDet::SCTCluster from FPGATrackSimHit ");
416 int strip =
static_cast<int>(
h.getPhiIndex());
449 const std::pair<InDetDD::SiLocalPosition, InDetDD::SiLocalPosition> ends( design->
endsOfStrip(centre) );
450 const double stripLength( std::abs(ends.first.xEta() - ends.second.xEta()) );
457 ATH_MSG_DEBUG(
"\t\tlocal position before shift: " << localPos.x() <<
" phi: " << localPos.y());
461 localPos = localPosShift;
465 ATH_MSG_DEBUG(
"\t\tLocal position: x=" << localPos.x() <<
" y=" << localPos.y() );
466 ATH_MSG_DEBUG(
"\t\tGlobal position: x=" << globalPos.x() <<
" y=" << globalPos.y() <<
" z=" << globalPos.z() );
469 const double col_x = siWidth.
colRow().x();
470 const double col_y = siWidth.
colRow().y();
472 double scale_factor = 1.;
473 if ( std::abs(col_x-1) < std::numeric_limits<double>::epsilon() )
475 else if ( std::abs(col_x-2) < std::numeric_limits<double>::epsilon() )
480 cov.fillSymmetric(0, 0, scale_factor * scale_factor * siWidth.
phiR() * siWidth.
phiR() * (1./12.));
481 cov.fillSymmetric(1, 1, siWidth.
z() * siWidth.
z() / col_y / col_y * (1./12.));
490 double v1 = (
cov)(1,1);
491 cov.fillSymmetric( 0, 0, cs2 *
v0 + sn2 * v1 );
492 cov.fillSymmetric( 0, 1, sn * std::sqrt(cs2) * (
v0 - v1) );
493 cov.fillSymmetric( 1, 1, sn2 *
v0 + cs2 * v1 );
496 cl = std::make_unique<InDet::SCT_Cluster>(strip_id, localPos, std::vector<Identifier>(rdoList), siWidth, pDE,
Amg::MatrixX(
cov));
498 return StatusCode::SUCCESS;
502 ATH_MSG_DEBUG(
"\t Create xAOD::StripCluster from FPGATrackSimHit ");
508 int strip =
static_cast<int>(
h.getPhiIndex());
536 ATH_MSG_WARNING(
"Cell ID out of range. Skip making this Strip cluster");
537 return StatusCode::SUCCESS;
544 const std::pair<InDetDD::SiLocalPosition, InDetDD::SiLocalPosition> ends( design->
endsOfStrip(centre) );
545 const double stripLength( std::abs(ends.first.xEta() - ends.second.xEta()) );
551 ATH_MSG_DEBUG(
"\t\tlocal position before shift: " << localPos.x() <<
" phi: " << localPos.y());
556 localPos = localPosShift;
559 ATH_MSG_DEBUG(
"\t\tLocal position: x=" << localPos.x() <<
" y=" << localPos.y() );
562 Eigen::Matrix<float,1,1> localPosition;
563 Eigen::Matrix<float,1,1> localCovariance;
564 localCovariance.setZero();
567 localPosition(0, 0) = localPos.x();
572 if ( designNew ==
nullptr )
return StatusCode::FAILURE;
574 localPosition(0, 0) = localInPolar.
xPhi();
578 Eigen::Matrix<float,3,1> globalPosition(
h.getX(),
h.getY(),
h.getZ());
579 ATH_MSG_DEBUG(
"\t\tGlobal position: x=" << globalPosition.x() <<
" y=" << globalPosition.y() <<
" z=" << globalPosition.z() );
581 cl.setMeasurement<1>(
hash, localPosition, localCovariance);
582 cl.setIdentifier( rdoList.front().get_compact() );
583 cl.setRDOlist(rdoList);
584 cl.globalPosition() = globalPosition;
585 cl.setChannelsInPhi(siWidth.
colRow()[0]);
587 return StatusCode::SUCCESS;
591 ATH_MSG_DEBUG(
"\t Create InDet::PixelCluster from FPGATrackSimCluster");
593 std::vector<Identifier> rdoList;
596 return StatusCode::SUCCESS;
600 ATH_MSG_DEBUG(
"\t Create xAOD::PixelCluster from FPGATrackSimCluster");
602 std::vector<Identifier> rdoList;
605 return StatusCode::SUCCESS;
609 ATH_MSG_DEBUG(
"\t Create InDet::SCT_Cluster from FPGATrackSimCluster");
611 std::vector<Identifier> rdoList;
614 return StatusCode::SUCCESS;
618 ATH_MSG_DEBUG(
"\t Create xAOD::StripCluster from FPGATrackSimCluster");
620 std::vector<Identifier> rdoList;
623 return StatusCode::SUCCESS;
634 Eigen::Matrix<float, 3, 1> globalPos(p_cl->globalPosition().x(), p_cl->globalPosition().y(), p_cl->globalPosition().z());
638 const float & cov_r = p_cl->localCovariance<2>()(0,0);
639 const float & cov_z = p_cl->localCovariance<2>()(1,0);
642 std::vector< const xAOD::UncalibratedMeasurement* > measurementLinks({ p_cl });
644 pixelSPs.
back()->setSpacePoint(
645 p_cl->identifierHash(),
653 return StatusCode::SUCCESS;
669 Eigen::Matrix<float,3,1> globalPos(clEq.
getX(),clEq.
getY(),clEq.
getZ());
675 float covTerm = 1600.*
deltaY;
676 Eigen::Matrix<float, 2, 1> variance(0.1, 8.*covTerm);
680 std::swap( variance(0, 0), variance(1, 0) );
681 float cov_r = variance(0,0);
682 float cov_z = variance(1,0);
687 std::vector<unsigned int> idHashList;
688 std::vector<const xAOD::UncalibratedMeasurement_v1*> measurements;
692 float topHalfStripLength, bottomHalfStripLength;
699 idHashList.push_back(
h.getIdentifierHash());
700 for (
auto orig_cl : clustersCont) {
701 if (
h.getIdentifierHash()==orig_cl->identifierHash()) {
704 measurements.push_back(orig_cl);
712 Amg::Vector3D stripCenterDistance = stripCenter1 - stripCenter2;
714 ATH_MSG_DEBUG(
"topHalfStripLength = " << topHalfStripLength <<
" bottomHalfStripLength = " << bottomHalfStripLength);
715 ATH_MSG_DEBUG(
"topStripDirection = (" << topStripDirection.x() <<
", " << topStripDirection.y() <<
", " << topStripDirection.z() <<
") " <<
"bottomStripDirection = (" << bottomStripDirection.x() <<
", " << bottomStripDirection.y() <<
", " << bottomStripDirection.z() <<
") " );
716 ATH_MSG_DEBUG(
"stripCenterDistance = (" << stripCenterDistance.x() <<
", " << stripCenterDistance.y() <<
", " << stripCenterDistance.z() <<
")" );
717 ATH_MSG_DEBUG(
"topStripCenter = (" << topStripCenter.x() <<
", " << topStripCenter.y() <<
", " << topStripCenter.z() <<
")" );
727 bottomHalfStripLength,
728 topStripDirection.cast<
float>(),
729 bottomStripDirection.cast<
float>(),
730 stripCenterDistance.cast<
float>(),
731 topStripCenter.cast<
float>()
734 return StatusCode::SUCCESS;
739 std::vector<FPGATrackSimHit>
hits = cluster.getHitList();
744 int etaIndex =
h.getEtaIndex();
749 rdoList.push_back(hit_id);
754 rdoList.push_back(hit_id);
758 return StatusCode::SUCCESS;
767 int etaIndex =
h.getEtaIndex();
772 rdoList.push_back(hit_id);
777 rdoList.push_back(hit_id);
780 return StatusCode::SUCCESS;
795 std::pair<Amg::Vector3D, Amg::Vector3D>
end = (pDE->
endsOfStrip(localPos));
796 stripCenter = 0.5 * (
end.first +
end.second);
799 halfStripLength = 0.5 * stripDir.norm();
800 stripDirection = stripDir / (2. * (halfStripLength));
802 return StatusCode::SUCCESS;