CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_3_10_patch2/src/RecoTracker/TkDetLayers/src/GlobalDetRodRangeZPhi.h

Go to the documentation of this file.
00001 #ifndef RecoTracker_TkDetLayers_GlobalDetRodRangeZPhi_h
00002 #define RecoTracker_TkDetLayers_GlobalDetRodRangeZPhi_h
00003 
00004 #include <utility>
00005 
00006 class BoundPlane;
00007 
00011 #pragma GCC visibility push(hidden)
00012 class GlobalDetRodRangeZPhi {
00013 public:
00014 
00015   typedef std::pair<float,float> Range;
00016 
00017   GlobalDetRodRangeZPhi( const BoundPlane& RodPlane);
00018 
00019   Range zRange() const { return theZRange;}
00020   Range phiRange() const { return thePhiRange;}
00021 
00022 private:
00023   Range theZRange;
00024   Range thePhiRange;
00025 };
00026 
00027 #pragma GCC visibility pop
00028 #endif