CMS 3D CMS Logo

/afs/cern.ch/work/a/aaltunda/public/www/CMSSW_5_3_14/src/RecoTracker/TkTrackingRegions/interface/GlobalDetRangeRPhi.h

Go to the documentation of this file.
00001 #ifndef RecoTracker_TkTrackingRegions_GlobalDetRangeRPhi_H
00002 #define RecoTracker_TkTrackingRegions_GlobalDetRangeRPhi_H
00003 
00004 #include <utility>
00005 
00006 class BoundPlane;
00007 
00010 class GlobalDetRangeRPhi {
00011 public:
00012 
00013   typedef std::pair<float,float> Range;
00014 
00015   GlobalDetRangeRPhi( const BoundPlane& det);
00016 
00017   Range rRange() const { return theRRange;}
00018   Range phiRange() const { return thePhiRange;}
00019 
00020 private:
00021   Range theRRange;
00022   Range thePhiRange;
00023 };
00024 
00025 #endif