CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
L1TUtmBin.h
Go to the documentation of this file.
1 //
2 // NOTE: This file was automatically generated from UTM library via import_utm.pl
3 // DIRECT EDITS MIGHT BE LOST.
4 //
12 #ifndef tmEventSetup_L1TUtmBin_hh
13 #define tmEventSetup_L1TUtmBin_hh
14 
15 /*====================================================================*
16  * declarations
17  *====================================================================*/
18 /*-----------------------------------------------------------------*
19  * headers
20  *-----------------------------------------------------------------*/
21 #include <limits>
23 
24 
25 /*-----------------------------------------------------------------*
26  * constants
27  *-----------------------------------------------------------------*/
28 /* nope */
29 
30 
31 
35 class L1TUtmBin
36 {
37  public:
38  // ctor
40  : hw_index(std::numeric_limits<unsigned int>::max()),
41  minimum(std::numeric_limits<double>::min()),
42  maximum(std::numeric_limits<double>::max()) { };
43 
44  L1TUtmBin(const unsigned int id,
45  const double min,
46  const double max)
47  : hw_index(id), minimum(min), maximum(max) { };
48 
49  // dtor
50  virtual ~L1TUtmBin() { };
51 
52  unsigned int hw_index;
53  double minimum;
54  double maximum;
55  unsigned int version;
57 };
58 
59 #endif // tmEventSetup_L1TUtmBin_hh
60 /* eof */
double maximum
Definition: L1TUtmBin.h:54
L1TUtmBin(const unsigned int id, const double min, const double max)
Definition: L1TUtmBin.h:44
unsigned int version
Definition: L1TUtmBin.h:55
L1TUtmBin()
Definition: L1TUtmBin.h:39
virtual ~L1TUtmBin()
Definition: L1TUtmBin.h:50
unsigned int hw_index
Definition: L1TUtmBin.h:50
T min(T a, T b)
Definition: MathUtil.h:58
#define COND_SERIALIZABLE
Definition: Serializable.h:37
double minimum
Definition: L1TUtmBin.h:53