Skip to content

Commit

Permalink
Fix building with ACTS 31 (#333)
Browse files Browse the repository at this point in the history
Co-authored-by: jmcarcell <[email protected]>
  • Loading branch information
jmcarcell and jmcarcell authored Jan 12, 2024
1 parent e40fbf2 commit 9a82687
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 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 All @@ -116,7 +116,11 @@ VertexFinderAMVF(ROOT::VecOps::RVec<edm4hep::TrackState> tracks ){
//finderConfig.maxIterations = 10000;//100;
// Instantiate the finder

#if ACTS_VERSION_MAJOR >= 31
Finder finder(std::move(finderConfig));//, Acts::getDefaultLogger("Finder", Acts::Logging::VERBOSE));
#else
Finder finder(finderConfig);//, Acts::getDefaultLogger("Finder", Acts::Logging::VERBOSE));
#endif
// The vertex finder state
Finder::State state;

Expand Down

0 comments on commit 9a82687

Please sign in to comment.