ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/MitAna/DataTree/src/MitAnaDataTreeLinkDef.h
Revision: 1.38
Committed: Fri Sep 19 11:58:03 2008 UTC (16 years, 7 months ago) by bendavid
Content type: text/plain
Branch: MAIN
Changes since 1.37: +6 -1 lines
Log Message:
added DaughterData

File Contents

# User Rev Content
1 bendavid 1.38 // $Id: MitAnaDataTreeLinkDef.h,v 1.37 2008/09/17 04:21:50 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.37 //#include "MitAna/DataTree/interface/BitMask32.h"
15     //#include "MitAna/DataTree/interface/BitMask64.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 loizides 1.12 #include "MitAna/DataTree/interface/Vertex.h"
24     #include "MitAna/DataTree/interface/FitVertex.h"
25 loizides 1.3 #include "MitAna/DataTree/interface/Track.h"
26 sixie 1.28 #include "MitAna/DataTree/interface/BasicCluster.h"
27     #include "MitAna/DataTree/interface/SuperCluster.h"
28 sixie 1.31 #include "MitAna/DataTree/interface/CaloTower.h"
29 sixie 1.28
30 loizides 1.1 #include "MitAna/DataTree/interface/Particle.h"
31 bendavid 1.21 #include "MitAna/DataTree/interface/ChargedParticle.h"
32 loizides 1.3 #include "MitAna/DataTree/interface/Muon.h"
33 bendavid 1.5 #include "MitAna/DataTree/interface/Electron.h"
34 loizides 1.16 #include "MitAna/DataTree/interface/Jet.h"
35 sixie 1.35 #include "MitAna/DataTree/interface/GenJet.h"
36 loizides 1.16 #include "MitAna/DataTree/interface/Met.h"
37 loizides 1.37 #include "MitAna/DataTree/interface/TriggerObject.h"
38 bendavid 1.20 #include "MitAna/DataTree/interface/MCParticle.h"
39 loizides 1.13 #include "MitAna/DataTree/interface/CompositeParticle.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.37 #pragma link C++ class mithep::BitMask<1>+;
58     #pragma link C++ class mithep::BitMask<2>+;
59 loizides 1.30 #pragma link C++ class mithep::BitMask<4>+;
60 loizides 1.37 #pragma link C++ class mithep::BitMask<5>+;
61     #pragma link C++ class mithep::BitMask<6>+;
62     #pragma link C++ class mithep::BitMask<7>+;
63 loizides 1.30 #pragma link C++ class mithep::BitMask<8>+;
64     #pragma link C++ class mithep::BitMask<32>+;
65 loizides 1.37 #pragma link C++ typedef mithep::BitMask8;
66     #pragma link C++ typedef mithep::BitMask16;
67     #pragma link C++ typedef mithep::BitMask32;
68     #pragma link C++ typedef mithep::BitMask40;
69     #pragma link C++ typedef mithep::BitMask48;
70     #pragma link C++ typedef mithep::BitMask56;
71     #pragma link C++ typedef mithep::BitMask64;
72 loizides 1.30 #pragma link C++ typedef mithep::BitMask256;
73 sixie 1.28 #pragma link C++ class mithep::BitMask32+;
74     #pragma link C++ class mithep::BitMask64+;
75 loizides 1.32 #pragma link C++ class mithep::EventHeader+;
76     #pragma link C++ class mithep::LAHeader+;
77 loizides 1.37 #pragma link C++ class mithep::TriggerName+;
78 loizides 1.32 #pragma link C++ class mithep::RunInfo+;
79     #pragma link C++ class mithep::MCEventInfo+;
80    
81 sixie 1.28 #pragma link C++ class mithep::Collection<TRef>+;
82 loizides 1.37 #pragma link C++ class mithep::Collection<std::string>+;
83     #pragma link C++ class mithep::Vector<std::string>+;
84 sixie 1.28
85 loizides 1.3 #pragma link C++ class mithep::DataObject+;
86 sixie 1.28 #pragma link C++ class mithep::Collection<mithep::DataObject>+;
87     #pragma link C++ class mithep::Array<mithep::DataObject>+;
88     #pragma link C++ class mithep::ObjArray<mithep::DataObject>+;
89     #pragma link C++ typedef mithep::DataObjectCol;
90     #pragma link C++ typedef mithep::DataObjectArr;
91    
92 loizides 1.12 #pragma link C++ class mithep::Vertex+;
93     #pragma link C++ class mithep::FitVertex+;
94 sixie 1.28
95 loizides 1.3 #pragma link C++ class mithep::Track+;
96 sixie 1.28 #pragma link C++ class mithep::Collection<mithep::Track>+;
97     #pragma link C++ class mithep::Array<mithep::Track>+;
98     #pragma link C++ class mithep::ObjArray<mithep::Track>+;
99     #pragma link C++ typedef mithep::TrackCol;
100     #pragma link C++ typedef mithep::TrackArr;
101 loizides 1.37 #pragma link C++ enum mithep::Track::EHitLayer;
102 sixie 1.28
103     #pragma link C++ class mithep::BasicCluster+;
104     #pragma link C++ class mithep::Collection<mithep::BasicCluster>+;
105     #pragma link C++ class mithep::Array<mithep::BasicCluster>+;
106     #pragma link C++ class mithep::ObjArray<mithep::BasicCluster>+;
107     #pragma link C++ class mithep::RefArray<mithep::BasicCluster>-;
108     #pragma link C++ typedef mithep::BasicClusterCol;
109     #pragma link C++ typedef mithep::BasicClusterArr;
110     #pragma link C++ class mithep::SuperCluster+;
111     #pragma link C++ class mithep::Collection<mithep::SuperCluster>+;
112     #pragma link C++ class mithep::Array<mithep::SuperCluster>+;
113     #pragma link C++ class mithep::ObjArray<mithep::SuperCluster>+;
114     #pragma link C++ typedef mithep::SuperClusterCol;
115     #pragma link C++ typedef mithep::SuperClusterArr;
116    
117 sixie 1.31 #pragma link C++ class mithep::CaloTower+;
118     #pragma link C++ class mithep::Collection<mithep::CaloTower>+;
119     #pragma link C++ class mithep::Array<mithep::CaloTower>+;
120     #pragma link C++ class mithep::ObjArray<mithep::CaloTower>+;
121     #pragma link C++ class mithep::RefArray<mithep::CaloTower>-;
122     #pragma link C++ typedef mithep::CaloTowerCol;
123     #pragma link C++ typedef mithep::CaloTowerArr;
124    
125 loizides 1.1 #pragma link C++ class mithep::Particle+;
126 sixie 1.28 #pragma link C++ class mithep::Collection<mithep::Particle>+;
127     #pragma link C++ class mithep::RefArray<mithep::Particle>-;
128     #pragma link C++ typedef mithep::ParticleCol;
129     #pragma link C++ typedef mithep::ParticleArr;
130    
131 bendavid 1.21 #pragma link C++ class mithep::ChargedParticle+;
132 sixie 1.28 #pragma link C++ class mithep::Collection<mithep::ChargedParticle>+;
133     #pragma link C++ class mithep::ObjArray<mithep::ChargedParticle>+;
134     #pragma link C++ typedef mithep::ChargedParticleCol;
135     #pragma link C++ typedef mithep::ChargedParticleArr;
136    
137 loizides 1.3 #pragma link C++ class mithep::Muon+;
138 sixie 1.28 #pragma link C++ class mithep::Collection<mithep::Muon>+;
139     #pragma link C++ class mithep::Array<mithep::Muon>+;
140     #pragma link C++ class mithep::ObjArray<mithep::Muon>+;
141     #pragma link C++ typedef mithep::MuonCol;
142     #pragma link C++ typedef mithep::MuonArr;
143    
144 bendavid 1.5 #pragma link C++ class mithep::Electron+;
145 sixie 1.28 #pragma link C++ class mithep::Collection<mithep::Electron>+;
146     #pragma link C++ class mithep::Array<mithep::Electron>+;
147     #pragma link C++ class mithep::ObjArray<mithep::Electron>+;
148     #pragma link C++ typedef mithep::ElectronCol;
149     #pragma link C++ typedef mithep::ElectronArr;
150    
151 loizides 1.16 #pragma link C++ class mithep::Jet+;
152 sixie 1.28 #pragma link C++ class mithep::Collection<mithep::Jet>+;
153     #pragma link C++ class mithep::Array<mithep::Jet>+;
154     #pragma link C++ class mithep::ObjArray<mithep::Jet>+;
155     #pragma link C++ typedef mithep::JetCol;
156     #pragma link C++ typedef mithep::JetArr;
157    
158 sixie 1.35 #pragma link C++ class mithep::GenJet+;
159     #pragma link C++ class mithep::Collection<mithep::GenJet>+;
160     #pragma link C++ class mithep::Array<mithep::GenJet>+;
161     #pragma link C++ class mithep::ObjArray<mithep::GenJet>+;
162     #pragma link C++ typedef mithep::GenJetCol;
163     #pragma link C++ typedef mithep::GenJetArr;
164    
165 loizides 1.16 #pragma link C++ class mithep::Met+;
166     #pragma link C++ class mithep::Collection<mithep::Met>+;
167     #pragma link C++ class mithep::Array<mithep::Met>+;
168     #pragma link C++ class mithep::ObjArray<mithep::Met>+;
169 sixie 1.28 #pragma link C++ typedef mithep::MetCol;
170     #pragma link C++ typedef mithep::MetArr;
171 loizides 1.12
172 loizides 1.37 #pragma link C++ class mithep::TriggerObjectRel+;
173     #pragma link C++ class mithep::Collection<mithep::TriggerObjectRel>+;
174     #pragma link C++ class mithep::Array<mithep::TriggerObjectRel>+;
175     #pragma link C++ typedef mithep::TriggerObjectRelCol;
176     #pragma link C++ typedef mithep::TriggerObjectRelArr;
177    
178     #pragma link C++ class mithep::TriggerObjectBase+;
179     #pragma link C++ class mithep::Collection<mithep::TriggerObjectBase>+;
180     #pragma link C++ class mithep::Array<mithep::TriggerObjectBase>+;
181     #pragma link C++ typedef mithep::TriggerObjectBaseCol;
182     #pragma link C++ typedef mithep::TriggerObjectBaseArr;
183    
184     #pragma link C++ class mithep::TriggerObject+;
185     #pragma link C++ class mithep::Collection<mithep::TriggerObject>+;
186     #pragma link C++ class mithep::Array<mithep::TriggerObject>+;
187     #pragma link C++ class mithep::ObjArray<mithep::TriggerObject>+;
188     #pragma link C++ typedef mithep::TriggerObjectCol;
189     #pragma link C++ typedef mithep::TriggerObjectArr;
190     #pragma link C++ enum mithep::TriggerObject::ETriggerObject;
191    
192 loizides 1.12 #pragma link C++ class mithep::CompositeParticle+;
193 loizides 1.13 #pragma link C++ class mithep::Collection<mithep::CompositeParticle>+;
194     #pragma link C++ class mithep::Array<mithep::CompositeParticle>+;
195     #pragma link C++ class mithep::ObjArray<mithep::CompositeParticle>+;
196 sixie 1.28 #pragma link C++ typedef mithep::CompositeParticleCol;
197     #pragma link C++ typedef mithep::CompositeParticleArr;
198 loizides 1.12
199 sixie 1.28 #pragma link C++ class mithep::MCParticle+;
200     #pragma link C++ class mithep::Collection<mithep::MCParticle>+;
201     #pragma link C++ class mithep::Array<mithep::MCParticle>+;
202     #pragma link C++ class mithep::ObjArray<mithep::MCParticle>+;
203 bendavid 1.20 #pragma link C++ typedef mithep::MCParticleCol;
204 sixie 1.28 #pragma link C++ typedef mithep::MCParticleArr;
205     #pragma link C++ enum mithep::MCParticle::EPartType;
206    
207 bendavid 1.38 #pragma link C++ class mithep::DaughterData+;
208     #pragma link C++ class mithep::Collection<mithep::DaughterData>+;
209     #pragma link C++ class mithep::StackArray<mithep::DaughterData,32>-;
210    
211 sixie 1.28 #pragma link C++ class mithep::DecayParticle+;
212     #pragma link C++ class mithep::Collection<mithep::DecayParticle>+;
213     #pragma link C++ class mithep::Array<mithep::DecayParticle>+;
214     #pragma link C++ class mithep::ObjArray<mithep::DecayParticle>+;
215 loizides 1.14 #pragma link C++ typedef mithep::DecayParticleCol;
216 sixie 1.28 #pragma link C++ typedef mithep::DecayParticleArr;
217    
218     #pragma link C++ class mithep::Conversion+;
219     #pragma link C++ class mithep::Collection<mithep::Conversion>+;
220     #pragma link C++ class mithep::Array<mithep::Conversion>+;
221     #pragma link C++ class mithep::ObjArray<mithep::Conversion>+;
222     #pragma link C++ class mithep::RefArray<mithep::Conversion>-;
223     #pragma link C++ typedef mithep::ConversionArr;
224 bendavid 1.15 #pragma link C++ typedef mithep::ConversionCol;
225 loizides 1.14
226 sixie 1.28 #pragma link C++ class mithep::Photon+;
227     #pragma link C++ class mithep::Collection<mithep::Photon>+;
228     #pragma link C++ class mithep::Array<mithep::Photon>+;
229     #pragma link C++ class mithep::ObjArray<mithep::Photon>+;
230     #pragma link C++ typedef mithep::PhotonCol;
231 bendavid 1.15 #pragma link C++ typedef mithep::PhotonArr;
232 sixie 1.28
233     #pragma link C++ class mithep::StableParticle+;
234     #pragma link C++ class mithep::Collection<mithep::StableParticle>+;
235     #pragma link C++ class mithep::Array<mithep::StableParticle>+;
236     #pragma link C++ class mithep::ObjArray<mithep::StableParticle>+;
237     #pragma link C++ typedef mithep::StableParticleCol;
238 bendavid 1.21 #pragma link C++ typedef mithep::StableParticleArr;
239 sixie 1.28 #pragma link C++ class mithep::StableDaughter+;
240     #pragma link C++ class mithep::Collection<mithep::StableDaughter>+;
241     #pragma link C++ class mithep::Array<mithep::StableDaughter>+;
242     #pragma link C++ class mithep::ObjArray<mithep::StableDaughter>+;
243     #pragma link C++ typedef mithep::StableDaughterCol;
244 bendavid 1.24 #pragma link C++ typedef mithep::StableDaughterArr;
245 loizides 1.12
246 bendavid 1.38
247 loizides 1.1 #endif