Skip to content

Commit

Permalink
Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
kjvbrt committed Mar 28, 2023
1 parent f4649bc commit 9c2bd40
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion analyzers/dataframe/src/VertexFinderActs.cc
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,8 @@ VertexFinderAMVF(ROOT::VecOps::RVec<edm4hep::TrackState> tracks ){
using Finder = Acts::AdaptiveMultiVertexFinder<Fitter, SeedFinder>;
//using Finder = Acts::AdaptiveMultiVertexFinder<Fitter, VertexSeedFinder>;
//Finder::Config finderConfig(std::move(fitter), seedFinder, ipEstimator, linearizer);
Finder::Config finderConfig = {std::move(fitter), seedFinder, ipEstimator, std::move(linearizer), bField};
Finder::Config finderConfig = {std::move(fitter), seedFinder, ipEstimator,
std::move(linearizer), bField};

// We do not want to use a beamspot constraint here
finderConfig.useBeamSpotConstraint = false;
Expand Down

0 comments on commit 9c2bd40

Please sign in to comment.