CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_4_2_9_HLT1_bphpatch4/src/RecoTracker/TkTrackingRegions/interface/GlobalDetRangeZPhi.h

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