/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
Fireworks/Core/interface/FWEventSelector.h
24 строки
516 B
Cms Build
Clang-Format
20 май 2019, 13:07
20 май 2019, 13:07
6684288
Код
Авторство
О чём код?
// -*- C++ -*- #ifndef Fireworks_Core_FWEventSelector_h #define Fireworks_Core_FWEventSelector_h // // Package: newVersion // Class : FWEventSelector // // system include files #include <string> struct FWEventSelector { FWEventSelector(FWEventSelector* s) { *this = *s; } FWEventSelector() : m_enabled(false), m_selected(-1), m_updated(false) {} std::string m_expression; std::string m_description; std::string m_triggerProcess; bool m_enabled; int m_selected; bool m_updated; }; #endif