/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
RecoParticleFlow/PFTracking/plugins/PFDisplacedVertexSelector.cc
32 строки
992 B
Jonas Rembser
Merge .h and .cc files of RecoParticleFlow/PFTracking plugins
08 май 2021, 00:21
08 май 2021, 00:21
0dd871b
Код
Авторство
О чём код?
/* \class PFDisplacedVertexSelector * * Selects vertices with a configurable string-based cut. * Saves clones of the selected vertices * * \author: Luca Lista, INFN * * usage: * * module bestVertices = VertexSelector { * src = ctfWithMaterialTracks * string cut = "chiSquared < 5" * } * * for more details about the cut syntax, see the documentation * page below: * * https://twiki.cern.ch/twiki/bin/view/CMS/SWGuidePhysicsCutParser * * */ #include "FWCore/Framework/interface/MakerMacros.h" #include "CommonTools/UtilAlgos/interface/SingleObjectSelector.h" #include "CommonTools/UtilAlgos/interface/StringCutObjectSelector.h" #include "DataFormats/ParticleFlowReco/interface/PFDisplacedVertex.h" #include "DataFormats/ParticleFlowReco/interface/PFDisplacedVertexFwd.h" typedef SingleObjectSelector<reco::PFDisplacedVertexCollection, StringCutObjectSelector<reco::PFDisplacedVertex> > PFDisplacedVertexSelector; DEFINE_FWK_MODULE(PFDisplacedVertexSelector);