/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
CalibFormats/SiPixelObjects/interface/PixelConfigKey.h
29 строк
724 B
Cms Build
Clang-Format
20 май 2019, 13:01
20 май 2019, 13:01
125ebea
Код
Авторство
О чём код?
#ifndef PixelConfigKey_h #define PixelConfigKey_h /*! \file CalibFormats/SiPixelObjects/interface/PixelConfigKey.h * \brief This class implements the configuration key which actually just is an integer. * * A longer explanation will be placed here later */ #include <iostream> #include <fstream> #include <string> #include <cassert> namespace pos { /*! \class PixelConfigKey PixelConfigKey.h "interface/PixelConfigKey.h" * \brief This class implements.. * * A longer explanation will be placed here later */ class PixelConfigKey { public: explicit PixelConfigKey(unsigned int key) { key_ = key; } unsigned int key() { return key_; } private: unsigned int key_; }; } // namespace pos #endif