CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
PixelConfigKey.h
Go to the documentation of this file.
1 #ifndef PixelConfigKey_h
2 #define PixelConfigKey_h
3 
9 #include <iostream>
10 #include <fstream>
11 #include <string>
12 #include <assert.h>
13 
14 namespace pos{
21 
22  public:
23 
24  explicit PixelConfigKey(unsigned int key) { key_=key;}
25  unsigned int key() {return key_;}
26 
27  private:
28 
29  unsigned int key_;
30 
31  };
32 }
33 #endif
This class implements..
unsigned int key()
PixelConfigKey(unsigned int key)