ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/MitAna/DataTree/src/MitAnaDataTreeLinkDef.h
Revision: 1.22
Committed: Mon Jul 28 23:13:42 2008 UTC (16 years, 9 months ago) by paus
Content type: text/plain
Branch: MAIN
Changes since 1.21: +17 -2 lines
Log Message:
Adding Stable/DecayParts.

File Contents

# User Rev Content
1 paus 1.22 // $Id: $
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.6 #include "MitAna/DataTree/interface/Array.h"
10     #include "MitAna/DataTree/interface/ObjArray.h"
11 loizides 1.12 #include "MitAna/DataTree/interface/RefArray.h"
12 loizides 1.1 #include "MitAna/DataTree/interface/Vector.h"
13 loizides 1.16 #include "MitAna/DataTree/interface/Collections.h"
14 loizides 1.12
15 loizides 1.10 #include "MitAna/DataTree/interface/EventHeader.h"
16 loizides 1.11 #include "MitAna/DataTree/interface/LAHeader.h"
17 loizides 1.10 #include "MitAna/DataTree/interface/RunInfo.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 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     #include "MitAna/DataTree/interface/Photon.h"
33 bendavid 1.15 #include "MitAna/DataTree/interface/Conversion.h"
34 paus 1.22 #include "MitAna/DataTree/interface/BasePart.h"
35     #include "MitAna/DataTree/interface/DecayPart.h"
36     #include "MitAna/DataTree/interface/StablePart.h"
37 bendavid 1.21 #include "MitAna/DataTree/interface/StableParticle.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.12
54 loizides 1.3 #pragma link C++ class mithep::DataObject+;
55 loizides 1.12 #pragma link C++ class mithep::Vertex+;
56     #pragma link C++ class mithep::FitVertex+;
57 loizides 1.3 #pragma link C++ class mithep::Track+;
58 loizides 1.1 #pragma link C++ class mithep::Particle+;
59 bendavid 1.21 #pragma link C++ class mithep::ChargedParticle+;
60 loizides 1.3 #pragma link C++ class mithep::Muon+;
61 bendavid 1.5 #pragma link C++ class mithep::Electron+;
62 loizides 1.16 #pragma link C++ class mithep::Jet+;
63     #pragma link C++ class mithep::Met+;
64 bendavid 1.20 #pragma link C++ class mithep::MCParticle+;
65 bendavid 1.21 #pragma link C++ class mithep::StableParticle+;
66 loizides 1.12
67 loizides 1.4 #pragma link C++ class mithep::BaseCollection+;
68 loizides 1.3 #pragma link C++ class mithep::Collection<mithep::DataObject>+;
69     #pragma link C++ class mithep::Collection<mithep::Track>+;
70 loizides 1.1 #pragma link C++ class mithep::Collection<mithep::Particle>+;
71 bendavid 1.21 #pragma link C++ class mithep::Collection<mithep::ChargedParticle>+;
72 loizides 1.3 #pragma link C++ class mithep::Collection<mithep::Muon>+;
73 bendavid 1.5 #pragma link C++ class mithep::Collection<mithep::Electron>+;
74 loizides 1.16 #pragma link C++ class mithep::Collection<mithep::Jet>+;
75     #pragma link C++ class mithep::Collection<mithep::Met>+;
76 bendavid 1.20 #pragma link C++ class mithep::Collection<mithep::MCParticle>+;
77 bendavid 1.15 #pragma link C++ class mithep::Collection<mithep::Conversion>+;
78 bendavid 1.21 #pragma link C++ class mithep::Collection<mithep::StableParticle>+;
79 loizides 1.9 #pragma link C++ class mithep::Array<mithep::DataObject>+;
80     #pragma link C++ class mithep::Array<mithep::Track>+;
81 bendavid 1.20 #pragma link C++ class mithep::Array<mithep::MCParticle>+;
82 loizides 1.9 #pragma link C++ class mithep::Array<mithep::Muon>+;
83     #pragma link C++ class mithep::Array<mithep::Electron>+;
84 loizides 1.16 #pragma link C++ class mithep::Array<mithep::Jet>+;
85     #pragma link C++ class mithep::Array<mithep::Met>+;
86 bendavid 1.15 #pragma link C++ class mithep::Array<mithep::Conversion>+;
87 bendavid 1.21 #pragma link C++ class mithep::Array<mithep::StableParticle>+;
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.15
99 loizides 1.13 #pragma link C++ class mithep::Collection<TRef>+;
100 loizides 1.19 #pragma link C++ class mithep::RefArray<mithep::Particle>-;
101     #pragma link C++ class mithep::RefArray<mithep::Conversion>-;
102 loizides 1.12
103     #pragma link C++ class mithep::CompositeParticle+;
104 loizides 1.13 #pragma link C++ class mithep::DecayParticle+;
105     #pragma link C++ class mithep::Photon+;
106 bendavid 1.15 #pragma link C++ class mithep::Conversion+;
107 paus 1.22 #pragma link C++ class mithep::BasePart+;
108     #pragma link C++ class mithep::DecayPart+;
109     #pragma link C++ class mithep::StablePart+;
110 loizides 1.13
111     #pragma link C++ class mithep::Collection<mithep::CompositeParticle>+;
112     #pragma link C++ class mithep::Collection<mithep::DecayParticle>+;
113     #pragma link C++ class mithep::Collection<mithep::Photon>+;
114 paus 1.22 #pragma link C++ class mithep::Collection<mithep::BasePart>+;
115     #pragma link C++ class mithep::Collection<mithep::DecayPart>+;
116     #pragma link C++ class mithep::Collection<mithep::StablePart>+;
117 loizides 1.13 #pragma link C++ class mithep::Array<mithep::CompositeParticle>+;
118     #pragma link C++ class mithep::Array<mithep::DecayParticle>+;
119     #pragma link C++ class mithep::Array<mithep::Photon>+;
120     #pragma link C++ class mithep::ObjArray<mithep::CompositeParticle>+;
121     #pragma link C++ class mithep::ObjArray<mithep::DecayParticle>+;
122     #pragma link C++ class mithep::ObjArray<mithep::Photon>+;
123 paus 1.22 #pragma link C++ class mithep::ObjArray<mithep::BasePart>+;
124     #pragma link C++ class mithep::ObjArray<mithep::DecayPart>+;
125     #pragma link C++ class mithep::ObjArray<mithep::StablePart>+;
126 loizides 1.12
127 loizides 1.3 #pragma link C++ typedef mithep::DataObjectCol;
128     #pragma link C++ typedef mithep::TrackCol;
129     #pragma link C++ typedef mithep::ParticleCol;
130 bendavid 1.21 #pragma link C++ typedef mithep::ChargedParticleCol;
131 loizides 1.3 #pragma link C++ typedef mithep::MuonCol;
132 bendavid 1.5 #pragma link C++ typedef mithep::ElectronCol;
133 loizides 1.16 #pragma link C++ typedef mithep::JetCol;
134     #pragma link C++ typedef mithep::MetCol;
135 loizides 1.14 #pragma link C++ typedef mithep::CompositeParticleCol;
136 bendavid 1.20 #pragma link C++ typedef mithep::MCParticleCol;
137 loizides 1.14 #pragma link C++ typedef mithep::DecayParticleCol;
138 bendavid 1.15 #pragma link C++ typedef mithep::PhotonCol;
139     #pragma link C++ typedef mithep::ConversionCol;
140 bendavid 1.21 #pragma link C++ typedef mithep::StableParticleCol;
141 loizides 1.14
142     #pragma link C++ typedef mithep::DataObjectArr;
143     #pragma link C++ typedef mithep::TrackArr;
144     #pragma link C++ typedef mithep::MuonArr;
145     #pragma link C++ typedef mithep::ElectronArr;
146 loizides 1.16 #pragma link C++ typedef mithep::JetArr;
147     #pragma link C++ typedef mithep::MetArr;
148 bendavid 1.20 #pragma link C++ typedef mithep::MCParticleArr;
149 bendavid 1.15 #pragma link C++ typedef mithep::PhotonArr;
150 bendavid 1.21 #pragma link C++ typedef mithep::StableParticleArr;
151 loizides 1.12
152 bendavid 1.20 #pragma link C++ enum mithep::MCParticle::EPartType;
153 loizides 1.18
154 paus 1.22 #pragma link C++ typedef mithep::BasePartObjArr;
155     #pragma link C++ typedef mithep::DecayPartObjArr;
156     #pragma link C++ typedef mithep::StablePartObjArr;
157    
158 loizides 1.1 #endif