ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/MitAna/DataTree/src/MitAnaDataTreeLinkDef.h
Revision: 1.61
Committed: Thu Mar 12 15:56:51 2009 UTC (16 years, 2 months ago) by bendavid
Content type: text/plain
Branch: MAIN
Changes since 1.60: +23 -1 lines
Log Message:
Split CaloMet into Met base class and CaloMet specific class, add PFMet

File Contents

# Content
1 // $Id: MitAnaDataTreeLinkDef.h,v 1.60 2009/03/11 18:12:16 bendavid Exp $
2
3 #ifndef MITANA_DATATREE_LINKDEF_H
4 #define MITANA_DATATREE_LINKDEF_H
5
6 #include "MitAna/DataCont/interface/Ref.h"
7 #include "MitAna/DataTree/interface/Collections.h"
8 #include "MitAna/DataTree/interface/Names.h"
9 #include "MitAna/DataTree/interface/ObjTypes.h"
10 #include "MitAna/DataTree/interface/Types.h"
11
12 #include "MitAna/DataTree/interface/DataBase.h"
13 #include "MitAna/DataTree/interface/EventHeader.h"
14 #include "MitAna/DataTree/interface/LAHeader.h"
15 #include "MitAna/DataTree/interface/MCEventInfo.h"
16 #include "MitAna/DataTree/interface/RunInfo.h"
17 #include "MitAna/DataTree/interface/TriggerName.h"
18 #include "MitAna/DataTree/interface/TriggerMask.h"
19
20 #include "MitAna/DataTree/interface/DataObject.h"
21 #include "MitAna/DataTree/interface/BaseVertex.h"
22 #include "MitAna/DataTree/interface/Vertex.h"
23 #include "MitAna/DataTree/interface/BeamSpot.h"
24 #include "MitAna/DataTree/interface/Track.h"
25 #include "MitAna/DataTree/interface/BasicCluster.h"
26 #include "MitAna/DataTree/interface/SuperCluster.h"
27 #include "MitAna/DataTree/interface/CaloTower.h"
28
29 #include "MitAna/DataTree/interface/Particle.h"
30 #include "MitAna/DataTree/interface/ChargedParticle.h"
31 #include "MitAna/DataTree/interface/Muon.h"
32 #include "MitAna/DataTree/interface/Electron.h"
33 #include "MitAna/DataTree/interface/Jet.h"
34 #include "MitAna/DataTree/interface/CaloJet.h"
35 #include "MitAna/DataTree/interface/GenJet.h"
36 #include "MitAna/DataTree/interface/Met.h"
37 #include "MitAna/DataTree/interface/CaloMet.h"
38 #include "MitAna/DataTree/interface/PFMet.h"
39 #include "MitAna/DataTree/interface/TriggerObject.h"
40 #include "MitAna/DataTree/interface/MCParticle.h"
41 #include "MitAna/DataTree/interface/CompositeParticle.h"
42 #include "MitAna/DataTree/interface/DaughterData.h"
43 #include "MitAna/DataTree/interface/StableData.h"
44 #include "MitAna/DataTree/interface/DecayData.h"
45 #include "MitAna/DataTree/interface/DecayParticle.h"
46 #include "MitAna/DataTree/interface/Conversion.h"
47 #include "MitAna/DataTree/interface/Photon.h"
48 #include "MitAna/DataTree/interface/StableParticle.h"
49 #include "MitAna/DataTree/interface/PFCandidate.h"
50 #endif
51
52 #ifdef __CINT__
53 #pragma link off all globals;
54 #pragma link off all classes;
55 #pragma link off all functions;
56 #pragma link C++ nestedclass;
57 #pragma link C++ nestedtypedef;
58 #pragma link C++ namespace mithep;
59
60 #pragma link C++ class mithep::Names+;
61
62 #pragma link C++ class mithep::Collection<TObject>+;
63 #pragma link C++ class mithep::ObjArray<TObject>+;
64
65 #pragma link C++ class mithep::DataBase+;
66 #pragma link C++ class mithep::Collection<mithep::DataBase>+;
67 #pragma link C++ class mithep::Array<mithep::DataBase>+;
68 #pragma link C++ class mithep::ObjArray<mithep::DataBase>+;
69 #pragma link C++ typedef mithep::DataObjectCol;
70 #pragma link C++ typedef mithep::DataObjectArr;
71 #pragma link C++ typedef mithep::DataObjectOArr;
72 #pragma link C++ enum mithep::EObjType;
73
74 #pragma link C++ class mithep::EventHeader+;
75 #pragma link C++ class mithep::Collection<mithep::EventHeader>+;
76 #pragma link C++ class mithep::Array<mithep::EventHeader>+;
77 #pragma link C++ class mithep::ObjArray<mithep::EventHeader>+;
78 #pragma link C++ typedef mithep::EventHeaderCol;
79 #pragma link C++ typedef mithep::EventHeaderArr;
80 #pragma link C++ typedef mithep::EventHeaderOArr;
81
82 #pragma link C++ class mithep::LAHeader+;
83 #pragma link C++ class mithep::MCEventInfo+;
84 #pragma link C++ class mithep::RunInfo+;
85 #pragma link C++ class mithep::TriggerName+;
86
87 #pragma link C++ class mithep::DataObject+;
88 #pragma link C++ class mithep::Collection<mithep::DataObject>+;
89 #pragma link C++ class mithep::Array<mithep::DataObject>+;
90 #pragma link C++ class mithep::ObjArray<mithep::DataObject>+;
91 #pragma link C++ class mithep::Ref<mithep::DataObject>+;
92 #pragma link C++ typedef mithep::DataObjectCol;
93 #pragma link C++ typedef mithep::DataObjectArr;
94 #pragma link C++ typedef mithep::DataObjectOArr;
95
96 #pragma link C++ class mithep::Ref<mithep::MCParticle>+;
97 #pragma link C++ class mithep::MCParticle+;
98 #pragma link C++ class mithep::Collection<mithep::MCParticle>+;
99 #pragma link C++ class mithep::Array<mithep::MCParticle>+;
100 #pragma link C++ class mithep::ObjArray<mithep::MCParticle>+;
101 #pragma link C++ typedef mithep::MCParticleCol;
102 #pragma link C++ typedef mithep::MCParticleArr;
103 #pragma link C++ typedef mithep::MCParticleOArr;
104 #pragma link C++ enum mithep::MCParticle::EPartType;
105
106 #pragma link C++ class mithep::BaseVertex+;
107 #pragma link C++ class mithep::Collection<mithep::BaseVertex>+;
108 #pragma link C++ class mithep::Array<mithep::BaseVertex>+;
109 #pragma link C++ class mithep::ObjArray<mithep::BaseVertex>+;
110 #pragma link C++ class mithep::Ref<mithep::BaseVertex>+;
111 #pragma link C++ typedef mithep::BaseVertexCol;
112 #pragma link C++ typedef mithep::BaseVertexArr;
113
114 #pragma link C++ class mithep::Vertex+;
115 #pragma link C++ class mithep::Collection<mithep::Vertex>+;
116 #pragma link C++ class mithep::Array<mithep::Vertex>+;
117 #pragma link C++ class mithep::ObjArray<mithep::Vertex>+;
118 #pragma link C++ class mithep::Ref<mithep::Vertex>+;
119 #pragma link C++ typedef mithep::VertexCol;
120 #pragma link C++ typedef mithep::VertexArr;
121
122 #pragma link C++ class mithep::BeamSpot+;
123 #pragma link C++ class mithep::Collection<mithep::BeamSpot>+;
124 #pragma link C++ class mithep::Array<mithep::BeamSpot>+;
125 #pragma link C++ class mithep::ObjArray<mithep::BeamSpot>+;
126 #pragma link C++ class mithep::Ref<mithep::BeamSpot>+;
127 #pragma link C++ typedef mithep::BeamSpotCol;
128 #pragma link C++ typedef mithep::BeamSpotArr;
129
130 #pragma link C++ class mithep::BasicCluster+;
131 #pragma link C++ class mithep::Collection<mithep::BasicCluster>+;
132 #pragma link C++ class mithep::Array<mithep::BasicCluster>+;
133 #pragma link C++ class mithep::ObjArray<mithep::BasicCluster>+;
134 #pragma link C++ class mithep::Ref<mithep::BasicCluster>+;
135 #pragma link C++ class mithep::RefArray<mithep::BasicCluster>+;
136 #pragma link C++ typedef mithep::BasicClusterCol;
137 #pragma link C++ typedef mithep::BasicClusterArr;
138 #pragma link C++ typedef mithep::BasicClusterOArr;
139
140 #pragma link C++ class mithep::SuperCluster+;
141 #pragma link C++ class mithep::Collection<mithep::SuperCluster>+;
142 #pragma link C++ class mithep::Array<mithep::SuperCluster>+;
143 #pragma link C++ class mithep::ObjArray<mithep::SuperCluster>+;
144 #pragma link C++ class mithep::Ref<mithep::SuperCluster>+;
145 #pragma link C++ typedef mithep::SuperClusterCol;
146 #pragma link C++ typedef mithep::SuperClusterArr;
147 #pragma link C++ typedef mithep::SuperClusterOArr;
148
149 #pragma link C++ class mithep::Track+;
150 #pragma link C++ class mithep::Collection<mithep::Track>+;
151 #pragma link C++ class mithep::Array<mithep::Track>+;
152 #pragma link C++ class mithep::ObjArray<mithep::Track>+;
153 #pragma link C++ class mithep::Ref<mithep::Track>+;
154 #pragma link C++ typedef mithep::TrackCol;
155 #pragma link C++ typedef mithep::TrackArr;
156 #pragma link C++ typedef mithep::TrackOArr;
157 #pragma link C++ enum mithep::Track::EHitLayer;
158
159 #pragma link C++ class mithep::CaloTower+;
160 #pragma link C++ class mithep::Collection<mithep::CaloTower>+;
161 #pragma link C++ class mithep::Array<mithep::CaloTower>+;
162 #pragma link C++ class mithep::ObjArray<mithep::CaloTower>+;
163 #pragma link C++ class mithep::Ref<mithep::CaloTower>+;
164 #pragma link C++ class mithep::RefArray<mithep::CaloTower>+;
165 #pragma link C++ typedef mithep::CaloTowerCol;
166 #pragma link C++ typedef mithep::CaloTowerArr;
167 #pragma link C++ typedef mithep::CaloTowerOArr;
168
169 #pragma link C++ class mithep::Particle+;
170 #pragma link C++ class mithep::Collection<mithep::Particle>+;
171 #pragma link C++ class mithep::RefArray<mithep::Particle>+;
172 #pragma link C++ class mithep::ObjArray<mithep::Particle>+;
173 #pragma link C++ class mithep::Ref<mithep::Particle>+;
174 #pragma link C++ typedef mithep::ParticleCol;
175 #pragma link C++ typedef mithep::ParticleOArr;
176
177 #pragma link C++ class mithep::ChargedParticle+;
178 #pragma link C++ class mithep::Collection<mithep::ChargedParticle>+;
179 #pragma link C++ class mithep::ObjArray<mithep::ChargedParticle>+;
180 #pragma link C++ class mithep::Ref<mithep::ChargedParticle>+;
181 #pragma link C++ typedef mithep::ChargedParticleCol;
182 #pragma link C++ typedef mithep::ChargedParticleArr;
183 #pragma link C++ typedef mithep::ChargedParticleOArr;
184
185 #pragma link C++ class mithep::Muon+;
186 #pragma link C++ enum mithep::Muon::EClassType;
187 #pragma link C++ class mithep::Collection<mithep::Muon>+;
188 #pragma link C++ class mithep::Array<mithep::Muon>+;
189 #pragma link C++ class mithep::ObjArray<mithep::Muon>+;
190 #pragma link C++ class mithep::Ref<mithep::Muon>+;
191 #pragma link C++ typedef mithep::MuonCol;
192 #pragma link C++ typedef mithep::MuonArr;
193 #pragma link C++ typedef mithep::MuonOArr;
194
195 #pragma link C++ class mithep::Electron+;
196 #pragma link C++ class mithep::Collection<mithep::Electron>+;
197 #pragma link C++ class mithep::Array<mithep::Electron>+;
198 #pragma link C++ class mithep::ObjArray<mithep::Electron>+;
199 #pragma link C++ class mithep::Ref<mithep::Electron>+;
200 #pragma link C++ typedef mithep::ElectronCol;
201 #pragma link C++ typedef mithep::ElectronArr;
202 #pragma link C++ typedef mithep::ElectronOArr;
203
204 #pragma link C++ class mithep::TriggerObjectRel+;
205 #pragma link C++ class mithep::Collection<mithep::TriggerObjectRel>+;
206 #pragma link C++ class mithep::Array<mithep::TriggerObjectRel>+;
207 #pragma link C++ typedef mithep::TriggerObjectRelCol;
208 #pragma link C++ typedef mithep::TriggerObjectRelArr;
209 #pragma link C++ typedef mithep::TriggerObjectRelOArr;
210
211 #pragma link C++ class mithep::TriggerObjectBase+;
212 #pragma link C++ class mithep::Collection<mithep::TriggerObjectBase>+;
213 #pragma link C++ class mithep::Array<mithep::TriggerObjectBase>+;
214 #pragma link C++ typedef mithep::TriggerObjectBaseCol;
215 #pragma link C++ typedef mithep::TriggerObjectBaseArr;
216 #pragma link C++ typedef mithep::TriggerObjectBaseOArr;
217
218 #pragma link C++ class mithep::TriggerObject+;
219 #pragma link C++ class mithep::Collection<mithep::TriggerObject>+;
220 #pragma link C++ class mithep::Array<mithep::TriggerObject>+;
221 #pragma link C++ class mithep::ObjArray<mithep::TriggerObject>+;
222 #pragma link C++ typedef mithep::TriggerObjectCol;
223 #pragma link C++ typedef mithep::TriggerObjectArr;
224 #pragma link C++ typedef mithep::TriggerObjectOArr;
225 #pragma link C++ enum mithep::TriggerObject::ETriggerObject;
226
227 #pragma link C++ class mithep::TriggerMask+;
228 #pragma link C++ class mithep::Collection<mithep::TriggerMask>+;
229 #pragma link C++ class mithep::Array<mithep::TriggerMask>+;
230 #pragma link C++ class mithep::ObjArray<mithep::TriggerMask>+;
231 #pragma link C++ typedef mithep::TriggerMaskCol;
232 #pragma link C++ typedef mithep::TriggerMaskArr;
233 #pragma link C++ typedef mithep::TriggerMaskOArr;
234
235 #pragma link C++ class mithep::CompositeParticle+;
236 #pragma link C++ class mithep::Collection<mithep::CompositeParticle>+;
237 #pragma link C++ class mithep::Array<mithep::CompositeParticle>+;
238 #pragma link C++ class mithep::ObjArray<mithep::CompositeParticle>+;
239 #pragma link C++ class mithep::Ref<mithep::CompositeParticle>+;
240 #pragma link C++ typedef mithep::CompositeParticleCol;
241 #pragma link C++ typedef mithep::CompositeParticleArr;
242 #pragma link C++ typedef mithep::CompositeParticleOArr;
243
244 #pragma link C++ class mithep::DaughterData+;
245 #pragma link C++ class mithep::Collection<mithep::DaughterData>+;
246 #pragma link C++ class mithep::RefArray<mithep::DaughterData>+;
247
248 #pragma link C++ class mithep::StableData+;
249 #pragma link C++ class mithep::Collection<mithep::StableData>+;
250 #pragma link C++ class mithep::Array<mithep::StableData>+;
251 #pragma link C++ typedef mithep::StableDataCol;
252 #pragma link C++ typedef mithep::StableDataArr;
253
254 #pragma link C++ class mithep::DecayData+;
255 #pragma link C++ class mithep::Collection<mithep::DecayData>+;
256 #pragma link C++ class mithep::Array<mithep::DecayData>+;
257 #pragma link C++ typedef mithep::DecayDataCol;
258 #pragma link C++ typedef mithep::DecayDataArr;
259
260 #pragma link C++ class mithep::DecayParticle+;
261 #pragma link C++ class mithep::Collection<mithep::DecayParticle>+;
262 #pragma link C++ class mithep::Array<mithep::DecayParticle>+;
263 #pragma link C++ class mithep::ObjArray<mithep::DecayParticle>+;
264 #pragma link C++ typedef mithep::DecayParticleCol;
265 #pragma link C++ typedef mithep::DecayParticleArr;
266 #pragma link C++ typedef mithep::DecayParticleOArr;
267
268 #pragma link C++ class mithep::Conversion+;
269 #pragma link C++ class mithep::Collection<mithep::Conversion>+;
270 #pragma link C++ class mithep::Array<mithep::Conversion>+;
271 #pragma link C++ class mithep::ObjArray<mithep::Conversion>+;
272 #pragma link C++ class mithep::Ref<mithep::Conversion>+;
273 #pragma link C++ class mithep::RefArray<mithep::Conversion>+;
274 #pragma link C++ typedef mithep::ConversionCol;
275 #pragma link C++ typedef mithep::ConversionArr;
276 #pragma link C++ typedef mithep::ConversionOArr;
277
278 #pragma link C++ class mithep::Photon+;
279 #pragma link C++ class mithep::Collection<mithep::Photon>+;
280 #pragma link C++ class mithep::Array<mithep::Photon>+;
281 #pragma link C++ class mithep::ObjArray<mithep::Photon>+;
282 #pragma link C++ class mithep::Ref<mithep::Photon>+;
283 #pragma link C++ typedef mithep::PhotonCol;
284 #pragma link C++ typedef mithep::PhotonArr;
285 #pragma link C++ typedef mithep::PhotonOArr;
286
287 #pragma link C++ class mithep::StableParticle+;
288 #pragma link C++ class mithep::Collection<mithep::StableParticle>+;
289 #pragma link C++ class mithep::Array<mithep::StableParticle>+;
290 #pragma link C++ class mithep::ObjArray<mithep::StableParticle>+;
291 #pragma link C++ class mithep::Ref<mithep::StableParticle>+;
292 #pragma link C++ typedef mithep::StableParticleCol;
293 #pragma link C++ typedef mithep::StableParticleArr;
294 #pragma link C++ typedef mithep::StableParticleOArr;
295
296 #pragma link C++ class mithep::Ref<mithep::PFCandidate>+;
297 #pragma link C++ class mithep::PFCandidate+;
298 #pragma link C++ class mithep::Collection<mithep::PFCandidate>+;
299 #pragma link C++ class mithep::Array<mithep::PFCandidate>+;
300 #pragma link C++ class mithep::ObjArray<mithep::PFCandidate>+;
301 #pragma link C++ class mithep::RefArray<mithep::PFCandidate>+;
302 #pragma link C++ typedef mithep::PFCandidateCol;
303 #pragma link C++ typedef mithep::PFCandidateArr;
304 #pragma link C++ typedef mithep::PFCandidateOArr;
305
306 #pragma link C++ class mithep::Jet+;
307 #pragma link C++ class mithep::Collection<mithep::Jet>+;
308 #pragma link C++ class mithep::Array<mithep::Jet>+;
309 #pragma link C++ class mithep::ObjArray<mithep::Jet>+;
310 #pragma link C++ class mithep::Ref<mithep::Jet>+;
311 #pragma link C++ typedef mithep::JetCol;
312 #pragma link C++ typedef mithep::JetArr;
313 #pragma link C++ typedef mithep::JetOArr;
314
315 #pragma link C++ class mithep::CaloJet+;
316 #pragma link C++ class mithep::Collection<mithep::CaloJet>+;
317 #pragma link C++ class mithep::Array<mithep::CaloJet>+;
318 #pragma link C++ class mithep::ObjArray<mithep::CaloJet>+;
319 #pragma link C++ class mithep::Ref<mithep::CaloJet>+;
320 #pragma link C++ typedef mithep::CaloJetCol;
321 #pragma link C++ typedef mithep::CaloJetArr;
322 #pragma link C++ typedef mithep::CaloJetOArr;
323
324 #pragma link C++ class mithep::PFJet+;
325 #pragma link C++ class mithep::Collection<mithep::PFJet>+;
326 #pragma link C++ class mithep::Array<mithep::PFJet>+;
327 #pragma link C++ class mithep::ObjArray<mithep::PFJet>+;
328 #pragma link C++ class mithep::Ref<mithep::PFJet>+;
329 #pragma link C++ typedef mithep::PFJetCol;
330 #pragma link C++ typedef mithep::PFJetArr;
331 #pragma link C++ typedef mithep::PFJetOArr;
332
333 #pragma link C++ class mithep::GenJet+;
334 #pragma link C++ class mithep::Collection<mithep::GenJet>+;
335 #pragma link C++ class mithep::Array<mithep::GenJet>+;
336 #pragma link C++ class mithep::ObjArray<mithep::GenJet>+;
337 #pragma link C++ class mithep::Ref<mithep::GenJet>+;
338 #pragma link C++ typedef mithep::GenJetCol;
339 #pragma link C++ typedef mithep::GenJetArr;
340 #pragma link C++ typedef mithep::GenJetOArr;
341
342 #pragma link C++ class mithep::Met+;
343 #pragma link C++ class mithep::Collection<mithep::Met>+;
344 #pragma link C++ class mithep::Array<mithep::Met>+;
345 #pragma link C++ class mithep::ObjArray<mithep::Met>+;
346 #pragma link C++ class mithep::Ref<mithep::Met>+;
347 #pragma link C++ typedef mithep::MetCol;
348 #pragma link C++ typedef mithep::MetArr;
349 #pragma link C++ typedef mithep::MetOArr;
350
351 #pragma link C++ class mithep::CaloMet+;
352 #pragma link C++ class mithep::Collection<mithep::CaloMet>+;
353 #pragma link C++ class mithep::Array<mithep::CaloMet>+;
354 #pragma link C++ class mithep::ObjArray<mithep::CaloMet>+;
355 #pragma link C++ class mithep::Ref<mithep::CaloMet>+;
356 #pragma link C++ typedef mithep::CaloMetCol;
357 #pragma link C++ typedef mithep::CaloMetArr;
358 #pragma link C++ typedef mithep::CaloMetOArr;
359
360 #pragma link C++ class mithep::PFMet+;
361 #pragma link C++ class mithep::Collection<mithep::PFMet>+;
362 #pragma link C++ class mithep::Array<mithep::PFMet>+;
363 #pragma link C++ class mithep::ObjArray<mithep::PFMet>+;
364 #pragma link C++ class mithep::Ref<mithep::PFMet>+;
365 #pragma link C++ typedef mithep::PFMetCol;
366 #pragma link C++ typedef mithep::PFMetArr;
367 #pragma link C++ typedef mithep::PFMetOArr;
368
369 #endif