ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/MitAna/DataTree/src/MitAnaDataTreeLinkDef.h
Revision: 1.48
Committed: Wed Dec 10 11:29:25 2008 UTC (16 years, 4 months ago) by loizides
Content type: text/plain
Branch: MAIN
Changes since 1.47: +7 -5 lines
Log Message:
Added ParticleOArr

File Contents

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