/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
MagneticField/GeomBuilder/src/eLayer.h
35 строк
760 B
Carl Vuosalo
Push since IB has expired -- need to rebase. Addressing PR comments, but not compiling yet.
05 сен 2019, 22:04
05 сен 2019, 22:04
a9ff173
Код
Авторство
О чём код?
#ifndef eLayer_H #define eLayer_H /** \class MagGeoBuilderFromDDD::eLayer * A layer of volumes in an endcap sector. * * \author N. Amapane - INFN Torino */ #include "bSector.h" class MagELayer; namespace magneticfield { class eLayer { public: /// Constructor from list of volumes eLayer(handles::const_iterator begin, handles::const_iterator end); /// Destructor ~eLayer() = default; // /// Return the list of all volumes. // const handles & volumes() const {return theVolumes;} /// Construct the MagELayer upon request. MagELayer* buildMagELayer() const; private: handles theVolumes; // pointer to all volumes in this layer mutable MagELayer* mlayer; }; } // namespace magneticfield #endif