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
105
106
107
108
109
110
111
112
113
114
115
|
//-------------------------------------------------
//
/** \class L1MuDTTFParameters
*
* DTTF Parameters from OMDS
*
*
* $Date: 2009/05/04 09:20:57 $
* $Revision: 1.2 $
*
* J. Troconiz UAM Madrid
*/
//
//--------------------------------------------------
#ifndef L1MUDTTF_PARAMETERS_H
#define L1MUDTTF_PARAMETERS_H
#include "CondFormats/Serialization/interface/Serializable.h"
//---------------
// C++ Headers --
//---------------
//----------------------
// Base Class Headers --
//----------------------
//------------------------------------
// Collaborating Class Declarations --
//------------------------------------
// ---------------------
// -- Class Interface --
// ---------------------
class L1MuDTTFParameters {
public:
/// constructor
L1MuDTTFParameters() { reset(); }
/// destructor
virtual ~L1MuDTTFParameters() {}
/// reset parameters to zero
void reset();
void set_inrec_qual_st1(int wh, int sc, const unsigned short int val);
unsigned short int get_inrec_qual_st1(int wh, int sc) const;
void set_inrec_qual_st2(int wh, int sc, const unsigned short int val);
unsigned short int get_inrec_qual_st2(int wh, int sc) const;
void set_inrec_qual_st3(int wh, int sc, const unsigned short int val);
unsigned short int get_inrec_qual_st3(int wh, int sc) const;
void set_inrec_qual_st4(int wh, int sc, const unsigned short int val);
unsigned short int get_inrec_qual_st4(int wh, int sc) const;
void set_soc_stdis_n(int wh, int sc, const unsigned short int val);
unsigned short int get_soc_stdis_n(int wh, int sc) const;
void set_soc_stdis_wl(int wh, int sc, const unsigned short int val);
unsigned short int get_soc_stdis_wl(int wh, int sc) const;
void set_soc_stdis_wr(int wh, int sc, const unsigned short int val);
unsigned short int get_soc_stdis_wr(int wh, int sc) const;
void set_soc_stdis_zl(int wh, int sc, const unsigned short int val);
unsigned short int get_soc_stdis_zl(int wh, int sc) const;
void set_soc_stdis_zr(int wh, int sc, const unsigned short int val);
unsigned short int get_soc_stdis_zr(int wh, int sc) const;
void set_soc_qcut_st1(int wh, int sc, const unsigned short int val);
unsigned short int get_soc_qcut_st1(int wh, int sc) const;
void set_soc_qcut_st2(int wh, int sc, const unsigned short int val);
unsigned short int get_soc_qcut_st2(int wh, int sc) const;
void set_soc_qcut_st4(int wh, int sc, const unsigned short int val);
unsigned short int get_soc_qcut_st4(int wh, int sc) const;
void set_soc_qual_csc(int wh, int sc, const unsigned short int val);
unsigned short int get_soc_qual_csc(int wh, int sc) const;
void set_soc_run_21(int wh, int sc, const bool val);
bool get_soc_run_21(int wh, int sc) const;
void set_soc_nbx_del(int wh, int sc, const bool val);
bool get_soc_nbx_del(int wh, int sc) const;
void set_soc_csc_etacanc(int wh, int sc, const bool val);
bool get_soc_csc_etacanc(int wh, int sc) const;
void set_soc_openlut_extr(int wh, int sc, const bool val);
bool get_soc_openlut_extr(int wh, int sc) const;
void print() const;
private:
int check(int wh, int sc) const;
private:
unsigned short int inrec_qual_st1[6][12];
unsigned short int inrec_qual_st2[6][12];
unsigned short int inrec_qual_st3[6][12];
unsigned short int inrec_qual_st4[6][12];
unsigned short int soc_stdis_n[6][12];
unsigned short int soc_stdis_wl[6][12];
unsigned short int soc_stdis_wr[6][12];
unsigned short int soc_stdis_zl[6][12];
unsigned short int soc_stdis_zr[6][12];
unsigned short int soc_qcut_st1[6][12];
unsigned short int soc_qcut_st2[6][12];
unsigned short int soc_qcut_st4[6][12];
unsigned short int soc_qual_csc[6][12];
bool soc_run_21[6][12];
bool soc_nbx_del[6][12];
bool soc_csc_etacanc[6][12];
bool soc_openlut_extr[6][12];
COND_SERIALIZABLE;
};
#endif
|