ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/MitAna/DataTree/src/MitAnaDataTreeLinkDef.h
Revision: 1.28
Committed: Fri Aug 8 11:16:09 2008 UTC (16 years, 8 months ago) by sixie
Content type: text/plain
Branch: MAIN
CVS Tags: MITHEP_2_0_x
Changes since 1.27: +103 -76 lines
Log Message:
Add BasicClusters and SuperClusters to Collections and related Names. Change the order of the dictionary definitions to accomodate them

File Contents

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