CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_4_1_8_patch9/src/CalibFormats/SiPixelObjects/interface/PixelConfigKey.h

Go to the documentation of this file.
00001 #ifndef PixelConfigKey_h
00002 #define PixelConfigKey_h
00003 
00009 #include <iostream>
00010 #include <fstream>
00011 #include <string>
00012 #include <assert.h>
00013 
00014 namespace pos{
00020   class PixelConfigKey {
00021 
00022   public:
00023 
00024     explicit PixelConfigKey(unsigned int key) { key_=key;}
00025     unsigned int key() {return key_;}
00026 
00027   private:
00028 
00029     unsigned int key_;
00030     
00031   };
00032 }
00033 #endif