CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_3_3/src/Geometry/TrackerNumberingBuilder/interface/TrackerShapeToBounds.h

Go to the documentation of this file.
00001 #ifndef Geometry_TrackerNumberingBuilder_TrackerShapeToBounds_H
00002 #define Geometry_TrackerNumberingBuilder_TrackerShapeToBounds_H
00003 
00004 #include "DataFormats/GeometrySurface/interface/Bounds.h"
00005 #include "DetectorDescription/Core/interface/DDSolidShapes.h"
00006 #include <vector>
00007 #include <algorithm>
00011 class TrackerShapeToBounds {
00012 public:
00016   Bounds* buildBounds( const DDSolidShape &,const std::vector<double>&) const;
00017  private:
00018 
00019   Bounds* buildBox(const std::vector<double> &) const;
00020   Bounds* buildTrap(const std::vector<double> &) const;
00021   Bounds* buildOpen(const std::vector<double> &) const;
00022 
00023 };
00024 
00025 #endif