File indexing completed on 2024-09-07 04:38:03
0001 #ifndef _AbstractConfReconstructor_H_
0002 #define _AbstractConfReconstructor_H_
0003
0004 #include "RecoVertex/VertexPrimitives/interface/VertexReconstructor.h"
0005 #include "FWCore/ParameterSet/interface/ParameterSet.h"
0006
0007
0008
0009
0010
0011
0012 class AbstractConfReconstructor : public VertexReconstructor {
0013 public:
0014
0015
0016
0017 virtual void configure(const edm::ParameterSet&) = 0;
0018 virtual edm::ParameterSet defaults() const = 0;
0019 ~AbstractConfReconstructor() override {}
0020 AbstractConfReconstructor* clone() const override = 0;
0021 };
0022
0023 #endif