/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
DataFormats/TestObjects/interface/OtherThing.h
31 строка
1 KB
W. David Dagenhart
From scram b code-format-all (clang-format)
10 май 2019, 17:51
10 май 2019, 17:51
82e0ab0
Код
Авторство
О чём код?
#ifndef DataFormats_TestObjects_OtherThing_h #define DataFormats_TestObjects_OtherThing_h #include "DataFormats/Common/interface/Ref.h" #include "DataFormats/Common/interface/RefVector.h" #include "DataFormats/Common/interface/RefProd.h" #include "DataFormats/Common/interface/RefToBaseProd.h" #include "DataFormats/Common/interface/RefToBase.h" #include "DataFormats/Common/interface/Ptr.h" #include "DataFormats/Common/interface/PtrVector.h" #include "DataFormats/TestObjects/interface/ThingCollectionfwd.h" #include "DataFormats/TestObjects/interface/Thing.h" #include "FWCore/Utilities/interface/typedefs.h" namespace edmtest { struct OtherThing { cms_int32_t a; edm::RefProd<ThingCollection> refProd; edm::Ref<ThingCollection> ref; edm::RefVector<ThingCollection> refVec; edm::RefVector<ThingCollection> oneNullOneNot; edm::RefToBase<Thing> refToBase; edm::RefToBaseProd<Thing> refToBaseProd; edm::Ptr<Thing> ptr; edm::PtrVector<Thing> ptrVec; edm::PtrVector<Thing> ptrOneNullOneNot; }; } // namespace edmtest #endif