Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:28:46

0001 #ifndef RecoTracker_TkDetLayers_GlobalDetRodRangeZPhi_h
0002 #define RecoTracker_TkDetLayers_GlobalDetRodRangeZPhi_h
0003 
0004 #include <utility>
0005 
0006 class Plane;
0007 
0008 /** Implementation class for PhiZMeasurementEstimator etc.
0009  */
0010 
0011 #pragma GCC visibility push(hidden)
0012 class GlobalDetRodRangeZPhi {
0013 public:
0014   typedef std::pair<float, float> Range;
0015 
0016   GlobalDetRodRangeZPhi(const Plane& RodPlane);
0017 
0018   Range zRange() const { return theZRange; }
0019   Range phiRange() const { return thePhiRange; }
0020 
0021 private:
0022   Range theZRange;
0023   Range thePhiRange;
0024 };
0025 
0026 #pragma GCC visibility pop
0027 #endif