/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
DataFormats/Provenance/interface/RunAux.h
23 строки
601 B
W. David Dagenhart
From scram b code-format-all (clang-format)
10 май 2019, 17:51
10 май 2019, 17:51
82e0ab0
Код
Авторство
О чём код?
#ifndef DataFormats_Provenance_RunAux_h #define DataFormats_Provenance_RunAux_h #include <iosfwd> #include "DataFormats/Provenance/interface/ProcessHistoryID.h" #include "DataFormats/Provenance/interface/RunID.h" // Auxiliary run information that is persistent. // Obsolete format, used for backward compatibility only. namespace edm { class RunAuxiliary; class RunAux { public: RunAux() : processHistoryID_(), id_() {} ~RunAux() {} ProcessHistoryID processHistoryID_; RunNumber_t id_; }; void conversion(RunAux const& from, RunAuxiliary& to); } // namespace edm #endif