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

# User Rev Content
1 loizides 1.30 // $Id: MitAnaDataTreeLinkDef.h,v 1.29 2008/08/29 01:53:27 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    
26 loizides 1.1 #include "MitAna/DataTree/interface/Particle.h"
27 bendavid 1.21 #include "MitAna/DataTree/interface/ChargedParticle.h"
28 loizides 1.3 #include "MitAna/DataTree/interface/Muon.h"
29 bendavid 1.5 #include "MitAna/DataTree/interface/Electron.h"
30 loizides 1.16 #include "MitAna/DataTree/interface/Jet.h"
31     #include "MitAna/DataTree/interface/Met.h"
32 bendavid 1.20 #include "MitAna/DataTree/interface/MCParticle.h"
33 loizides 1.13 #include "MitAna/DataTree/interface/CompositeParticle.h"
34 loizides 1.12 #include "MitAna/DataTree/interface/DecayParticle.h"
35 sixie 1.28 #include "MitAna/DataTree/interface/Conversion.h"
36 loizides 1.12 #include "MitAna/DataTree/interface/Photon.h"
37 bendavid 1.21 #include "MitAna/DataTree/interface/StableParticle.h"
38 bendavid 1.24 #include "MitAna/DataTree/interface/StableDaughter.h"
39 loizides 1.1 #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 loizides 1.2 #pragma link C++ class mithep::Names+;
50    
51 loizides 1.10 #pragma link C++ class mithep::EventHeader+;
52 loizides 1.11 #pragma link C++ class mithep::LAHeader+;
53 loizides 1.10 #pragma link C++ class mithep::RunInfo+;
54 loizides 1.29 #pragma link C++ class mithep::MCEventInfo+;
55 loizides 1.12
56 loizides 1.30 #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 sixie 1.28 #pragma link C++ class mithep::BitMask32+;
63     #pragma link C++ class mithep::BitMask64+;
64     #pragma link C++ class mithep::Collection<TRef>+;
65    
66 loizides 1.3 #pragma link C++ class mithep::DataObject+;
67 sixie 1.28 #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 loizides 1.12 #pragma link C++ class mithep::Vertex+;
74     #pragma link C++ class mithep::FitVertex+;
75 sixie 1.28
76 loizides 1.3 #pragma link C++ class mithep::Track+;
77 sixie 1.28 #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 loizides 1.1 #pragma link C++ class mithep::Particle+;
98 sixie 1.28 #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 bendavid 1.21 #pragma link C++ class mithep::ChargedParticle+;
104 sixie 1.28 #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 loizides 1.3 #pragma link C++ class mithep::Muon+;
110 sixie 1.28 #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 bendavid 1.5 #pragma link C++ class mithep::Electron+;
117 sixie 1.28 #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 loizides 1.16 #pragma link C++ class mithep::Jet+;
124 sixie 1.28 #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 loizides 1.16 #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 sixie 1.28 #pragma link C++ typedef mithep::MetCol;
135     #pragma link C++ typedef mithep::MetArr;
136 loizides 1.12
137     #pragma link C++ class mithep::CompositeParticle+;
138 loizides 1.13 #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 sixie 1.28 #pragma link C++ typedef mithep::CompositeParticleCol;
142     #pragma link C++ typedef mithep::CompositeParticleArr;
143 loizides 1.12
144 sixie 1.28 #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 bendavid 1.20 #pragma link C++ typedef mithep::MCParticleCol;
149 sixie 1.28 #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 loizides 1.14 #pragma link C++ typedef mithep::DecayParticleCol;
157 sixie 1.28 #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 bendavid 1.15 #pragma link C++ typedef mithep::ConversionCol;
166 loizides 1.14
167 sixie 1.28 #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 bendavid 1.15 #pragma link C++ typedef mithep::PhotonArr;
173 sixie 1.28
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 bendavid 1.21 #pragma link C++ typedef mithep::StableParticleArr;
180 sixie 1.28 #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 bendavid 1.24 #pragma link C++ typedef mithep::StableDaughterArr;
186 loizides 1.12
187 loizides 1.1 #endif