Skip to content

Commit

Permalink
Pion as particle hypothesis
Browse files Browse the repository at this point in the history
  • Loading branch information
pandreetto committed Apr 8, 2024
1 parent ec1c70d commit 65ea259
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/ACTSSeededCKFTrackingProc.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -489,6 +489,9 @@ void ACTSSeededCKFTrackingProc::processEvent(LCEvent *evt) {
finderOpts, state, spacePointsGrouping.grid(),
std::back_inserter(seeds), bottom, middle, top, rMiddleSPRange);

//
// Loop over seeds and get track parameters
paramseeds.clear();
for (const Acts::Seed<SSPoint> &seed : seeds)
{
const SSPoint* bottomSP = seed.sp().front();
Expand Down Expand Up @@ -542,7 +545,7 @@ void ACTSSeededCKFTrackingProc::processEvent(LCEvent *evt) {
std::pow(_initialTrackError_relP * p / (p * p), 2);

Acts::BoundTrackParameters paramseed(surface->getSharedPtr(), params,
cov, Acts::ParticleHypothesis::muon()); // TODO change hypothesis
cov, Acts::ParticleHypothesis::pion());
paramseeds.push_back(paramseed);

//
Expand Down

0 comments on commit 65ea259

Please sign in to comment.