CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
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 #include <vector>
12 
13 namespace L1Analysis {
14 
15  // copied from DataFormats/L1Trigger/interface/EtSum.h, for use in standalone ROOT macros which use this class.
16  enum EtSumType {
44  };
45 
49 
50  void Reset() {
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  egHwQual.clear();
69 
70  nTaus = 0;
71  tauEt.clear();
72  tauEta.clear();
73  tauPhi.clear();
74  tauIEt.clear();
75  tauIEta.clear();
76  tauIPhi.clear();
77  tauIso.clear();
78  tauBx.clear();
79  tauTowerIPhi.clear();
80  tauTowerIEta.clear();
81  tauRawEt.clear();
82  tauIsoEt.clear();
83  tauNTT.clear();
84  tauHasEM.clear();
85  tauIsMerged.clear();
86  tauHwQual.clear();
87 
88  nJets = 0;
89  jetEt.clear();
90  jetEta.clear();
91  jetPhi.clear();
92  jetIEt.clear();
93  jetIEta.clear();
94  jetIPhi.clear();
95  jetBx.clear();
96  jetTowerIPhi.clear();
97  jetTowerIEta.clear();
98  jetRawEt.clear();
99  jetSeedEt.clear();
100  jetPUEt.clear();
101  jetPUDonutEt0.clear();
102  jetPUDonutEt1.clear();
103  jetPUDonutEt2.clear();
104  jetPUDonutEt3.clear();
105 
106  nMuons = 0;
107  muonEt.clear();
108  muonEtUnconstrained.clear();
109  muonEta.clear();
110  muonPhi.clear();
111  muonEtaAtVtx.clear();
112  muonPhiAtVtx.clear();
113  muonIEt.clear();
114  muonIEtUnconstrained.clear();
115  muonIEta.clear();
116  muonIPhi.clear();
117  muonIEtaAtVtx.clear();
118  muonIPhiAtVtx.clear();
119  muonIDEta.clear();
120  muonIDPhi.clear();
121  muonChg.clear();
122  muonIso.clear();
123  muonQual.clear();
124  muonDxy.clear();
125  muonTfMuonIdx.clear();
126  muonBx.clear();
127 
128  nSums = 0;
129  sumType.clear();
130  sumEt.clear();
131  sumPhi.clear();
132  sumIEt.clear();
133  sumIPhi.clear();
134  sumBx.clear();
135  }
136 
137  unsigned short int nEGs;
138  std::vector<float> egEt;
139  std::vector<float> egEta;
140  std::vector<float> egPhi;
141  std::vector<short int> egIEt;
142  std::vector<short int> egIEta;
143  std::vector<short int> egIPhi;
144  std::vector<short int> egIso;
145  std::vector<short int> egBx;
146  std::vector<short int> egTowerIPhi;
147  std::vector<short int> egTowerIEta;
148  std::vector<short int> egRawEt;
149  std::vector<short int> egIsoEt;
150  std::vector<short int> egFootprintEt;
151  std::vector<short int> egNTT;
152  std::vector<short int> egShape;
153  std::vector<short int> egTowerHoE;
154  std::vector<short int> egHwQual;
155 
156  unsigned short int nTaus;
157  std::vector<float> tauEt;
158  std::vector<float> tauEta;
159  std::vector<float> tauPhi;
160  std::vector<short int> tauIEt;
161  std::vector<short int> tauIEta;
162  std::vector<short int> tauIPhi;
163  std::vector<short int> tauIso;
164  std::vector<short int> tauBx;
165  std::vector<short int> tauTowerIPhi;
166  std::vector<short int> tauTowerIEta;
167  std::vector<short int> tauRawEt;
168  std::vector<short int> tauIsoEt;
169  std::vector<short int> tauNTT;
170  std::vector<short int> tauHasEM;
171  std::vector<short int> tauIsMerged;
172  std::vector<short int> tauHwQual;
173 
174  unsigned short int nJets;
175  std::vector<float> jetEt;
176  std::vector<float> jetEta;
177  std::vector<float> jetPhi;
178  std::vector<short int> jetIEt;
179  std::vector<short int> jetIEta;
180  std::vector<short int> jetIPhi;
181  std::vector<short int> jetBx;
182  std::vector<short int> jetTowerIPhi;
183  std::vector<short int> jetTowerIEta;
184  std::vector<short int> jetRawEt;
185  std::vector<short int> jetSeedEt;
186  std::vector<short int> jetPUEt;
187  std::vector<short int> jetPUDonutEt0;
188  std::vector<short int> jetPUDonutEt1;
189  std::vector<short int> jetPUDonutEt2;
190  std::vector<short int> jetPUDonutEt3;
191 
192  unsigned short int nMuons;
193  std::vector<float> muonEt;
194  std::vector<float> muonEtUnconstrained;
195  std::vector<float> muonEta;
196  std::vector<float> muonPhi;
197  std::vector<float> muonEtaAtVtx;
198  std::vector<float> muonPhiAtVtx;
199  std::vector<short int> muonIEt;
200  std::vector<short int> muonIEtUnconstrained;
201  std::vector<short int> muonIEta;
202  std::vector<short int> muonIPhi;
203  std::vector<short int> muonIEtaAtVtx;
204  std::vector<short int> muonIPhiAtVtx;
205  std::vector<short int> muonIDEta;
206  std::vector<short int> muonIDPhi;
207  std::vector<short int> muonChg;
208  std::vector<unsigned short int> muonIso;
209  std::vector<unsigned short int> muonQual;
210  std::vector<unsigned short int> muonDxy;
211  std::vector<unsigned short int> muonTfMuonIdx;
212  std::vector<short int> muonBx;
213 
214  unsigned short int nSums;
215  std::vector<short int> sumType;
216  std::vector<float> sumEt;
217  std::vector<float> sumPhi;
218  std::vector<short int> sumIEt;
219  std::vector<short int> sumIPhi;
220  std::vector<float> sumBx;
221  };
222 } // namespace L1Analysis
223 #endif