ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/MitAna/DataTree/src/MitAnaDataTreeLinkDef.h
Revision: 1.30
Committed: Fri Sep 5 01:21:46 2008 UTC (16 years, 8 months ago) by loizides
Content type: text/plain
Branch: MAIN
Changes since 1.29: +12 -5 lines
Log Message:
Added generalized BitMask class.

File Contents

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