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 const float & r() const { return theR; } 00011 const float & z() const { return theZ; } 00012 private: 00013 float theR, theZ; 00014 }; 00015 #endif