ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/MitAna/DataTree/src/MitAnaDataTreeLinkDef.h
Revision: 1.31
Committed: Sat Sep 6 18:02:38 2008 UTC (16 years, 8 months ago) by sixie
Content type: text/plain
Branch: MAIN
Changes since 1.30: +10 -1 lines
Log Message:
Add CaloTowers

File Contents

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