ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/MitAna/DataTree/src/MitAnaDataTreeLinkDef.h
Revision: 1.29
Committed: Fri Aug 29 01:53:27 2008 UTC (16 years, 8 months ago) by loizides
Content type: text/plain
Branch: MAIN
Changes since 1.28: +3 -1 lines
Log Message:
Added MC event info class, for now just holding an event weight.

File Contents

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