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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
|
#ifndef CondFormats_JetMETObjects_FFTJetLUTTypes_h
#define CondFormats_JetMETObjects_FFTJetLUTTypes_h
// FFTJet lookup table types. These types are essentially just
// labels for ES records -- all ES record types must be unique.
namespace fftluttypes {
struct EtaFlatteningFactors {
enum { value = 1000 };
inline static const char* classname() { return "EtaFlatteningFactors"; }
};
struct PileupRhoCalibration {
enum { value = 1001 };
inline static const char* classname() { return "PileupRhoCalibration"; }
};
struct PileupRhoEtaDependence {
enum { value = 1002 };
inline static const char* classname() { return "PileupRhoEtaDependence"; }
};
struct LUT0 {
enum { value = 1003 };
inline static const char* classname() { return "LUT0"; }
};
struct LUT1 {
enum { value = 1004 };
inline static const char* classname() { return "LUT1"; }
};
struct LUT2 {
enum { value = 1005 };
inline static const char* classname() { return "LUT2"; }
};
struct LUT3 {
enum { value = 1006 };
inline static const char* classname() { return "LUT3"; }
};
struct LUT4 {
enum { value = 1007 };
inline static const char* classname() { return "LUT4"; }
};
struct LUT5 {
enum { value = 1008 };
inline static const char* classname() { return "LUT5"; }
};
struct LUT6 {
enum { value = 1009 };
inline static const char* classname() { return "LUT6"; }
};
struct LUT7 {
enum { value = 1010 };
inline static const char* classname() { return "LUT7"; }
};
struct LUT8 {
enum { value = 1011 };
inline static const char* classname() { return "LUT8"; }
};
struct LUT9 {
enum { value = 1012 };
inline static const char* classname() { return "LUT9"; }
};
struct LUT10 {
enum { value = 1013 };
inline static const char* classname() { return "LUT10"; }
};
struct LUT11 {
enum { value = 1014 };
inline static const char* classname() { return "LUT11"; }
};
struct LUT12 {
enum { value = 1015 };
inline static const char* classname() { return "LUT12"; }
};
struct LUT13 {
enum { value = 1016 };
inline static const char* classname() { return "LUT13"; }
};
struct LUT14 {
enum { value = 1017 };
inline static const char* classname() { return "LUT14"; }
};
struct LUT15 {
enum { value = 1018 };
inline static const char* classname() { return "LUT15"; }
};
} // namespace fftluttypes
#endif // CondFormats_JetMETObjects_FFTJetLUTTypes_h
|