Skip to content
Snippets Groups Projects
Commit a7fae06c authored by Edward Moyse's avatar Edward Moyse
Browse files

Merge branch 'adapt_to_acts_version_0.27.01' into 'master'

Adapt to Acts v0.27.01: Remove refitAfterBadVertex option

See merge request atlas/athena!34676
parents 4df81371 58d54fe4
No related branches found
No related tags found
No related merge requests found
......@@ -144,7 +144,6 @@ private:
BooleanProperty m_do3dSplitting{this, "do3dSplitting", false, "Do 3d-splitting"};
DoubleProperty m_maximumVertexContamination{this, "maximumVertexContamination", 0.5, "Max. vertex contamination"};
DoubleProperty m_looseConstrValue{this, "looseConstrValue", 1e+8, "Loose constraint value"};
BooleanProperty m_refitAfterBadVertex{this, "refitAfterBadVertex", false, "Run multivertex refit after bad vertex"};
BooleanProperty m_useVertexCovForIPEstimation{this, "useVertexCovForIPEstimation", false, "Use seed vertex cov for IPEstimation"};
BooleanProperty m_useSeedConstraint{this, "useSeedConstraint", true, "Use seed constraint in fit"};
// Final vertex selection variables
......
......@@ -126,7 +126,6 @@ ActsAdaptiveMultiPriVtxFinderTool::initialize()
finderConfig.do3dSplitting = m_do3dSplitting;
finderConfig.maximumVertexContamination = m_maximumVertexContamination;
finderConfig.looseConstrValue = m_looseConstrValue;
finderConfig.refitAfterBadVertex = m_refitAfterBadVertex;
finderConfig.useVertexCovForIPEstimation = m_useVertexCovForIPEstimation;
finderConfig.useSeedConstraint = m_useSeedConstraint;
m_vertexFinder = std::make_shared<VertexFinder>(finderConfig, extractParameters);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment