ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/MitAna/DataTree/src/MitAnaDataTreeLinkDef.h
Revision: 1.35
Committed: Tue Sep 16 18:13:03 2008 UTC (16 years, 7 months ago) by sixie
Content type: text/plain
Branch: MAIN
Changes since 1.34: +9 -1 lines
Log Message:
Add GenJet to dictionary file

File Contents

# User Rev Content
1 sixie 1.35 // $Id: MitAnaDataTreeLinkDef.h,v 1.34 2008/09/10 17:05:37 ksung 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     #include <vector>
7     #include "MitAna/DataTree/interface/Types.h"
8 loizides 1.2 #include "MitAna/DataTree/interface/Names.h"
9 loizides 1.16 #include "MitAna/DataTree/interface/Collections.h"
10 loizides 1.12
11 loizides 1.30 #include "MitAna/DataTree/interface/BitMask.h"
12     #include "MitAna/DataTree/interface/BitMask32.h"
13     #include "MitAna/DataTree/interface/BitMask64.h"
14 loizides 1.10 #include "MitAna/DataTree/interface/EventHeader.h"
15 loizides 1.11 #include "MitAna/DataTree/interface/LAHeader.h"
16 loizides 1.33 //#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     #include "MitAna/DataTree/interface/FitVertex.h"
23 loizides 1.3 #include "MitAna/DataTree/interface/Track.h"
24 sixie 1.28 #include "MitAna/DataTree/interface/BasicCluster.h"
25     #include "MitAna/DataTree/interface/SuperCluster.h"
26 sixie 1.31 #include "MitAna/DataTree/interface/CaloTower.h"
27 sixie 1.28
28 loizides 1.1 #include "MitAna/DataTree/interface/Particle.h"
29 bendavid 1.21 #include "MitAna/DataTree/interface/ChargedParticle.h"
30 loizides 1.3 #include "MitAna/DataTree/interface/Muon.h"
31 bendavid 1.5 #include "MitAna/DataTree/interface/Electron.h"
32 loizides 1.16 #include "MitAna/DataTree/interface/Jet.h"
33 sixie 1.35 #include "MitAna/DataTree/interface/GenJet.h"
34 loizides 1.16 #include "MitAna/DataTree/interface/Met.h"
35 ksung 1.34 #include "MitAna/DataTree/interface/CaloMet.h"
36 bendavid 1.20 #include "MitAna/DataTree/interface/MCParticle.h"
37 loizides 1.13 #include "MitAna/DataTree/interface/CompositeParticle.h"
38 loizides 1.12 #include "MitAna/DataTree/interface/DecayParticle.h"
39 sixie 1.28 #include "MitAna/DataTree/interface/Conversion.h"
40 loizides 1.12 #include "MitAna/DataTree/interface/Photon.h"
41 bendavid 1.21 #include "MitAna/DataTree/interface/StableParticle.h"
42 bendavid 1.24 #include "MitAna/DataTree/interface/StableDaughter.h"
43 loizides 1.1 #endif
44    
45     #ifdef __CINT__
46     #pragma link off all globals;
47     #pragma link off all classes;
48     #pragma link off all functions;
49     #pragma link C++ nestedclass;
50     #pragma link C++ nestedtypedef;
51     #pragma link C++ namespace mithep;
52    
53 loizides 1.2 #pragma link C++ class mithep::Names+;
54    
55 loizides 1.30 #pragma link C++ class mithep::BitMask<4>+;
56     #pragma link C++ class mithep::BitMask<8>+;
57     #pragma link C++ class mithep::BitMask<32>+;
58     //#pragma link C++ typedef mithep::BitMask32;
59     //#pragma link C++ typedef mithep::BitMask64;
60     #pragma link C++ typedef mithep::BitMask256;
61 sixie 1.28 #pragma link C++ class mithep::BitMask32+;
62     #pragma link C++ class mithep::BitMask64+;
63 loizides 1.32 #pragma link C++ class mithep::EventHeader+;
64     #pragma link C++ class mithep::LAHeader+;
65 loizides 1.33 //#pragma link C++ class mithep::TriggerName+;
66 loizides 1.32 #pragma link C++ class mithep::RunInfo+;
67     #pragma link C++ class mithep::MCEventInfo+;
68    
69 sixie 1.28 #pragma link C++ class mithep::Collection<TRef>+;
70    
71 loizides 1.3 #pragma link C++ class mithep::DataObject+;
72 sixie 1.28 #pragma link C++ class mithep::Collection<mithep::DataObject>+;
73     #pragma link C++ class mithep::Array<mithep::DataObject>+;
74     #pragma link C++ class mithep::ObjArray<mithep::DataObject>+;
75     #pragma link C++ typedef mithep::DataObjectCol;
76     #pragma link C++ typedef mithep::DataObjectArr;
77    
78 loizides 1.12 #pragma link C++ class mithep::Vertex+;
79     #pragma link C++ class mithep::FitVertex+;
80 sixie 1.28
81 loizides 1.3 #pragma link C++ class mithep::Track+;
82 sixie 1.28 #pragma link C++ class mithep::Collection<mithep::Track>+;
83     #pragma link C++ class mithep::Array<mithep::Track>+;
84     #pragma link C++ class mithep::ObjArray<mithep::Track>+;
85     #pragma link C++ typedef mithep::TrackCol;
86     #pragma link C++ typedef mithep::TrackArr;
87    
88     #pragma link C++ class mithep::BasicCluster+;
89     #pragma link C++ class mithep::Collection<mithep::BasicCluster>+;
90     #pragma link C++ class mithep::Array<mithep::BasicCluster>+;
91     #pragma link C++ class mithep::ObjArray<mithep::BasicCluster>+;
92     #pragma link C++ class mithep::RefArray<mithep::BasicCluster>-;
93     #pragma link C++ typedef mithep::BasicClusterCol;
94     #pragma link C++ typedef mithep::BasicClusterArr;
95     #pragma link C++ class mithep::SuperCluster+;
96     #pragma link C++ class mithep::Collection<mithep::SuperCluster>+;
97     #pragma link C++ class mithep::Array<mithep::SuperCluster>+;
98     #pragma link C++ class mithep::ObjArray<mithep::SuperCluster>+;
99     #pragma link C++ typedef mithep::SuperClusterCol;
100     #pragma link C++ typedef mithep::SuperClusterArr;
101    
102 sixie 1.31 #pragma link C++ class mithep::CaloTower+;
103     #pragma link C++ class mithep::Collection<mithep::CaloTower>+;
104     #pragma link C++ class mithep::Array<mithep::CaloTower>+;
105     #pragma link C++ class mithep::ObjArray<mithep::CaloTower>+;
106     #pragma link C++ class mithep::RefArray<mithep::CaloTower>-;
107     #pragma link C++ typedef mithep::CaloTowerCol;
108     #pragma link C++ typedef mithep::CaloTowerArr;
109    
110 loizides 1.1 #pragma link C++ class mithep::Particle+;
111 sixie 1.28 #pragma link C++ class mithep::Collection<mithep::Particle>+;
112     #pragma link C++ class mithep::RefArray<mithep::Particle>-;
113     #pragma link C++ typedef mithep::ParticleCol;
114     #pragma link C++ typedef mithep::ParticleArr;
115    
116 bendavid 1.21 #pragma link C++ class mithep::ChargedParticle+;
117 sixie 1.28 #pragma link C++ class mithep::Collection<mithep::ChargedParticle>+;
118     #pragma link C++ class mithep::ObjArray<mithep::ChargedParticle>+;
119     #pragma link C++ typedef mithep::ChargedParticleCol;
120     #pragma link C++ typedef mithep::ChargedParticleArr;
121    
122 loizides 1.3 #pragma link C++ class mithep::Muon+;
123 sixie 1.28 #pragma link C++ class mithep::Collection<mithep::Muon>+;
124     #pragma link C++ class mithep::Array<mithep::Muon>+;
125     #pragma link C++ class mithep::ObjArray<mithep::Muon>+;
126     #pragma link C++ typedef mithep::MuonCol;
127     #pragma link C++ typedef mithep::MuonArr;
128    
129 bendavid 1.5 #pragma link C++ class mithep::Electron+;
130 sixie 1.28 #pragma link C++ class mithep::Collection<mithep::Electron>+;
131     #pragma link C++ class mithep::Array<mithep::Electron>+;
132     #pragma link C++ class mithep::ObjArray<mithep::Electron>+;
133     #pragma link C++ typedef mithep::ElectronCol;
134     #pragma link C++ typedef mithep::ElectronArr;
135    
136 loizides 1.16 #pragma link C++ class mithep::Jet+;
137 sixie 1.28 #pragma link C++ class mithep::Collection<mithep::Jet>+;
138     #pragma link C++ class mithep::Array<mithep::Jet>+;
139     #pragma link C++ class mithep::ObjArray<mithep::Jet>+;
140     #pragma link C++ typedef mithep::JetCol;
141     #pragma link C++ typedef mithep::JetArr;
142    
143 sixie 1.35 #pragma link C++ class mithep::GenJet+;
144     #pragma link C++ class mithep::Collection<mithep::GenJet>+;
145     #pragma link C++ class mithep::Array<mithep::GenJet>+;
146     #pragma link C++ class mithep::ObjArray<mithep::GenJet>+;
147     #pragma link C++ typedef mithep::GenJetCol;
148     #pragma link C++ typedef mithep::GenJetArr;
149    
150 loizides 1.16 #pragma link C++ class mithep::Met+;
151     #pragma link C++ class mithep::Collection<mithep::Met>+;
152     #pragma link C++ class mithep::Array<mithep::Met>+;
153     #pragma link C++ class mithep::ObjArray<mithep::Met>+;
154 sixie 1.28 #pragma link C++ typedef mithep::MetCol;
155     #pragma link C++ typedef mithep::MetArr;
156 loizides 1.12
157 ksung 1.34 #pragma link C++ class mithep::CaloMet+;
158     #pragma link C++ class mithep::Collection<mithep::CaloMet>+;
159     #pragma link C++ class mithep::Array<mithep::CaloMet>+;
160     #pragma link C++ class mithep::ObjArray<mithep::CaloMet>+;
161     #pragma link C++ typedef mithep::CaloMetCol;
162     #pragma link C++ typedef mithep::CaloMetArr;
163    
164 loizides 1.12 #pragma link C++ class mithep::CompositeParticle+;
165 loizides 1.13 #pragma link C++ class mithep::Collection<mithep::CompositeParticle>+;
166     #pragma link C++ class mithep::Array<mithep::CompositeParticle>+;
167     #pragma link C++ class mithep::ObjArray<mithep::CompositeParticle>+;
168 sixie 1.28 #pragma link C++ typedef mithep::CompositeParticleCol;
169     #pragma link C++ typedef mithep::CompositeParticleArr;
170 loizides 1.12
171 sixie 1.28 #pragma link C++ class mithep::MCParticle+;
172     #pragma link C++ class mithep::Collection<mithep::MCParticle>+;
173     #pragma link C++ class mithep::Array<mithep::MCParticle>+;
174     #pragma link C++ class mithep::ObjArray<mithep::MCParticle>+;
175 bendavid 1.20 #pragma link C++ typedef mithep::MCParticleCol;
176 sixie 1.28 #pragma link C++ typedef mithep::MCParticleArr;
177     #pragma link C++ enum mithep::MCParticle::EPartType;
178    
179     #pragma link C++ class mithep::DecayParticle+;
180     #pragma link C++ class mithep::Collection<mithep::DecayParticle>+;
181     #pragma link C++ class mithep::Array<mithep::DecayParticle>+;
182     #pragma link C++ class mithep::ObjArray<mithep::DecayParticle>+;
183 loizides 1.14 #pragma link C++ typedef mithep::DecayParticleCol;
184 sixie 1.28 #pragma link C++ typedef mithep::DecayParticleArr;
185    
186     #pragma link C++ class mithep::Conversion+;
187     #pragma link C++ class mithep::Collection<mithep::Conversion>+;
188     #pragma link C++ class mithep::Array<mithep::Conversion>+;
189     #pragma link C++ class mithep::ObjArray<mithep::Conversion>+;
190     #pragma link C++ class mithep::RefArray<mithep::Conversion>-;
191     #pragma link C++ typedef mithep::ConversionArr;
192 bendavid 1.15 #pragma link C++ typedef mithep::ConversionCol;
193 loizides 1.14
194 sixie 1.28 #pragma link C++ class mithep::Photon+;
195     #pragma link C++ class mithep::Collection<mithep::Photon>+;
196     #pragma link C++ class mithep::Array<mithep::Photon>+;
197     #pragma link C++ class mithep::ObjArray<mithep::Photon>+;
198     #pragma link C++ typedef mithep::PhotonCol;
199 bendavid 1.15 #pragma link C++ typedef mithep::PhotonArr;
200 sixie 1.28
201     #pragma link C++ class mithep::StableParticle+;
202     #pragma link C++ class mithep::Collection<mithep::StableParticle>+;
203     #pragma link C++ class mithep::Array<mithep::StableParticle>+;
204     #pragma link C++ class mithep::ObjArray<mithep::StableParticle>+;
205     #pragma link C++ typedef mithep::StableParticleCol;
206 bendavid 1.21 #pragma link C++ typedef mithep::StableParticleArr;
207 sixie 1.28 #pragma link C++ class mithep::StableDaughter+;
208     #pragma link C++ class mithep::Collection<mithep::StableDaughter>+;
209     #pragma link C++ class mithep::Array<mithep::StableDaughter>+;
210     #pragma link C++ class mithep::ObjArray<mithep::StableDaughter>+;
211     #pragma link C++ typedef mithep::StableDaughterCol;
212 bendavid 1.24 #pragma link C++ typedef mithep::StableDaughterArr;
213 loizides 1.12
214 loizides 1.1 #endif