/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
CondTools/Ecal/interface/EcalCondHeader.h
32 строки
739 B
Cms Build
Clang-Format
24 май 2019, 00:17
24 май 2019, 00:17
4d23925
Код
Авторство
О чём код?
#ifndef _CondTools_Ecal_EcalCondHeader_h_ #define _CondTools_Ecal_EcalCondHeader_h_ /** Header to be associated with a set of ecal conditions * stored in XML format * * \author S. Argiro * \todo Strong types instead of strings * * $Id: EcalCondHeader.h,v 1.2 2008/10/22 08:41:31 argiro Exp $ */ #include "CondCore/CondDB/interface/Time.h" #include <string> struct EcalCondHeader { std::string method_; std::string version_; std::string datasource_; cond::Time_t since_; std::string tag_; std::string date_; EcalCondHeader() : method_(""), version_(""), datasource_(""), since_(0), tag_(""), date_("") {} void reset() { method_ = version_ = datasource_ = tag_ = date_ = ""; since_ = 0; } }; #endif