CMS 3D CMS Logo

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  * constants
26  *-----------------------------------------------------------------*/
27 /* nope */
28 
32 class L1TUtmBin {
33 public:
34  // ctor
36  : hw_index(std::numeric_limits<unsigned int>::max()),
37  minimum(std::numeric_limits<double>::min()),
38  maximum(std::numeric_limits<double>::max()),
39  version(0){};
40 
41  L1TUtmBin(const unsigned int id, const double min, const double max)
42  : hw_index(id), minimum(min), maximum(max), version(0){};
43 
44  // dtor
45  virtual ~L1TUtmBin(){};
46 
47  unsigned int hw_index;
48  double minimum;
49  double maximum;
50  unsigned int version;
52 };
53 
54 #endif // tmEventSetup_L1TUtmBin_hh
55 /* eof */
double maximum
Definition: L1TUtmBin.h:49
L1TUtmBin(const unsigned int id, const double min, const double max)
Definition: L1TUtmBin.h:41
unsigned int version
Definition: L1TUtmBin.h:50
L1TUtmBin()
Definition: L1TUtmBin.h:35
virtual ~L1TUtmBin()
Definition: L1TUtmBin.h:45
unsigned int hw_index
Definition: L1TUtmBin.h:45
T min(T a, T b)
Definition: MathUtil.h:58
#define COND_SERIALIZABLE
Definition: Serializable.h:38
double minimum
Definition: L1TUtmBin.h:48