CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_3_4/src/DataFormats/GeometrySurface/src/BoundCylinder.cc

Go to the documentation of this file.
00001 #include "DataFormats/GeometrySurface/interface/BoundCylinder.h"
00002 
00003 BoundCylinder::BoundCylinder( const PositionType& pos, 
00004                               const RotationType& rot, 
00005                               const Bounds* bounds) :
00006     Surface( pos,rot ),
00007     Cylinder( pos, rot, bounds->width()/2. - bounds->thickness()/2.),
00008     BoundSurface( pos, rot, bounds ) 
00009 { }
00010 
00011 BoundCylinder::BoundCylinder( const PositionType& pos, 
00012                               const RotationType& rot, 
00013                               const Bounds& bounds) :
00014     Surface( pos,rot ),
00015     Cylinder( pos, rot, bounds.width()/2. - bounds.thickness()/2.),
00016     BoundSurface( pos, rot, bounds )
00017 { }