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 {
41  };
42 
44  {
45 
48 
49  void Reset()
50  {
51  nEGs = 0;
52  egEt.clear();
53  egEta.clear();
54  egPhi.clear();
55  egIEt.clear();
56  egIEta.clear();
57  egIPhi.clear();
58  egIso.clear();
59  egBx.clear();
60  egTowerIPhi.clear();
61  egTowerIEta.clear();
62  egRawEt.clear();
63  egIsoEt.clear();
64  egFootprintEt.clear();
65  egNTT.clear();
66  egShape.clear();
67  egTowerHoE.clear();
68 
69  nTaus = 0;
70  tauEt.clear();
71  tauEta.clear();
72  tauPhi.clear();
73  tauIEt.clear();
74  tauIEta.clear();
75  tauIPhi.clear();
76  tauIso.clear();
77  tauBx.clear();
78  tauTowerIPhi.clear();
79  tauTowerIEta.clear();
80  tauRawEt.clear();
81  tauIsoEt.clear();
82  tauNTT.clear();
83  tauHasEM.clear();
84  tauIsMerged.clear();
85  tauHwQual.clear();
86 
87  nJets = 0;
88  jetEt.clear();
89  jetEta.clear();
90  jetPhi.clear();
91  jetIEt.clear();
92  jetIEta.clear();
93  jetIPhi.clear();
94  jetBx.clear();
95  jetTowerIPhi.clear();
96  jetTowerIEta.clear();
97  jetRawEt.clear();
98  jetSeedEt.clear();
99  jetPUEt.clear();
100  jetPUDonutEt0.clear();
101  jetPUDonutEt1.clear();
102  jetPUDonutEt2.clear();
103  jetPUDonutEt3.clear();
104 
105  nMuons = 0;
106  muonEt.clear();
107  muonEta.clear();
108  muonPhi.clear();
109  muonEtaAtVtx.clear();
110  muonPhiAtVtx.clear();
111  muonIEt.clear();
112  muonIEta.clear();
113  muonIPhi.clear();
114  muonIEtaAtVtx.clear();
115  muonIPhiAtVtx.clear();
116  muonIDEta.clear();
117  muonIDPhi.clear();
118  muonChg.clear();
119  muonIso.clear();
120  muonQual.clear();
121  muonTfMuonIdx.clear();
122  muonBx.clear();
123 
124  nSums = 0;
125  sumType.clear();
126  sumEt.clear();
127  sumPhi.clear();
128  sumIEt.clear();
129  sumIPhi.clear();
130  sumBx.clear();
131 
132  }
133 
134  unsigned short int nEGs;
135  std::vector<float> egEt;
136  std::vector<float> egEta;
137  std::vector<float> egPhi;
138  std::vector<short int> egIEt;
139  std::vector<short int> egIEta;
140  std::vector<short int> egIPhi;
141  std::vector<short int> egIso;
142  std::vector<short int> egBx;
143  std::vector<short int> egTowerIPhi;
144  std::vector<short int> egTowerIEta;
145  std::vector<short int> egRawEt;
146  std::vector<short int> egIsoEt;
147  std::vector<short int> egFootprintEt;
148  std::vector<short int> egNTT;
149  std::vector<short int> egShape;
150  std::vector<short int> egTowerHoE;
151 
152  unsigned short int nTaus;
153  std::vector<float> tauEt;
154  std::vector<float> tauEta;
155  std::vector<float> tauPhi;
156  std::vector<short int> tauIEt;
157  std::vector<short int> tauIEta;
158  std::vector<short int> tauIPhi;
159  std::vector<short int> tauIso;
160  std::vector<short int> tauBx;
161  std::vector<short int> tauTowerIPhi;
162  std::vector<short int> tauTowerIEta;
163  std::vector<short int> tauRawEt;
164  std::vector<short int> tauIsoEt;
165  std::vector<short int> tauNTT;
166  std::vector<short int> tauHasEM;
167  std::vector<short int> tauIsMerged;
168  std::vector<short int> tauHwQual;
169 
170  unsigned short int nJets;
171  std::vector<float> jetEt;
172  std::vector<float> jetEta;
173  std::vector<float> jetPhi;
174  std::vector<short int> jetIEt;
175  std::vector<short int> jetIEta;
176  std::vector<short int> jetIPhi;
177  std::vector<short int> jetBx;
178  std::vector<short int> jetTowerIPhi;
179  std::vector<short int> jetTowerIEta;
180  std::vector<short int> jetRawEt;
181  std::vector<short int> jetSeedEt;
182  std::vector<short int> jetPUEt;
183  std::vector<short int> jetPUDonutEt0;
184  std::vector<short int> jetPUDonutEt1;
185  std::vector<short int> jetPUDonutEt2;
186  std::vector<short int> jetPUDonutEt3;
187 
188  unsigned short int nMuons;
189  std::vector<float> muonEt;
190  std::vector<float> muonEta;
191  std::vector<float> muonPhi;
192  std::vector<float> muonEtaAtVtx;
193  std::vector<float> muonPhiAtVtx;
194  std::vector<short int> muonIEt;
195  std::vector<short int> muonIEta;
196  std::vector<short int> muonIPhi;
197  std::vector<short int> muonIEtaAtVtx;
198  std::vector<short int> muonIPhiAtVtx;
199  std::vector<short int> muonIDEta;
200  std::vector<short int> muonIDPhi;
201  std::vector<short int> muonChg;
202  std::vector<unsigned short int> muonIso;
203  std::vector<unsigned short int> muonQual;
204  std::vector<unsigned short int> muonTfMuonIdx;
205  std::vector<short int> muonBx;
206 
207 
208  unsigned short int nSums;
209  std::vector<short int> sumType;
210  std::vector<float> sumEt;
211  std::vector<float> sumPhi;
212  std::vector<short int> sumIEt;
213  std::vector<short int> sumIPhi;
214  std::vector<float> sumBx;
215 
216  };
217 }
218 #endif
219 
220