ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/MitAna/DataTree/src/MitAnaDataTreeLinkDef.h
Revision: 1.24
Committed: Tue Jul 29 12:29:47 2008 UTC (16 years, 9 months ago) by bendavid
Content type: text/plain
Branch: MAIN
Changes since 1.23: +8 -1 lines
Log Message:
Revamped implementation of decay tree classes, started to remove use of Vertex and FitVertex to prepare for removal of these classes

File Contents

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