test
CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
FrameConversion.h
Go to the documentation of this file.
1 #ifndef SiPixelObjects_FrameConversion_H
2 #define SiPixelObjects_FrameConversion_H
3 
5 #include <boost/cstdint.hpp>
6 
7 class PixelEndcapName;
8 class PixelBarrelName;
9 
10 namespace sipixelobjects {
11 
13 public:
15  FrameConversion( const PixelEndcapName & name, int rocIdInDetUnit);
16  FrameConversion( const PixelBarrelName & name, int rocIdInDetUnit);
17  FrameConversion( int rowOffset, int rowSlopeSign, int colOffset, int colSlopeSign)
18  : theRowConversion( LinearConversion(rowOffset,rowSlopeSign) ),
19  theCollumnConversion( LinearConversion(colOffset, colSlopeSign) ) {}
20 
23 
24 private:
27 };
28 
29 }
30 #endif
const sipixelobjects::LinearConversion & row() const
const sipixelobjects::LinearConversion & collumn() const
sipixelobjects::LinearConversion theRowConversion
FrameConversion(int rowOffset, int rowSlopeSign, int colOffset, int colSlopeSign)
sipixelobjects::LinearConversion theCollumnConversion