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

# User Rev Content
1 bendavid 1.40 // $Id: MitAnaDataTreeLinkDef.h,v 1.39 2008/09/27 06:12:59 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.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 loizides 1.12 #include "MitAna/DataTree/interface/Vertex.h"
22 loizides 1.3 #include "MitAna/DataTree/interface/Track.h"
23 sixie 1.28 #include "MitAna/DataTree/interface/BasicCluster.h"
24     #include "MitAna/DataTree/interface/SuperCluster.h"
25 sixie 1.31 #include "MitAna/DataTree/interface/CaloTower.h"
26 sixie 1.28
27 loizides 1.1 #include "MitAna/DataTree/interface/Particle.h"
28 bendavid 1.21 #include "MitAna/DataTree/interface/ChargedParticle.h"
29 loizides 1.3 #include "MitAna/DataTree/interface/Muon.h"
30 bendavid 1.5 #include "MitAna/DataTree/interface/Electron.h"
31 loizides 1.16 #include "MitAna/DataTree/interface/Jet.h"
32 sixie 1.35 #include "MitAna/DataTree/interface/GenJet.h"
33 loizides 1.16 #include "MitAna/DataTree/interface/Met.h"
34 loizides 1.37 #include "MitAna/DataTree/interface/TriggerObject.h"
35 bendavid 1.20 #include "MitAna/DataTree/interface/MCParticle.h"
36 loizides 1.13 #include "MitAna/DataTree/interface/CompositeParticle.h"
37 bendavid 1.40 #include "MitAna/DataTree/interface/DaughterData.h"
38     #include "MitAna/DataTree/interface/StableData.h"
39     #include "MitAna/DataTree/interface/DecayData.h"
40 loizides 1.12 #include "MitAna/DataTree/interface/DecayParticle.h"
41 sixie 1.28 #include "MitAna/DataTree/interface/Conversion.h"
42 loizides 1.12 #include "MitAna/DataTree/interface/Photon.h"
43 bendavid 1.21 #include "MitAna/DataTree/interface/StableParticle.h"
44 bendavid 1.24 #include "MitAna/DataTree/interface/StableDaughter.h"
45 loizides 1.1 #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 loizides 1.2 #pragma link C++ class mithep::Names+;
56    
57 loizides 1.39 #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 loizides 1.37 #pragma link C++ class mithep::BitMask<1>+;
62     #pragma link C++ class mithep::BitMask<2>+;
63 loizides 1.30 #pragma link C++ class mithep::BitMask<4>+;
64     #pragma link C++ class mithep::BitMask<8>+;
65 loizides 1.39 #pragma link C++ class mithep::BitMask<16>+;
66 loizides 1.30 #pragma link C++ class mithep::BitMask<32>+;
67 loizides 1.37 #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 loizides 1.39 #pragma link C++ typedef mithep::BitMask128;
72 loizides 1.30 #pragma link C++ typedef mithep::BitMask256;
73 loizides 1.39 #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 loizides 1.32 #pragma link C++ class mithep::EventHeader+;
99     #pragma link C++ class mithep::LAHeader+;
100 loizides 1.37 #pragma link C++ class mithep::TriggerName+;
101 loizides 1.32 #pragma link C++ class mithep::RunInfo+;
102     #pragma link C++ class mithep::MCEventInfo+;
103    
104 loizides 1.3 #pragma link C++ class mithep::DataObject+;
105 sixie 1.28 #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 loizides 1.39 #pragma link C++ typedef mithep::DataObjectOArr;
111 sixie 1.28
112 loizides 1.12 #pragma link C++ class mithep::Vertex+;
113 bendavid 1.40 #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 sixie 1.28
119 loizides 1.39 #pragma link C++ class mithep::Collection<mithep::BitMask256>+;
120     #pragma link C++ class mithep::Vector<mithep::BitMask256>+;
121    
122 loizides 1.3 #pragma link C++ class mithep::Track+;
123 sixie 1.28 #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 loizides 1.39 #pragma link C++ typedef mithep::TrackOArr;
129 loizides 1.37 #pragma link C++ enum mithep::Track::EHitLayer;
130 sixie 1.28
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 loizides 1.39 #pragma link C++ typedef mithep::BasicClusterOArr;
139    
140 sixie 1.28 #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 loizides 1.39 #pragma link C++ typedef mithep::SuperClusterOArr;
147 sixie 1.28
148 sixie 1.31 #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 loizides 1.39 #pragma link C++ typedef mithep::CaloTowerOArr;
156 sixie 1.31
157 loizides 1.1 #pragma link C++ class mithep::Particle+;
158 sixie 1.28 #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 bendavid 1.21 #pragma link C++ class mithep::ChargedParticle+;
163 sixie 1.28 #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 loizides 1.39 #pragma link C++ typedef mithep::ChargedParticleOArr;
168 sixie 1.28
169 loizides 1.3 #pragma link C++ class mithep::Muon+;
170 sixie 1.28 #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 loizides 1.39 #pragma link C++ typedef mithep::MuonOArr;
176 sixie 1.28
177 bendavid 1.5 #pragma link C++ class mithep::Electron+;
178 sixie 1.28 #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 loizides 1.39 #pragma link C++ typedef mithep::ElectronOArr;
184 sixie 1.28
185 loizides 1.16 #pragma link C++ class mithep::Jet+;
186 sixie 1.28 #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 loizides 1.39 #pragma link C++ typedef mithep::JetOArr;
192 sixie 1.28
193 sixie 1.35 #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 loizides 1.39 #pragma link C++ typedef mithep::GenJetOArr;
200 sixie 1.35
201 loizides 1.16 #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 sixie 1.28 #pragma link C++ typedef mithep::MetCol;
206     #pragma link C++ typedef mithep::MetArr;
207 loizides 1.39 #pragma link C++ typedef mithep::MetOArr;
208 loizides 1.12
209 loizides 1.37 #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 loizides 1.39 #pragma link C++ typedef mithep::TriggerObjectRelOArr;
215 loizides 1.37
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 loizides 1.39 #pragma link C++ typedef mithep::TriggerObjectBaseOArr;
222 loizides 1.37
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 loizides 1.39 #pragma link C++ typedef mithep::TriggerObjectOArr;
230 loizides 1.37 #pragma link C++ enum mithep::TriggerObject::ETriggerObject;
231    
232 loizides 1.12 #pragma link C++ class mithep::CompositeParticle+;
233 loizides 1.13 #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 sixie 1.28 #pragma link C++ typedef mithep::CompositeParticleCol;
237     #pragma link C++ typedef mithep::CompositeParticleArr;
238 loizides 1.39 #pragma link C++ typedef mithep::CompositeParticleOArr;
239 loizides 1.12
240 sixie 1.28 #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 bendavid 1.20 #pragma link C++ typedef mithep::MCParticleCol;
245 sixie 1.28 #pragma link C++ typedef mithep::MCParticleArr;
246 loizides 1.39 #pragma link C++ typedef mithep::MCParticleOArr;
247 sixie 1.28 #pragma link C++ enum mithep::MCParticle::EPartType;
248    
249 bendavid 1.38 #pragma link C++ class mithep::DaughterData+;
250     #pragma link C++ class mithep::Collection<mithep::DaughterData>+;
251 bendavid 1.40 #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 bendavid 1.38
265 sixie 1.28 #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 loizides 1.14 #pragma link C++ typedef mithep::DecayParticleCol;
270 sixie 1.28 #pragma link C++ typedef mithep::DecayParticleArr;
271 loizides 1.39 #pragma link C++ typedef mithep::DecayParticleOArr;
272 sixie 1.28
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 loizides 1.39 #pragma link C++ typedef mithep::ConversionCol;
279 sixie 1.28 #pragma link C++ typedef mithep::ConversionArr;
280 loizides 1.39 #pragma link C++ typedef mithep::ConversionOArr;
281 loizides 1.14
282 sixie 1.28 #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 bendavid 1.15 #pragma link C++ typedef mithep::PhotonArr;
288 loizides 1.39 #pragma link C++ typedef mithep::PhotonOArr;
289 sixie 1.28
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 bendavid 1.21 #pragma link C++ typedef mithep::StableParticleArr;
296 loizides 1.39 #pragma link C++ typedef mithep::StableParticleOArr;
297    
298 sixie 1.28 #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 bendavid 1.24 #pragma link C++ typedef mithep::StableDaughterArr;
304 loizides 1.39 #pragma link C++ typedef mithep::StableDaughterOArr;
305 bendavid 1.38
306 loizides 1.1 #endif