ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/MitAna/DataTree/src/MitAnaDataTreeLinkDef.h
Revision: 1.40
Committed: Tue Sep 30 12:55:13 2008 UTC (16 years, 7 months ago) by bendavid
Content type: text/plain
Branch: MAIN
CVS Tags: Mit_005, Mit_004
Changes since 1.39: +22 -4 lines
Log Message:
Added StableData and DecayData, removed FitVertex

File Contents

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