/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
DataFormats/GeometrySurface/interface/BoundDisk.h
56 строк
2 KB
Cms Build
Clang-Format
11 июн 2019, 11:30
11 июн 2019, 11:30
044a211
Код
Авторство
О чём код?
#ifndef Geom_BoundDisk_H #define Geom_BoundDisk_H #include "DataFormats/GeometrySurface/interface/Plane.h" #include "DataFormats/GeometrySurface/interface/SimpleDiskBounds.h" /** \class BoundDisk * * A BoundDisk is a special BoundPlane that is additionally limited by an * inner and outer radius. * * \warning Surfaces are reference counted, so only ReferenceCountingPointer * should be used to point to them. For this reason, they should be * using the static build() method. * (The normal constructor will become private in the future). * */ class Disk final : public Plane { public: /* template<typename... Args> Disk(Args&& ... args) : Plane(std::forward<Args>(args)...){} */ Disk(const PositionType& pos, const RotationType& rot, SimpleDiskBounds* bounds) : Plane(pos, rot, bounds) {} Disk(const PositionType& pos, const RotationType& rot, SimpleDiskBounds const& bounds) : Plane(pos, rot, bounds.clone()) {} typedef ReferenceCountingPointer<Disk> DiskPointer; typedef ConstReferenceCountingPointer<Disk> ConstDiskPointer; typedef ReferenceCountingPointer<Disk> BoundDiskPointer; typedef ConstReferenceCountingPointer<Disk> ConstBoundDiskPointer; template <typename... Args> static DiskPointer build(Args&&... args) { return DiskPointer(new Disk(std::forward<Args>(args)...)); } ~Disk() override {} // -- DEPRECATED CONSTRUCTORS // -- Extension of the Surface interface for disk /// The inner radius of the disk float innerRadius() const { return static_cast<const SimpleDiskBounds&>(bounds()).innerRadius(); } /// The outer radius of the disk float outerRadius() const { return static_cast<const SimpleDiskBounds&>(bounds()).outerRadius(); } }; using BoundDisk = Disk; #endif // Geom_BoundDisk_H