1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
#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
|