ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/MitAna/DataTree/src/MitAnaDataTreeLinkDef.h
Revision: 1.66
Committed: Thu Apr 9 10:26:18 2009 UTC (16 years ago) by ceballos
Content type: text/plain
Branch: MAIN
Changes since 1.65: +10 -1 lines
Log Message:
new GenParticle object

File Contents

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