CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
L1MuDTChambPhDigi.cc
Go to the documentation of this file.
1 //-------------------------------------------------
2 //
3 // Class L1MuDTChambPhDigi
4 //
5 // Description: input data for PHTF trigger
6 //
7 //
8 // Author List: Jorge Troconiz UAM Madrid
9 //
10 //
11 //--------------------------------------------------
12 
13 //-----------------------
14 // This Class's Header --
15 //-----------------------
17 
18 //-------------------------------
19 // Collaborating Class Headers --
20 //-------------------------------
21 
22 
23 //---------------
24 // C++ Headers --
25 //---------------
26 using namespace std;
27 
28 //-------------------
29 // Initializations --
30 //-------------------
31 
32 
33 //----------------
34 // Constructors --
35 //----------------
37 
38  bx = -100;
39  wheel = 0;
40  sector = 0;
41  station = 0;
42  radialAngle = 0;
43  bendingAngle = 0;
44  qualityCode = 7;
45  Ts2TagCode = 0;
46  BxCntCode = 0;
47 }
48 
49 L1MuDTChambPhDigi::L1MuDTChambPhDigi( int ubx, int uwh, int usc, int ust,
50  int uphr, int uphb, int uqua, int utag, int ucnt ) {
51 
52  bx = ubx;
53  wheel = uwh;
54  sector = usc;
55  station = ust;
56  radialAngle = uphr;
57  bendingAngle = uphb;
58  qualityCode = uqua;
59  Ts2TagCode = utag;
60  BxCntCode = ucnt;
61 }
62 
63 //--------------
64 // Destructor --
65 //--------------
67 }
68 
69 //--------------
70 // Operations --
71 //--------------
73  return bx;
74 }
75 
77  return wheel;
78 }
80  return sector;
81 }
83  return station;
84 }
85 
87  return radialAngle;
88 }
89 
91  return bendingAngle;
92 }
93 
95  return qualityCode;
96 }
97 
99  return Ts2TagCode;
100 }
101 
103  return BxCntCode;
104 }