Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix building with ACTS 31 #333

Merged
merged 1 commit into from
Jan 12, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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