ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/MitAna/DataTree/src/MitAnaDataTreeLinkDef.h
Revision: 1.62
Committed: Fri Mar 13 08:40:01 2009 UTC (16 years, 1 month ago) by loizides
Content type: text/plain
Branch: MAIN
Changes since 1.61: +3 -1 lines
Log Message:
Added BranchName class.

File Contents

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