CMS 3D CMS Logo

/afs/cern.ch/work/a/aaltunda/public/www/CMSSW_6_2_7/src/RecoTracker/TkMSParametrization/interface/PixelRecoPointRZ.h

Go to the documentation of this file.
00001 #ifndef PixelRecoPointRZ_H
00002 #define PixelRecoPointRZ_H
00003 
00006 class PixelRecoPointRZ {
00007 public:
00008   PixelRecoPointRZ() { }
00009   PixelRecoPointRZ(float r,float z) : theR(r), theZ(z) { }
00010   float r() const { return theR; }
00011   float z() const { return theZ; }
00012 private:
00013   float theR, theZ;
00014 };
00015 #endif