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, 1 month 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

# User Rev Content
1 bendavid 1.61 // $Id: MitAnaDataTreeLinkDef.h,v 1.60 2009/03/11 18:12:16 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.10 #include "MitAna/DataTree/interface/EventHeader.h"
14 loizides 1.11 #include "MitAna/DataTree/interface/LAHeader.h"
15 loizides 1.57 #include "MitAna/DataTree/interface/MCEventInfo.h"
16     #include "MitAna/DataTree/interface/RunInfo.h"
17 loizides 1.37 #include "MitAna/DataTree/interface/TriggerName.h"
18 loizides 1.58 #include "MitAna/DataTree/interface/TriggerMask.h"
19 loizides 1.12
20 loizides 1.3 #include "MitAna/DataTree/interface/DataObject.h"
21 bendavid 1.43 #include "MitAna/DataTree/interface/BaseVertex.h"
22 loizides 1.12 #include "MitAna/DataTree/interface/Vertex.h"
23 bendavid 1.43 #include "MitAna/DataTree/interface/BeamSpot.h"
24 loizides 1.3 #include "MitAna/DataTree/interface/Track.h"
25 sixie 1.28 #include "MitAna/DataTree/interface/BasicCluster.h"
26     #include "MitAna/DataTree/interface/SuperCluster.h"
27 sixie 1.31 #include "MitAna/DataTree/interface/CaloTower.h"
28 sixie 1.28
29 loizides 1.1 #include "MitAna/DataTree/interface/Particle.h"
30 bendavid 1.21 #include "MitAna/DataTree/interface/ChargedParticle.h"
31 loizides 1.3 #include "MitAna/DataTree/interface/Muon.h"
32 bendavid 1.5 #include "MitAna/DataTree/interface/Electron.h"
33 loizides 1.16 #include "MitAna/DataTree/interface/Jet.h"
34 bendavid 1.60 #include "MitAna/DataTree/interface/CaloJet.h"
35 sixie 1.35 #include "MitAna/DataTree/interface/GenJet.h"
36 loizides 1.16 #include "MitAna/DataTree/interface/Met.h"
37 bendavid 1.61 #include "MitAna/DataTree/interface/CaloMet.h"
38     #include "MitAna/DataTree/interface/PFMet.h"
39 loizides 1.37 #include "MitAna/DataTree/interface/TriggerObject.h"
40 bendavid 1.20 #include "MitAna/DataTree/interface/MCParticle.h"
41 loizides 1.13 #include "MitAna/DataTree/interface/CompositeParticle.h"
42 bendavid 1.40 #include "MitAna/DataTree/interface/DaughterData.h"
43     #include "MitAna/DataTree/interface/StableData.h"
44     #include "MitAna/DataTree/interface/DecayData.h"
45 loizides 1.12 #include "MitAna/DataTree/interface/DecayParticle.h"
46 sixie 1.28 #include "MitAna/DataTree/interface/Conversion.h"
47 loizides 1.12 #include "MitAna/DataTree/interface/Photon.h"
48 bendavid 1.21 #include "MitAna/DataTree/interface/StableParticle.h"
49 bendavid 1.60 #include "MitAna/DataTree/interface/PFCandidate.h"
50 loizides 1.1 #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 loizides 1.2 #pragma link C++ class mithep::Names+;
61    
62 loizides 1.49 #pragma link C++ class mithep::Collection<TObject>+;
63     #pragma link C++ class mithep::ObjArray<TObject>+;
64    
65 loizides 1.46 #pragma link C++ class mithep::DataBase+;
66 loizides 1.49 #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 loizides 1.47 #pragma link C++ enum mithep::EObjType;
73 loizides 1.39
74 loizides 1.32 #pragma link C++ class mithep::EventHeader+;
75 loizides 1.59 #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 loizides 1.32 #pragma link C++ class mithep::LAHeader+;
83 loizides 1.57 #pragma link C++ class mithep::MCEventInfo+;
84     #pragma link C++ class mithep::RunInfo+;
85 loizides 1.37 #pragma link C++ class mithep::TriggerName+;
86 loizides 1.32
87 loizides 1.3 #pragma link C++ class mithep::DataObject+;
88 sixie 1.28 #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 bendavid 1.50 #pragma link C++ class mithep::Ref<mithep::DataObject>+;
92 sixie 1.28 #pragma link C++ typedef mithep::DataObjectCol;
93     #pragma link C++ typedef mithep::DataObjectArr;
94 loizides 1.39 #pragma link C++ typedef mithep::DataObjectOArr;
95 sixie 1.28
96 bendavid 1.52 #pragma link C++ class mithep::Ref<mithep::MCParticle>+;
97 bendavid 1.50 #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 bendavid 1.43 #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 bendavid 1.50 #pragma link C++ class mithep::Ref<mithep::BaseVertex>+;
111 bendavid 1.43 #pragma link C++ typedef mithep::BaseVertexCol;
112     #pragma link C++ typedef mithep::BaseVertexArr;
113    
114 loizides 1.12 #pragma link C++ class mithep::Vertex+;
115 bendavid 1.40 #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 bendavid 1.50 #pragma link C++ class mithep::Ref<mithep::Vertex>+;
119 bendavid 1.40 #pragma link C++ typedef mithep::VertexCol;
120     #pragma link C++ typedef mithep::VertexArr;
121 sixie 1.28
122 bendavid 1.43 #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 bendavid 1.50 #pragma link C++ class mithep::Ref<mithep::BeamSpot>+;
127 bendavid 1.43 #pragma link C++ typedef mithep::BeamSpotCol;
128     #pragma link C++ typedef mithep::BeamSpotArr;
129    
130 sixie 1.28 #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 bendavid 1.50 #pragma link C++ class mithep::Ref<mithep::BasicCluster>+;
135 bendavid 1.54 #pragma link C++ class mithep::RefArray<mithep::BasicCluster>+;
136 sixie 1.28 #pragma link C++ typedef mithep::BasicClusterCol;
137     #pragma link C++ typedef mithep::BasicClusterArr;
138 loizides 1.39 #pragma link C++ typedef mithep::BasicClusterOArr;
139    
140 sixie 1.28 #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 bendavid 1.50 #pragma link C++ class mithep::Ref<mithep::SuperCluster>+;
145 sixie 1.28 #pragma link C++ typedef mithep::SuperClusterCol;
146     #pragma link C++ typedef mithep::SuperClusterArr;
147 loizides 1.39 #pragma link C++ typedef mithep::SuperClusterOArr;
148 sixie 1.28
149 bendavid 1.50 #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 sixie 1.31 #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 bendavid 1.50 #pragma link C++ class mithep::Ref<mithep::CaloTower>+;
164 bendavid 1.54 #pragma link C++ class mithep::RefArray<mithep::CaloTower>+;
165 sixie 1.31 #pragma link C++ typedef mithep::CaloTowerCol;
166     #pragma link C++ typedef mithep::CaloTowerArr;
167 loizides 1.39 #pragma link C++ typedef mithep::CaloTowerOArr;
168 sixie 1.31
169 loizides 1.1 #pragma link C++ class mithep::Particle+;
170 sixie 1.28 #pragma link C++ class mithep::Collection<mithep::Particle>+;
171 bendavid 1.54 #pragma link C++ class mithep::RefArray<mithep::Particle>+;
172 loizides 1.48 #pragma link C++ class mithep::ObjArray<mithep::Particle>+;
173 bendavid 1.50 #pragma link C++ class mithep::Ref<mithep::Particle>+;
174 sixie 1.28 #pragma link C++ typedef mithep::ParticleCol;
175 loizides 1.48 #pragma link C++ typedef mithep::ParticleOArr;
176 sixie 1.28
177 bendavid 1.21 #pragma link C++ class mithep::ChargedParticle+;
178 sixie 1.28 #pragma link C++ class mithep::Collection<mithep::ChargedParticle>+;
179     #pragma link C++ class mithep::ObjArray<mithep::ChargedParticle>+;
180 bendavid 1.50 #pragma link C++ class mithep::Ref<mithep::ChargedParticle>+;
181 sixie 1.28 #pragma link C++ typedef mithep::ChargedParticleCol;
182     #pragma link C++ typedef mithep::ChargedParticleArr;
183 loizides 1.39 #pragma link C++ typedef mithep::ChargedParticleOArr;
184 sixie 1.28
185 loizides 1.3 #pragma link C++ class mithep::Muon+;
186 loizides 1.44 #pragma link C++ enum mithep::Muon::EClassType;
187 sixie 1.28 #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 bendavid 1.50 #pragma link C++ class mithep::Ref<mithep::Muon>+;
191 sixie 1.28 #pragma link C++ typedef mithep::MuonCol;
192     #pragma link C++ typedef mithep::MuonArr;
193 loizides 1.39 #pragma link C++ typedef mithep::MuonOArr;
194 sixie 1.28
195 bendavid 1.5 #pragma link C++ class mithep::Electron+;
196 sixie 1.28 #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 bendavid 1.50 #pragma link C++ class mithep::Ref<mithep::Electron>+;
200 sixie 1.28 #pragma link C++ typedef mithep::ElectronCol;
201     #pragma link C++ typedef mithep::ElectronArr;
202 loizides 1.39 #pragma link C++ typedef mithep::ElectronOArr;
203 sixie 1.28
204 loizides 1.37 #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 loizides 1.39 #pragma link C++ typedef mithep::TriggerObjectRelOArr;
210 loizides 1.37
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 loizides 1.39 #pragma link C++ typedef mithep::TriggerObjectBaseOArr;
217 loizides 1.37
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 loizides 1.39 #pragma link C++ typedef mithep::TriggerObjectOArr;
225 loizides 1.37 #pragma link C++ enum mithep::TriggerObject::ETriggerObject;
226    
227 loizides 1.58 #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 loizides 1.12 #pragma link C++ class mithep::CompositeParticle+;
236 loizides 1.13 #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 bendavid 1.50 #pragma link C++ class mithep::Ref<mithep::CompositeParticle>+;
240 sixie 1.28 #pragma link C++ typedef mithep::CompositeParticleCol;
241     #pragma link C++ typedef mithep::CompositeParticleArr;
242 loizides 1.39 #pragma link C++ typedef mithep::CompositeParticleOArr;
243 loizides 1.12
244 bendavid 1.38 #pragma link C++ class mithep::DaughterData+;
245     #pragma link C++ class mithep::Collection<mithep::DaughterData>+;
246 bendavid 1.54 #pragma link C++ class mithep::RefArray<mithep::DaughterData>+;
247 bendavid 1.40
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 bendavid 1.38
260 sixie 1.28 #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 loizides 1.14 #pragma link C++ typedef mithep::DecayParticleCol;
265 sixie 1.28 #pragma link C++ typedef mithep::DecayParticleArr;
266 loizides 1.39 #pragma link C++ typedef mithep::DecayParticleOArr;
267 sixie 1.28
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 bendavid 1.50 #pragma link C++ class mithep::Ref<mithep::Conversion>+;
273 bendavid 1.54 #pragma link C++ class mithep::RefArray<mithep::Conversion>+;
274 loizides 1.39 #pragma link C++ typedef mithep::ConversionCol;
275 sixie 1.28 #pragma link C++ typedef mithep::ConversionArr;
276 loizides 1.39 #pragma link C++ typedef mithep::ConversionOArr;
277 loizides 1.14
278 sixie 1.28 #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 bendavid 1.50 #pragma link C++ class mithep::Ref<mithep::Photon>+;
283 sixie 1.28 #pragma link C++ typedef mithep::PhotonCol;
284 bendavid 1.15 #pragma link C++ typedef mithep::PhotonArr;
285 loizides 1.39 #pragma link C++ typedef mithep::PhotonOArr;
286 sixie 1.28
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 bendavid 1.50 #pragma link C++ class mithep::Ref<mithep::StableParticle>+;
292 sixie 1.28 #pragma link C++ typedef mithep::StableParticleCol;
293 bendavid 1.21 #pragma link C++ typedef mithep::StableParticleArr;
294 loizides 1.39 #pragma link C++ typedef mithep::StableParticleOArr;
295    
296 bendavid 1.60 #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 bendavid 1.61 #pragma link C++ class mithep::Array<mithep::Jet>+;
309 bendavid 1.60 #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 bendavid 1.61 #pragma link C++ typedef mithep::JetArr;
313 bendavid 1.60 #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 bendavid 1.61 #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 loizides 1.1 #endif