From e4245018cda1008a37fe5331434c49cbc4ec848d Mon Sep 17 00:00:00 2001
From: Bastian Schlag <bastian.schlag@cern.ch>
Date: Sat, 29 Feb 2020 01:22:12 +0100
Subject: [PATCH] remove unused AMVFitter state constructors

---
 .../Acts/Vertexing/AdaptiveMultiVertexFitter.hpp      | 11 -----------
 1 file changed, 11 deletions(-)

diff --git a/Core/include/Acts/Vertexing/AdaptiveMultiVertexFitter.hpp b/Core/include/Acts/Vertexing/AdaptiveMultiVertexFitter.hpp
index b33841262..70fedf60c 100644
--- a/Core/include/Acts/Vertexing/AdaptiveMultiVertexFitter.hpp
+++ b/Core/include/Acts/Vertexing/AdaptiveMultiVertexFitter.hpp
@@ -71,17 +71,6 @@ class AdaptiveMultiVertexFitter {
     /// @brief Default State constructor
     State() = default;
 
-    /// @brief State constructor to initialize trackToVerticesMultiMap
-    ///
-    /// @param vtxList List of all vertices with trackAtVertex information
-    State(std::vector<Vertex<input_track_t>>& vtxList) {
-      updateTrkToVerticesMultiMap(vtxList);
-    }
-
-    State(std::vector<Vertex<input_track_t>*>& vtxList) {
-      updateTrkToVerticesMultiMap(vtxList);
-    }
-
     void updateTrkToVerticesMultiMap(
         std::vector<Vertex<input_track_t>>& vtxList) {
       trackToVerticesMultiMap.clear();
-- 
GitLab