CMS 3D CMS Logo

L1AnalysisL1UpgradeDataFormat.h
Go to the documentation of this file.
1 #ifndef __L1Analysis_L1AnalysisL1UpgradeDataFormat_H__
2 #define __L1Analysis_L1AnalysisL1UpgradeDataFormat_H__
3 
4 //-------------------------------------------------------------------------------
5 // Created 20/04/2010 - E. Conte, A.C. Le Bihan
6 //
7 //
8 // Original code : L1TriggerDPG/L1Ntuples/L1UpgradeTreeProducer - Jim Brooke
9 //-------------------------------------------------------------------------------
10 
11 
12 #include <vector>
13 
14 namespace L1Analysis
15 {
16 
17  // copied from DataFormats/L1Trigger/interface/EtSum.h, for use in standalone ROOT macros which use this class.
18  enum EtSumType {
27  };
28 
30  {
31 
34 
35  void Reset()
36  {
37  nEGs = 0;
38  egEt.clear();
39  egEta.clear();
40  egPhi.clear();
41  egIEt.clear();
42  egIEta.clear();
43  egIPhi.clear();
44  egIso.clear();
45  egBx.clear();
46  egTowerIPhi.clear();
47  egTowerIEta.clear();
48  egRawEt.clear();
49  egIsoEt.clear();
50  egFootprintEt.clear();
51  egNTT.clear();
52  egShape.clear();
53  egTowerHoE.clear();
54 
55  nTaus = 0;
56  tauEt.clear();
57  tauEta.clear();
58  tauPhi.clear();
59  tauIEt.clear();
60  tauIEta.clear();
61  tauIPhi.clear();
62  tauIso.clear();
63  tauBx.clear();
64  tauTowerIPhi.clear();
65  tauTowerIEta.clear();
66  tauRawEt.clear();
67  tauIsoEt.clear();
68  tauNTT.clear();
69  tauHasEM.clear();
70  tauIsMerged.clear();
71  tauHwQual.clear();
72 
73  nJets = 0;
74  jetEt.clear();
75  jetEta.clear();
76  jetPhi.clear();
77  jetIEt.clear();
78  jetIEta.clear();
79  jetIPhi.clear();
80  jetBx.clear();
81  jetTowerIPhi.clear();
82  jetTowerIEta.clear();
83  jetRawEt.clear();
84  jetSeedEt.clear();
85  jetPUEt.clear();
86  jetPUDonutEt0.clear();
87  jetPUDonutEt1.clear();
88  jetPUDonutEt2.clear();
89  jetPUDonutEt3.clear();
90 
91  nMuons = 0;
92  muonEt.clear();
93  muonEta.clear();
94  muonPhi.clear();
95  muonEtaAtVtx.clear();
96  muonPhiAtVtx.clear();
97  muonIEt.clear();
98  muonIEta.clear();
99  muonIPhi.clear();
100  muonIEtaAtVtx.clear();
101  muonIPhiAtVtx.clear();
102  muonIDEta.clear();
103  muonIDPhi.clear();
104  muonChg.clear();
105  muonIso.clear();
106  muonQual.clear();
107  muonTfMuonIdx.clear();
108  muonBx.clear();
109 
110  nSums = 0;
111  sumType.clear();
112  sumEt.clear();
113  sumPhi.clear();
114  sumIEt.clear();
115  sumIPhi.clear();
116  sumBx.clear();
117 
118  }
119 
120  unsigned short int nEGs;
121  std::vector<float> egEt;
122  std::vector<float> egEta;
123  std::vector<float> egPhi;
124  std::vector<short int> egIEt;
125  std::vector<short int> egIEta;
126  std::vector<short int> egIPhi;
127  std::vector<short int> egIso;
128  std::vector<short int> egBx;
129  std::vector<short int> egTowerIPhi;
130  std::vector<short int> egTowerIEta;
131  std::vector<short int> egRawEt;
132  std::vector<short int> egIsoEt;
133  std::vector<short int> egFootprintEt;
134  std::vector<short int> egNTT;
135  std::vector<short int> egShape;
136  std::vector<short int> egTowerHoE;
137 
138  unsigned short int nTaus;
139  std::vector<float> tauEt;
140  std::vector<float> tauEta;
141  std::vector<float> tauPhi;
142  std::vector<short int> tauIEt;
143  std::vector<short int> tauIEta;
144  std::vector<short int> tauIPhi;
145  std::vector<short int> tauIso;
146  std::vector<short int> tauBx;
147  std::vector<short int> tauTowerIPhi;
148  std::vector<short int> tauTowerIEta;
149  std::vector<short int> tauRawEt;
150  std::vector<short int> tauIsoEt;
151  std::vector<short int> tauNTT;
152  std::vector<short int> tauHasEM;
153  std::vector<short int> tauIsMerged;
154  std::vector<short int> tauHwQual;
155 
156  unsigned short int nJets;
157  std::vector<float> jetEt;
158  std::vector<float> jetEta;
159  std::vector<float> jetPhi;
160  std::vector<short int> jetIEt;
161  std::vector<short int> jetIEta;
162  std::vector<short int> jetIPhi;
163  std::vector<short int> jetBx;
164  std::vector<short int> jetTowerIPhi;
165  std::vector<short int> jetTowerIEta;
166  std::vector<short int> jetRawEt;
167  std::vector<short int> jetSeedEt;
168  std::vector<short int> jetPUEt;
169  std::vector<short int> jetPUDonutEt0;
170  std::vector<short int> jetPUDonutEt1;
171  std::vector<short int> jetPUDonutEt2;
172  std::vector<short int> jetPUDonutEt3;
173 
174  unsigned short int nMuons;
175  std::vector<float> muonEt;
176  std::vector<float> muonEta;
177  std::vector<float> muonPhi;
178  std::vector<float> muonEtaAtVtx;
179  std::vector<float> muonPhiAtVtx;
180  std::vector<short int> muonIEt;
181  std::vector<short int> muonIEta;
182  std::vector<short int> muonIPhi;
183  std::vector<short int> muonIEtaAtVtx;
184  std::vector<short int> muonIPhiAtVtx;
185  std::vector<short int> muonIDEta;
186  std::vector<short int> muonIDPhi;
187  std::vector<short int> muonChg;
188  std::vector<unsigned short int> muonIso;
189  std::vector<unsigned short int> muonQual;
190  std::vector<unsigned short int> muonTfMuonIdx;
191  std::vector<short int> muonBx;
192 
193 
194  unsigned short int nSums;
195  std::vector<short int> sumType;
196  std::vector<float> sumEt;
197  std::vector<float> sumPhi;
198  std::vector<short int> sumIEt;
199  std::vector<short int> sumIPhi;
200  std::vector<float> sumBx;
201 
202  };
203 }
204 #endif
205 
206