Skip to content

Commit

Permalink
Fix building with ACTS 31
Browse files Browse the repository at this point in the history
  • Loading branch information
jmcarcell committed Jan 12, 2024
1 parent 8f5318b commit f81dffb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion analyzers/dataframe/src/VertexFinderActs.cc
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ 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,
Finder::Config finderConfig = {std::move(fitter), std::move(seedFinder), ipEstimator,
std::move(linearizer), bField};

#if ACTS_VERSION_MAJOR < 29
Expand Down

0 comments on commit f81dffb

Please sign in to comment.