/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
CalibFormats/SiPixelObjects/src/PixelConfigBase.cc
16 строк
522 B
Cms Build
Clang-Format
20 май 2019, 13:01
20 май 2019, 13:01
125ebea
Код
Авторство
О чём код?
// // Base class for pixel configuration data // provide a place to implement common interfaces // for these objects. Any configuration data // object that is to be accessed from the database // should derive from this class // #include <iostream> #include <fstream> #include "CalibFormats/SiPixelObjects/interface/PixelConfigBase.h" using namespace pos; PixelConfigBase::PixelConfigBase(std::string description, std::string creator, std::string date) : description_(description), creator_(creator), date_(date) {}