/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
CondFormats/RunInfo/interface/RunInfo.h
44 строки
902 B
Shahzad Malik Muzaffar
[ALCA-DB] Changes suggested by new llvm18 clang-format
05 сен 2024, 17:06
05 сен 2024, 17:06
d09a7ed
Код
Авторство
О чём код?
#ifndef RunInfo_h #define RunInfo_h #include "CondFormats/Serialization/interface/Serializable.h" #include <iostream> #include <vector> /* * \class RunInfo * * hosting run information, above all the run start and stop time, the list of fed joining, the . * * \author Michele de Gruttola (degrutto) - INFN Naples / CERN (Oct-10-2008) * */ class RunInfo { public: int m_run; long long m_start_time_ll; std::string m_start_time_str; long long m_stop_time_ll; std::string m_stop_time_str; std::vector<int> m_fed_in; float m_start_current; float m_stop_current; float m_avg_current; float m_max_current; float m_min_current; float m_run_intervall_micros; std::vector<float> m_current; std::vector<float> m_times_of_currents; RunInfo(); virtual ~RunInfo() {} static RunInfo* Fake_RunInfo(); void printAllValues() const; COND_SERIALIZABLE; }; #endif