5 #include "Acts/Surfaces/PerigeeSurface.hpp"
14 const std::string&
name,
26 return StatusCode::SUCCESS;
33 std::vector<ActsTrk::ProtoTrack> & foundProtoTracks,
34 const std::vector<std::vector<FPGATrackSimHit>>& hitsInRoads,
35 const std::vector<FPGATrackSimRoad>& roads)
const {
37 ATH_MSG_INFO(
"Creating Acts proto-tracks from FPGA roads...");
39 if (hitsInRoads.size() > 0) {
41 for(
size_t roadIndex=0; roadIndex<=hitsInRoads.size()-1;roadIndex++) {
42 std::vector<ActsTrk::ATLASUncalibSourceLink>
points;
45 std::unique_ptr<Acts::BoundTrackParameters> inputPerigee =
makeParams(roads.at(roadIndex));
46 foundProtoTracks.emplace_back(
points, std::move(inputPerigee));
52 return StatusCode::SUCCESS;
58 std::vector<ActsTrk::ProtoTrack> & foundProtoTracks,
59 const std::vector<FPGATrackSimTrack>& tracks)
const {
61 ATH_MSG_INFO(
"Creating Acts proto-tracks from FPGA tracks...");
64 if (not
track.passedOR())
continue;
65 std::vector<ActsTrk::ATLASUncalibSourceLink>
points;
66 const std::vector <FPGATrackSimHit>&
hits =
track.getFPGATrackSimHits();
70 std::unique_ptr<Acts::BoundTrackParameters> inputPerigee =
makeParams(
track);
71 foundProtoTracks.emplace_back(
points, std::move(inputPerigee));
74 return StatusCode::SUCCESS;
80 std::vector<ActsTrk::ATLASUncalibSourceLink>& measurements,
81 const std::vector <FPGATrackSimHit>&
hits)
const {
84 return StatusCode::FAILURE;
92 ATH_CHECK(matchTrackMeasurements<xAOD::PixelCluster>(ctx, pixelClusterContainer,
ids, measurements));
94 else if (
h.isStrip()) {
96 ATH_CHECK(matchTrackMeasurements<xAOD::StripCluster>(ctx, stripClusterContainer,
ids, measurements));
100 return StatusCode::FAILURE;
106 return StatusCode::SUCCESS;
111 std::vector<Identifier>
ids;
116 ids.reserve(idHashVec.size());
120 for (
size_t i = 0;
i < idHashVec.size(); ++
i)
131 for (
size_t i = 0;
i < idHashVec.size(); ++
i)
143 template <
typename XAOD_CLUSTER>
146 const std::vector<Identifier>& rdoIDs,
147 std::vector<ActsTrk::ATLASUncalibSourceLink>& measurements)
const
149 for (
const XAOD_CLUSTER*
cl : clusterContainer) {
150 const auto& rdoList =
cl->rdoList();
151 if(rdoIDs.size() != rdoList.size())
continue;
152 size_t matchedCounter=0;
154 if(
std::find(rdoList.begin(), rdoList.end(),
id) != rdoList.end()) matchedCounter++;
156 if(matchedCounter == rdoList.size())
158 else if (matchedCounter>0) {
159 std::stringstream
ss;
160 ss <<
"List of xAOD cluster rdoIDs:\n";
163 ss <<
"\nList of FPGA cluster rdoIDs:\n";
166 ATH_MSG_ERROR(
std::format(
"Noticed rdoID mismatch: commonHits = {} | xAODClusterHits = {} | FPGAClusterHits = {}\n{}",
167 matchedCounter, rdoList.size(), rdoIDs.size(),
ss.str()));
168 return StatusCode::FAILURE;
171 return StatusCode::SUCCESS;
175 using namespace Acts::UnitLiterals;
177 std::shared_ptr<const Acts::Surface> actsSurface = Acts::Surface::makeShared<Acts::PerigeeSurface>(Acts::Vector3(0., 0., 0.));
180 constexpr
double GeVToMeV = 1000;
186 double qop = (std::abs(road.
getY()) > 1
E-9) ? road.
getY()/GeVToMeV : 1
E-12;
193 Acts::BoundSquareMatrix
cov = Acts::BoundSquareMatrix::Identity();
194 cov *= (GeVToMeV*GeVToMeV);
199 Acts::PdgParticle absPdg = Acts::makeAbsolutePdgParticle(Acts::ePionPlus);
201 absPdg,
mass, Acts::AnyCharge{1.0f}};
203 return std::make_unique<Acts::BoundTrackParameters>(actsSurface,
params,
204 cov, actsHypothesis);
211 using namespace Acts::UnitLiterals;
212 std::shared_ptr<const Acts::Surface> actsSurface = Acts::Surface::makeShared<Acts::PerigeeSurface>(Acts::Vector3(0., 0., 0.));
215 constexpr
double GeVToMeV = 1000;
220 double qop=
track.getQOverPt();
227 Acts::BoundSquareMatrix
cov = Acts::BoundSquareMatrix::Identity();
228 cov *= (GeVToMeV*GeVToMeV);
233 Acts::PdgParticle absPdg = Acts::makeAbsolutePdgParticle(Acts::ePionPlus);
235 absPdg,
mass, Acts::AnyCharge{1.0f}};
237 return std::make_unique<Acts::BoundTrackParameters>(actsSurface,
params,
238 cov, actsHypothesis);