/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
RecoParticleFlow/PFTracking/plugins/SimVertexSelector.cc
31 строка
924 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 "SimDataFormats/Vertex/interface/SimVertex.h" #include "SimDataFormats/Vertex/interface/SimVertexContainer.h" typedef SingleObjectSelector<edm::SimVertexContainer, StringCutObjectSelector<SimVertex> > SimVertexSelector; DEFINE_FWK_MODULE(SimVertexSelector);