test
CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
L1DataEmulResult.cc
Go to the documentation of this file.
2 
4  event_match_(true),
5  collname_(""),
6  pt_mismatch_(0),
7  etaphi_mismatch_(0),
8  n_mismatch_(0),
9  n_dataonly_(0),
10  n_emulonly_(0),
11  add1_(0),
12  add2_(0)
13 {}
14 
16  event_match_(event_match),
17  collname_(collname),
18  pt_mismatch_(0),
19  etaphi_mismatch_(0),
20  n_mismatch_(0),
21  n_dataonly_(0),
22  n_emulonly_(0),
23  add1_(0),
24  add2_(0)
25 {}
26 
27 l1t::L1DataEmulResult::L1DataEmulResult(bool event_match, int pt_mismatch, int etaphi_mismatch, int n_mismatch, int n_dataonly, int n_emulonly, int add1, int add2, std::string collname):
28  event_match_(event_match),
29  collname_(collname),
30  pt_mismatch_(pt_mismatch),
31  etaphi_mismatch_(etaphi_mismatch),
32  n_mismatch_(n_mismatch),
33  n_dataonly_(n_dataonly),
34  n_emulonly_(n_emulonly),
35  add1_(add1),
36  add2_(add2)
37 {}
38 
40 
42  return event_match_;
43 }
44 
46  return collname_;
47 }
48 
50  return pt_mismatch_;
51 }
52 
54  return etaphi_mismatch_;
55 }
56 
58  return n_mismatch_;
59 }
60 
62  return n_dataonly_;
63 }
64 
66  return n_emulonly_;
67 }
68 
70  return add1_;
71 }
72 
74  return add2_;
75 }
76 
77 
78 
79