/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
DataFormats/SiStripCommon/interface/ConstantsForPresentation.h
38 строк
1 KB
Cms Build
Clang-Format
03 июн 2019, 06:55
03 июн 2019, 06:55
1830d94
Код
Авторство
О чём код?
#ifndef DataFormats_SiStripCommon_ConstantsForPresentation_H #define DataFormats_SiStripCommon_ConstantsForPresentation_H #include "DataFormats/SiStripCommon/interface/Constants.h" #include <string> /** @file ConstantsForPresentation.h @brief Constants and enumerated type for sistrip::Presentation */ namespace sistrip { // ---------- Constants ---------- static const char unknownPresentation_[] = "UnknownPresentation"; static const char undefinedPresentation_[] = "UndefinedPresentation"; static const char histo1d_[] = "Histo1D"; static const char histo2dSum_[] = "Histo2DSum"; static const char histo2dScatter_[] = "Histo2DScatter"; static const char profile1D_[] = "Profile1D"; // ---------- Enumerated type ---------- enum Presentation { UNKNOWN_PRESENTATION = sistrip::unknown_, UNDEFINED_PRESENTATION = sistrip::invalid_, HISTO_1D = 1, HISTO_2D_SUM = 2, HISTO_2D_SCATTER = 3, PROFILE_1D = 4 }; } // namespace sistrip #endif // DataFormats_SiStripCommon_ConstantsForPresentation_H