Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 #ifndef PixelRecoPointRZ_H
0002 #define PixelRecoPointRZ_H
0003 
0004 /** Utility to group two floats into r-z coordinates */
0005 
0006 class PixelRecoPointRZ {
0007 public:
0008   PixelRecoPointRZ() {}
0009   PixelRecoPointRZ(float r, float z) : theR(r), theZ(z) {}
0010   float r() const { return theR; }
0011   float z() const { return theZ; }
0012 
0013 private:
0014   float theR, theZ;
0015 };
0016 #endif