ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/MitAna/DataTree/src/MitAnaDataTreeLinkDef.h
Revision: 1.65
Committed: Tue Mar 24 16:10:16 2009 UTC (16 years, 1 month ago) by loizides
Content type: text/plain
Branch: MAIN
CVS Tags: Mit_008
Changes since 1.64: +3 -1 lines
Log Message:
Have TriggerTable as a standalone file and cintable.

File Contents

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