/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
DataFormats/EgammaReco/interface/PreshowerClusterShapeFwd.h
34 строки
1 KB
Matti Kortelainen
Move stored types in io_v1 namespace, reset class versions to 3
22 май 2026, 18:18
22 май 2026, 18:18
909f324
Код
Авторство
О чём код?
#ifndef EgammaReco_PreshowerClusterShapeShapeFwd_h #define EgammaReco_PreshowerClusterShapeShapeFwd_h // // author Aris Kyriakis (NCSR "Demokritos") // #include <vector> #include "DataFormats/Common/interface/Ref.h" #include "DataFormats/Common/interface/RefVector.h" #include "DataFormats/Common/interface/RefProd.h" #include "DataFormats/EcalRecHit/interface/EcalRecHitCollections.h" namespace reco { namespace io_v1 { class PreshowerClusterShape; } using PreshowerClusterShape = io_v1::PreshowerClusterShape; /// collection of PreshowerClusterShape objects typedef std::vector<PreshowerClusterShape> PreshowerClusterShapeCollection; /// persistent reference to PreshowerClusterShape objects typedef edm::Ref<PreshowerClusterShapeCollection> PreshowerClusterShapeRef; /// reference to PreshowerClusterShape collection typedef edm::RefProd<PreshowerClusterShapeCollection> PreshowerClusterShapeRefProd; /// vector of references to PreshowerClusterShape objects all in the same collection typedef edm::RefVector<PreshowerClusterShapeCollection> PreshowerClusterShapeRefVector; /// iterator over a vector of references to PreshowerClusterShape objects typedef PreshowerClusterShapeRefVector::iterator PreshowerClusterShape_iterator; } // namespace reco #endif