1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#ifndef Geom_BoundCylinder_H
#define Geom_BoundCylinder_H
/** \class BoundCylinder
*
* A Cylinder with Bounds.
*
* \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).
*
*/
#include "DataFormats/GeometrySurface/interface/Cylinder.h"
using BoundCylinder = Cylinder;
#endif // Geom_BoundCylinder_H
|