ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/MitAna/DataTree/src/MitAnaDataTreeLinkDef.h
Revision: 1.57
Committed: Tue Mar 3 17:03:54 2009 UTC (16 years, 2 months ago) by loizides
Content type: text/plain
Branch: MAIN
CVS Tags: Mit_008pre1
Changes since 1.56: +14 -11 lines
Log Message:
Added Vector classes

File Contents

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