/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
DataFormats/ParticleFlowReco/interface/PFBlockFwd.h
31 строка
870 B
Matti Kortelainen
Move stored types in io_v1 namespace, reset class versions to 3
22 май 2026, 18:18
22 май 2026, 18:18
909f324
Код
Авторство
О чём код?
#ifndef ParticleFlowReco_PFBlockFwd_h #define ParticleFlowReco_PFBlockFwd_h #include <vector> #include "DataFormats/Common/interface/Ref.h" /* #include "DataFormats/Common/interface/RefVector.h" */ /* #include "DataFormats/Common/interface/RefProd.h" */ namespace reco { namespace io_v1 { class PFBlock; } using PFBlock = io_v1::PFBlock; /// collection of PFBlock objects typedef std::vector<PFBlock> PFBlockCollection; /// collection of PFBlock objects typedef std::vector<PFBlock> PFBlockCollection; /// persistent reference to PFCluster objects typedef edm::Ref<PFBlockCollection> PFBlockRef; /// handle to a block collection typedef edm::Handle<PFBlockCollection> PFBlockHandle; /// iterator over a vector of references to PFBlock objects /* typedef PFBlockRefVector::iterator PFBlock_iterator; */ } // namespace reco #endif