Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 11:58:12

0001 #ifndef PixelConfigKey_h
0002 #define PixelConfigKey_h
0003 /*! \file CalibFormats/SiPixelObjects/interface/PixelConfigKey.h
0004 *   \brief This class implements the configuration key which actually just is an integer.
0005 *
0006 *   A longer explanation will be placed here later
0007 */
0008 
0009 #include <iostream>
0010 #include <fstream>
0011 #include <string>
0012 #include <cassert>
0013 
0014 namespace pos {
0015   /*! \class PixelConfigKey PixelConfigKey.h "interface/PixelConfigKey.h"
0016 *   \brief This class implements..
0017 *
0018 *   A longer explanation will be placed here later
0019 */
0020   class PixelConfigKey {
0021   public:
0022     explicit PixelConfigKey(unsigned int key) { key_ = key; }
0023     unsigned int key() { return key_; }
0024 
0025   private:
0026     unsigned int key_;
0027   };
0028 }  // namespace pos
0029 #endif