CMS 3D CMS Logo

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 <cassert>
13 
14 namespace pos {
21  public:
22  explicit PixelConfigKey(unsigned int key) { key_ = key; }
23  unsigned int key() { return key_; }
24 
25  private:
26  unsigned int key_;
27  };
28 } // namespace pos
29 #endif
This class implements..
unsigned int key()
PixelConfigKey(unsigned int key)