ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/MitAna/DataTree/src/MitAnaDataTreeLinkDef.h
Revision: 1.43
Committed: Wed Nov 12 18:18:28 2008 UTC (16 years, 5 months ago) by bendavid
Content type: text/plain
Branch: MAIN
CVS Tags: Mit_006
Changes since 1.42: +17 -1 lines
Log Message:
Added mitedm::BeamSpot and BaseVertex classes

File Contents

# User Rev Content
1 bendavid 1.43 // $Id: MitAnaDataTreeLinkDef.h,v 1.42 2008/10/31 18:56:42 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.37 #include <string>
7 loizides 1.1 #include <vector>
8 loizides 1.37
9 loizides 1.1 #include "MitAna/DataTree/interface/Types.h"
10 loizides 1.2 #include "MitAna/DataTree/interface/Names.h"
11 loizides 1.16 #include "MitAna/DataTree/interface/Collections.h"
12 loizides 1.12
13 loizides 1.30 #include "MitAna/DataTree/interface/BitMask.h"
14 loizides 1.10 #include "MitAna/DataTree/interface/EventHeader.h"
15 loizides 1.11 #include "MitAna/DataTree/interface/LAHeader.h"
16 loizides 1.37 #include "MitAna/DataTree/interface/TriggerName.h"
17 loizides 1.10 #include "MitAna/DataTree/interface/RunInfo.h"
18 loizides 1.29 #include "MitAna/DataTree/interface/MCEventInfo.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 sixie 1.35 #include "MitAna/DataTree/interface/GenJet.h"
35 loizides 1.16 #include "MitAna/DataTree/interface/Met.h"
36 loizides 1.37 #include "MitAna/DataTree/interface/TriggerObject.h"
37 bendavid 1.20 #include "MitAna/DataTree/interface/MCParticle.h"
38 loizides 1.13 #include "MitAna/DataTree/interface/CompositeParticle.h"
39 bendavid 1.40 #include "MitAna/DataTree/interface/DaughterData.h"
40     #include "MitAna/DataTree/interface/StableData.h"
41     #include "MitAna/DataTree/interface/DecayData.h"
42 loizides 1.12 #include "MitAna/DataTree/interface/DecayParticle.h"
43 sixie 1.28 #include "MitAna/DataTree/interface/Conversion.h"
44 loizides 1.12 #include "MitAna/DataTree/interface/Photon.h"
45 bendavid 1.21 #include "MitAna/DataTree/interface/StableParticle.h"
46 bendavid 1.24 #include "MitAna/DataTree/interface/StableDaughter.h"
47 loizides 1.1 #endif
48    
49     #ifdef __CINT__
50     #pragma link off all globals;
51     #pragma link off all classes;
52     #pragma link off all functions;
53     #pragma link C++ nestedclass;
54     #pragma link C++ nestedtypedef;
55     #pragma link C++ namespace mithep;
56    
57 loizides 1.2 #pragma link C++ class mithep::Names+;
58    
59 loizides 1.39 #pragma link C++ class mithep::Collection<TRef>+;
60     #pragma link C++ class mithep::Collection<std::string>+;
61     #pragma link C++ class mithep::Vector<std::string>+;
62    
63 loizides 1.37 #pragma link C++ class mithep::BitMask<1>+;
64     #pragma link C++ class mithep::BitMask<2>+;
65 loizides 1.30 #pragma link C++ class mithep::BitMask<4>+;
66 bendavid 1.41 #pragma link C++ class mithep::BitMask<6>+;
67 loizides 1.30 #pragma link C++ class mithep::BitMask<8>+;
68 loizides 1.39 #pragma link C++ class mithep::BitMask<16>+;
69 loizides 1.30 #pragma link C++ class mithep::BitMask<32>+;
70 loizides 1.37 #pragma link C++ typedef mithep::BitMask8;
71     #pragma link C++ typedef mithep::BitMask16;
72     #pragma link C++ typedef mithep::BitMask32;
73 bendavid 1.41 #pragma link C++ typedef mithep::BitMask48;
74 loizides 1.37 #pragma link C++ typedef mithep::BitMask64;
75 loizides 1.39 #pragma link C++ typedef mithep::BitMask128;
76 loizides 1.30 #pragma link C++ typedef mithep::BitMask256;
77 loizides 1.39 #pragma link C++ class mithep::Collection<mithep::BitMask<1> >+;
78     #pragma link C++ class mithep::Vector<mithep::BitMask<1> >+;
79     #pragma link C++ typedef mithep::BitMask8Col;
80     #pragma link C++ typedef mithep::BitMask8Vec;
81     #pragma link C++ class mithep::Collection<mithep::BitMask<2> >+;
82     #pragma link C++ class mithep::Vector<mithep::BitMask<2> >+;
83     #pragma link C++ typedef mithep::BitMask16Col;
84     #pragma link C++ typedef mithep::BitMask16Vec;
85     #pragma link C++ class mithep::Collection<mithep::BitMask<4> >+;
86     #pragma link C++ class mithep::Vector<mithep::BitMask<4> >+;
87     #pragma link C++ typedef mithep::BitMask32Col;
88     #pragma link C++ typedef mithep::BitMask32Vec;
89 bendavid 1.41 #pragma link C++ class mithep::Collection<mithep::BitMask<6> >+;
90     #pragma link C++ class mithep::Vector<mithep::BitMask<6> >+;
91     #pragma link C++ typedef mithep::BitMask48Col;
92     #pragma link C++ typedef mithep::BitMask48Vec;
93 loizides 1.39 #pragma link C++ class mithep::Collection<mithep::BitMask<8> >+;
94     #pragma link C++ class mithep::Vector<mithep::BitMask<8> >+;
95     #pragma link C++ typedef mithep::BitMask64Col;
96     #pragma link C++ typedef mithep::BitMask64Vec;
97     #pragma link C++ class mithep::Collection<mithep::BitMask<16> >+;
98     #pragma link C++ class mithep::Vector<mithep::BitMask<16> >+;
99     #pragma link C++ typedef mithep::BitMask128Col;
100     #pragma link C++ typedef mithep::BitMask128Vec;
101     #pragma link C++ class mithep::Collection<mithep::BitMask<32> >+;
102     #pragma link C++ class mithep::Vector<mithep::BitMask<32> >+;
103     #pragma link C++ typedef mithep::BitMask256Col;
104     #pragma link C++ typedef mithep::BitMask256Vec;
105    
106 loizides 1.32 #pragma link C++ class mithep::EventHeader+;
107     #pragma link C++ class mithep::LAHeader+;
108 loizides 1.37 #pragma link C++ class mithep::TriggerName+;
109 loizides 1.32 #pragma link C++ class mithep::RunInfo+;
110     #pragma link C++ class mithep::MCEventInfo+;
111    
112 loizides 1.3 #pragma link C++ class mithep::DataObject+;
113 sixie 1.28 #pragma link C++ class mithep::Collection<mithep::DataObject>+;
114     #pragma link C++ class mithep::Array<mithep::DataObject>+;
115     #pragma link C++ class mithep::ObjArray<mithep::DataObject>+;
116     #pragma link C++ typedef mithep::DataObjectCol;
117     #pragma link C++ typedef mithep::DataObjectArr;
118 loizides 1.39 #pragma link C++ typedef mithep::DataObjectOArr;
119 sixie 1.28
120 bendavid 1.43 #pragma link C++ class mithep::BaseVertex+;
121     #pragma link C++ class mithep::Collection<mithep::BaseVertex>+;
122     #pragma link C++ class mithep::Array<mithep::BaseVertex>+;
123     #pragma link C++ class mithep::ObjArray<mithep::BaseVertex>+;
124     #pragma link C++ typedef mithep::BaseVertexCol;
125     #pragma link C++ typedef mithep::BaseVertexArr;
126    
127 loizides 1.12 #pragma link C++ class mithep::Vertex+;
128 bendavid 1.40 #pragma link C++ class mithep::Collection<mithep::Vertex>+;
129     #pragma link C++ class mithep::Array<mithep::Vertex>+;
130     #pragma link C++ class mithep::ObjArray<mithep::Vertex>+;
131     #pragma link C++ typedef mithep::VertexCol;
132     #pragma link C++ typedef mithep::VertexArr;
133 sixie 1.28
134 bendavid 1.43 #pragma link C++ class mithep::BeamSpot+;
135     #pragma link C++ class mithep::Collection<mithep::BeamSpot>+;
136     #pragma link C++ class mithep::Array<mithep::BeamSpot>+;
137     #pragma link C++ class mithep::ObjArray<mithep::BeamSpot>+;
138     #pragma link C++ typedef mithep::BeamSpotCol;
139     #pragma link C++ typedef mithep::BeamSpotArr;
140    
141 loizides 1.39 #pragma link C++ class mithep::Collection<mithep::BitMask256>+;
142     #pragma link C++ class mithep::Vector<mithep::BitMask256>+;
143    
144 loizides 1.3 #pragma link C++ class mithep::Track+;
145 sixie 1.28 #pragma link C++ class mithep::Collection<mithep::Track>+;
146     #pragma link C++ class mithep::Array<mithep::Track>+;
147     #pragma link C++ class mithep::ObjArray<mithep::Track>+;
148     #pragma link C++ typedef mithep::TrackCol;
149     #pragma link C++ typedef mithep::TrackArr;
150 loizides 1.39 #pragma link C++ typedef mithep::TrackOArr;
151 loizides 1.37 #pragma link C++ enum mithep::Track::EHitLayer;
152 sixie 1.28
153     #pragma link C++ class mithep::BasicCluster+;
154     #pragma link C++ class mithep::Collection<mithep::BasicCluster>+;
155     #pragma link C++ class mithep::Array<mithep::BasicCluster>+;
156     #pragma link C++ class mithep::ObjArray<mithep::BasicCluster>+;
157 bendavid 1.42 #pragma link C++ class mithep::RefArray<mithep::BasicCluster,1024>+;
158 sixie 1.28 #pragma link C++ typedef mithep::BasicClusterCol;
159     #pragma link C++ typedef mithep::BasicClusterArr;
160 loizides 1.39 #pragma link C++ typedef mithep::BasicClusterOArr;
161    
162 sixie 1.28 #pragma link C++ class mithep::SuperCluster+;
163     #pragma link C++ class mithep::Collection<mithep::SuperCluster>+;
164     #pragma link C++ class mithep::Array<mithep::SuperCluster>+;
165     #pragma link C++ class mithep::ObjArray<mithep::SuperCluster>+;
166     #pragma link C++ typedef mithep::SuperClusterCol;
167     #pragma link C++ typedef mithep::SuperClusterArr;
168 loizides 1.39 #pragma link C++ typedef mithep::SuperClusterOArr;
169 sixie 1.28
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.42 #pragma link C++ class mithep::RefArray<mithep::CaloTower,1024>+;
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.42 #pragma link C++ class mithep::RefArray<mithep::Particle,1024>+;
182 sixie 1.28 #pragma link C++ typedef mithep::ParticleCol;
183    
184 bendavid 1.21 #pragma link C++ class mithep::ChargedParticle+;
185 sixie 1.28 #pragma link C++ class mithep::Collection<mithep::ChargedParticle>+;
186     #pragma link C++ class mithep::ObjArray<mithep::ChargedParticle>+;
187     #pragma link C++ typedef mithep::ChargedParticleCol;
188     #pragma link C++ typedef mithep::ChargedParticleArr;
189 loizides 1.39 #pragma link C++ typedef mithep::ChargedParticleOArr;
190 sixie 1.28
191 loizides 1.3 #pragma link C++ class mithep::Muon+;
192 sixie 1.28 #pragma link C++ class mithep::Collection<mithep::Muon>+;
193     #pragma link C++ class mithep::Array<mithep::Muon>+;
194     #pragma link C++ class mithep::ObjArray<mithep::Muon>+;
195     #pragma link C++ typedef mithep::MuonCol;
196     #pragma link C++ typedef mithep::MuonArr;
197 loizides 1.39 #pragma link C++ typedef mithep::MuonOArr;
198 sixie 1.28
199 bendavid 1.5 #pragma link C++ class mithep::Electron+;
200 sixie 1.28 #pragma link C++ class mithep::Collection<mithep::Electron>+;
201     #pragma link C++ class mithep::Array<mithep::Electron>+;
202     #pragma link C++ class mithep::ObjArray<mithep::Electron>+;
203     #pragma link C++ typedef mithep::ElectronCol;
204     #pragma link C++ typedef mithep::ElectronArr;
205 loizides 1.39 #pragma link C++ typedef mithep::ElectronOArr;
206 sixie 1.28
207 loizides 1.16 #pragma link C++ class mithep::Jet+;
208 sixie 1.28 #pragma link C++ class mithep::Collection<mithep::Jet>+;
209     #pragma link C++ class mithep::Array<mithep::Jet>+;
210     #pragma link C++ class mithep::ObjArray<mithep::Jet>+;
211     #pragma link C++ typedef mithep::JetCol;
212     #pragma link C++ typedef mithep::JetArr;
213 loizides 1.39 #pragma link C++ typedef mithep::JetOArr;
214 sixie 1.28
215 sixie 1.35 #pragma link C++ class mithep::GenJet+;
216     #pragma link C++ class mithep::Collection<mithep::GenJet>+;
217     #pragma link C++ class mithep::Array<mithep::GenJet>+;
218     #pragma link C++ class mithep::ObjArray<mithep::GenJet>+;
219     #pragma link C++ typedef mithep::GenJetCol;
220     #pragma link C++ typedef mithep::GenJetArr;
221 loizides 1.39 #pragma link C++ typedef mithep::GenJetOArr;
222 sixie 1.35
223 loizides 1.16 #pragma link C++ class mithep::Met+;
224     #pragma link C++ class mithep::Collection<mithep::Met>+;
225     #pragma link C++ class mithep::Array<mithep::Met>+;
226     #pragma link C++ class mithep::ObjArray<mithep::Met>+;
227 sixie 1.28 #pragma link C++ typedef mithep::MetCol;
228     #pragma link C++ typedef mithep::MetArr;
229 loizides 1.39 #pragma link C++ typedef mithep::MetOArr;
230 loizides 1.12
231 loizides 1.37 #pragma link C++ class mithep::TriggerObjectRel+;
232     #pragma link C++ class mithep::Collection<mithep::TriggerObjectRel>+;
233     #pragma link C++ class mithep::Array<mithep::TriggerObjectRel>+;
234     #pragma link C++ typedef mithep::TriggerObjectRelCol;
235     #pragma link C++ typedef mithep::TriggerObjectRelArr;
236 loizides 1.39 #pragma link C++ typedef mithep::TriggerObjectRelOArr;
237 loizides 1.37
238     #pragma link C++ class mithep::TriggerObjectBase+;
239     #pragma link C++ class mithep::Collection<mithep::TriggerObjectBase>+;
240     #pragma link C++ class mithep::Array<mithep::TriggerObjectBase>+;
241     #pragma link C++ typedef mithep::TriggerObjectBaseCol;
242     #pragma link C++ typedef mithep::TriggerObjectBaseArr;
243 loizides 1.39 #pragma link C++ typedef mithep::TriggerObjectBaseOArr;
244 loizides 1.37
245     #pragma link C++ class mithep::TriggerObject+;
246     #pragma link C++ class mithep::Collection<mithep::TriggerObject>+;
247     #pragma link C++ class mithep::Array<mithep::TriggerObject>+;
248     #pragma link C++ class mithep::ObjArray<mithep::TriggerObject>+;
249     #pragma link C++ typedef mithep::TriggerObjectCol;
250     #pragma link C++ typedef mithep::TriggerObjectArr;
251 loizides 1.39 #pragma link C++ typedef mithep::TriggerObjectOArr;
252 loizides 1.37 #pragma link C++ enum mithep::TriggerObject::ETriggerObject;
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 sixie 1.28 #pragma link C++ typedef mithep::CompositeParticleCol;
259     #pragma link C++ typedef mithep::CompositeParticleArr;
260 loizides 1.39 #pragma link C++ typedef mithep::CompositeParticleOArr;
261 loizides 1.12
262 sixie 1.28 #pragma link C++ class mithep::MCParticle+;
263     #pragma link C++ class mithep::Collection<mithep::MCParticle>+;
264     #pragma link C++ class mithep::Array<mithep::MCParticle>+;
265     #pragma link C++ class mithep::ObjArray<mithep::MCParticle>+;
266 bendavid 1.20 #pragma link C++ typedef mithep::MCParticleCol;
267 sixie 1.28 #pragma link C++ typedef mithep::MCParticleArr;
268 loizides 1.39 #pragma link C++ typedef mithep::MCParticleOArr;
269 sixie 1.28 #pragma link C++ enum mithep::MCParticle::EPartType;
270    
271 bendavid 1.38 #pragma link C++ class mithep::DaughterData+;
272     #pragma link C++ class mithep::Collection<mithep::DaughterData>+;
273 bendavid 1.42 #pragma link C++ class mithep::RefArray<mithep::DaughterData,32>+;
274 bendavid 1.40
275     #pragma link C++ class mithep::StableData+;
276     #pragma link C++ class mithep::Collection<mithep::StableData>+;
277     #pragma link C++ class mithep::Array<mithep::StableData>+;
278     #pragma link C++ typedef mithep::StableDataCol;
279     #pragma link C++ typedef mithep::StableDataArr;
280    
281     #pragma link C++ class mithep::DecayData+;
282     #pragma link C++ class mithep::Collection<mithep::DecayData>+;
283     #pragma link C++ class mithep::Array<mithep::DecayData>+;
284     #pragma link C++ typedef mithep::DecayDataCol;
285     #pragma link C++ typedef mithep::DecayDataArr;
286 bendavid 1.38
287 sixie 1.28 #pragma link C++ class mithep::DecayParticle+;
288     #pragma link C++ class mithep::Collection<mithep::DecayParticle>+;
289     #pragma link C++ class mithep::Array<mithep::DecayParticle>+;
290     #pragma link C++ class mithep::ObjArray<mithep::DecayParticle>+;
291 loizides 1.14 #pragma link C++ typedef mithep::DecayParticleCol;
292 sixie 1.28 #pragma link C++ typedef mithep::DecayParticleArr;
293 loizides 1.39 #pragma link C++ typedef mithep::DecayParticleOArr;
294 sixie 1.28
295     #pragma link C++ class mithep::Conversion+;
296     #pragma link C++ class mithep::Collection<mithep::Conversion>+;
297     #pragma link C++ class mithep::Array<mithep::Conversion>+;
298     #pragma link C++ class mithep::ObjArray<mithep::Conversion>+;
299 bendavid 1.42 #pragma link C++ class mithep::RefArray<mithep::Conversion,128>+;
300 loizides 1.39 #pragma link C++ typedef mithep::ConversionCol;
301 sixie 1.28 #pragma link C++ typedef mithep::ConversionArr;
302 loizides 1.39 #pragma link C++ typedef mithep::ConversionOArr;
303 loizides 1.14
304 sixie 1.28 #pragma link C++ class mithep::Photon+;
305     #pragma link C++ class mithep::Collection<mithep::Photon>+;
306     #pragma link C++ class mithep::Array<mithep::Photon>+;
307     #pragma link C++ class mithep::ObjArray<mithep::Photon>+;
308     #pragma link C++ typedef mithep::PhotonCol;
309 bendavid 1.15 #pragma link C++ typedef mithep::PhotonArr;
310 loizides 1.39 #pragma link C++ typedef mithep::PhotonOArr;
311 sixie 1.28
312     #pragma link C++ class mithep::StableParticle+;
313     #pragma link C++ class mithep::Collection<mithep::StableParticle>+;
314     #pragma link C++ class mithep::Array<mithep::StableParticle>+;
315     #pragma link C++ class mithep::ObjArray<mithep::StableParticle>+;
316     #pragma link C++ typedef mithep::StableParticleCol;
317 bendavid 1.21 #pragma link C++ typedef mithep::StableParticleArr;
318 loizides 1.39 #pragma link C++ typedef mithep::StableParticleOArr;
319    
320 sixie 1.28 #pragma link C++ class mithep::StableDaughter+;
321     #pragma link C++ class mithep::Collection<mithep::StableDaughter>+;
322     #pragma link C++ class mithep::Array<mithep::StableDaughter>+;
323     #pragma link C++ class mithep::ObjArray<mithep::StableDaughter>+;
324     #pragma link C++ typedef mithep::StableDaughterCol;
325 bendavid 1.24 #pragma link C++ typedef mithep::StableDaughterArr;
326 loizides 1.39 #pragma link C++ typedef mithep::StableDaughterOArr;
327 bendavid 1.38
328 loizides 1.1 #endif