/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
RecoVertex/MultiVertexFit/interface/MultiVertexReconstructor.h
39 строк
2 KB
Cms Build
Clang-Format
03 июн 2019, 06:34
03 июн 2019, 06:34
08e36f7
Код
Авторство
О чём код?
#ifndef _MultiVertexReconstructor_H_ #define _MultiVertexReconstructor_H_ #include "RecoVertex/VertexPrimitives/interface/VertexReconstructor.h" #include "RecoVertex/MultiVertexFit/interface/MultiVertexFitter.h" #include "RecoVertex/MultiVertexFit/interface/DefaultMVFAnnealing.h" /** * Class that wraps the MultiVertexFitter, together with * a user-supplied VertexReconstructor into a VertexReconstructor. */ class MultiVertexReconstructor : public VertexReconstructor { public: MultiVertexReconstructor(const VertexReconstructor &, const AnnealingSchedule &s = DefaultMVFAnnealing(), float revive = -1.); MultiVertexReconstructor(const MultiVertexReconstructor &); ~MultiVertexReconstructor() override; std::vector<TransientVertex> vertices(const std::vector<reco::TransientTrack> &, const reco::BeamSpot &) const override; std::vector<TransientVertex> vertices(const std::vector<reco::TransientTrack> &) const override; std::vector<TransientVertex> vertices(const std::vector<reco::TransientTrack> &, const std::vector<reco::TransientTrack> &primaries) const; std::vector<TransientVertex> vertices(const std::vector<reco::TransientTrack> &, const std::vector<reco::TransientTrack> &primaries, const reco::BeamSpot &spot) const override; VertexReconstructor *reconstructor() const; MultiVertexReconstructor *clone() const override; private: VertexReconstructor *theOldReconstructor; mutable MultiVertexFitter theFitter; }; #endif