ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/MitAna/DataTree/src/MitAnaDataTreeLinkDef.h
Revision: 1.27
Committed: Thu Jul 31 13:28:42 2008 UTC (16 years, 9 months ago) by bendavid
Content type: text/plain
Branch: MAIN
Changes since 1.26: +5 -1 lines
Log Message:
Nearly complete rewrite of track class, new helix parameterization (now matches CMSSW) and tracker hit information

File Contents

# Content
1 // $Id: MitAnaDataTreeLinkDef.h,v 1.26 2008/07/29 17:00:13 loizides Exp $
2
3 #ifndef DATATREE_LINKDEF_H
4 #define DATATREE_LINKDEF_H
5
6 #include <vector>
7 #include "MitAna/DataTree/interface/Types.h"
8 #include "MitAna/DataTree/interface/Names.h"
9 #include "MitAna/DataTree/interface/Collections.h"
10
11 #include "MitAna/DataTree/interface/EventHeader.h"
12 #include "MitAna/DataTree/interface/LAHeader.h"
13 #include "MitAna/DataTree/interface/RunInfo.h"
14
15 #include "MitAna/DataTree/interface/DataObject.h"
16 #include "MitAna/DataTree/interface/Vertex.h"
17 #include "MitAna/DataTree/interface/FitVertex.h"
18 #include "MitAna/DataTree/interface/Track.h"
19 #include "MitAna/DataTree/interface/Particle.h"
20 #include "MitAna/DataTree/interface/ChargedParticle.h"
21 #include "MitAna/DataTree/interface/Muon.h"
22 #include "MitAna/DataTree/interface/Electron.h"
23 #include "MitAna/DataTree/interface/Jet.h"
24 #include "MitAna/DataTree/interface/Met.h"
25 #include "MitAna/DataTree/interface/MCParticle.h"
26 #include "MitAna/DataTree/interface/CompositeParticle.h"
27 #include "MitAna/DataTree/interface/DecayParticle.h"
28 #include "MitAna/DataTree/interface/Photon.h"
29 #include "MitAna/DataTree/interface/Conversion.h"
30 #include "MitAna/DataTree/interface/StableParticle.h"
31 #include "MitAna/DataTree/interface/StableDaughter.h"
32 #include "MitAna/DataTree/interface/BitMask32.h"
33 #include "MitAna/DataTree/interface/BitMask64.h"
34 #endif
35
36 #ifdef __CINT__
37 #pragma link off all globals;
38 #pragma link off all classes;
39 #pragma link off all functions;
40 #pragma link C++ nestedclass;
41 #pragma link C++ nestedtypedef;
42 #pragma link C++ namespace mithep;
43
44 #pragma link C++ class mithep::Names+;
45
46 #pragma link C++ class mithep::EventHeader+;
47 #pragma link C++ class mithep::LAHeader+;
48 #pragma link C++ class mithep::RunInfo+;
49
50 #pragma link C++ class mithep::DataObject+;
51 #pragma link C++ class mithep::Vertex+;
52 #pragma link C++ class mithep::FitVertex+;
53 #pragma link C++ class mithep::Track+;
54 #pragma link C++ class mithep::Particle+;
55 #pragma link C++ class mithep::ChargedParticle+;
56 #pragma link C++ class mithep::Muon+;
57 #pragma link C++ class mithep::Electron+;
58 #pragma link C++ class mithep::Jet+;
59 #pragma link C++ class mithep::Met+;
60 #pragma link C++ class mithep::MCParticle+;
61 #pragma link C++ class mithep::StableParticle+;
62 #pragma link C++ class mithep::StableDaughter+;
63 #pragma link C++ class mithep::BitMask32+;
64 #pragma link C++ class mithep::BitMask64+;
65
66 #pragma link C++ class mithep::Collection<mithep::DataObject>+;
67 #pragma link C++ class mithep::Collection<mithep::Track>+;
68 #pragma link C++ class mithep::Collection<mithep::Particle>+;
69 #pragma link C++ class mithep::Collection<mithep::ChargedParticle>+;
70 #pragma link C++ class mithep::Collection<mithep::Muon>+;
71 #pragma link C++ class mithep::Collection<mithep::Electron>+;
72 #pragma link C++ class mithep::Collection<mithep::Jet>+;
73 #pragma link C++ class mithep::Collection<mithep::Met>+;
74 #pragma link C++ class mithep::Collection<mithep::MCParticle>+;
75 #pragma link C++ class mithep::Collection<mithep::Conversion>+;
76 #pragma link C++ class mithep::Collection<mithep::StableParticle>+;
77 #pragma link C++ class mithep::Collection<mithep::StableDaughter>+;
78 #pragma link C++ class mithep::Array<mithep::DataObject>+;
79 #pragma link C++ class mithep::Array<mithep::Track>+;
80 #pragma link C++ class mithep::Array<mithep::MCParticle>+;
81 #pragma link C++ class mithep::Array<mithep::Muon>+;
82 #pragma link C++ class mithep::Array<mithep::Electron>+;
83 #pragma link C++ class mithep::Array<mithep::Jet>+;
84 #pragma link C++ class mithep::Array<mithep::Met>+;
85 #pragma link C++ class mithep::Array<mithep::Conversion>+;
86 #pragma link C++ class mithep::Array<mithep::StableParticle>+;
87 #pragma link C++ class mithep::Array<mithep::StableDaughter>+;
88 #pragma link C++ class mithep::ObjArray<mithep::DataObject>+;
89 #pragma link C++ class mithep::ObjArray<mithep::Track>+;
90 #pragma link C++ class mithep::ObjArray<mithep::MCParticle>+;
91 #pragma link C++ class mithep::ObjArray<mithep::ChargedParticle>+;
92 #pragma link C++ class mithep::ObjArray<mithep::Muon>+;
93 #pragma link C++ class mithep::ObjArray<mithep::Electron>+;
94 #pragma link C++ class mithep::ObjArray<mithep::Jet>+;
95 #pragma link C++ class mithep::ObjArray<mithep::Met>+;
96 #pragma link C++ class mithep::ObjArray<mithep::Conversion>+;
97 #pragma link C++ class mithep::ObjArray<mithep::StableParticle>+;
98 #pragma link C++ class mithep::ObjArray<mithep::StableDaughter>+;
99
100 #pragma link C++ class mithep::Collection<TRef>+;
101 #pragma link C++ class mithep::RefArray<mithep::Particle>-;
102 #pragma link C++ class mithep::RefArray<mithep::Conversion>-;
103
104 #pragma link C++ class mithep::CompositeParticle+;
105 #pragma link C++ class mithep::DecayParticle+;
106 #pragma link C++ class mithep::Photon+;
107 #pragma link C++ class mithep::Conversion+;
108 #pragma link C++ class mithep::Collection<mithep::CompositeParticle>+;
109 #pragma link C++ class mithep::Collection<mithep::DecayParticle>+;
110 #pragma link C++ class mithep::Collection<mithep::Photon>+;
111 #pragma link C++ class mithep::Array<mithep::CompositeParticle>+;
112 #pragma link C++ class mithep::Array<mithep::DecayParticle>+;
113 #pragma link C++ class mithep::Array<mithep::Photon>+;
114 #pragma link C++ class mithep::ObjArray<mithep::CompositeParticle>+;
115 #pragma link C++ class mithep::ObjArray<mithep::DecayParticle>+;
116 #pragma link C++ class mithep::ObjArray<mithep::Photon>+;
117
118 #pragma link C++ typedef mithep::DataObjectCol;
119 #pragma link C++ typedef mithep::TrackCol;
120 #pragma link C++ typedef mithep::ParticleCol;
121 #pragma link C++ typedef mithep::ChargedParticleCol;
122 #pragma link C++ typedef mithep::MuonCol;
123 #pragma link C++ typedef mithep::ElectronCol;
124 #pragma link C++ typedef mithep::JetCol;
125 #pragma link C++ typedef mithep::MetCol;
126 #pragma link C++ typedef mithep::CompositeParticleCol;
127 #pragma link C++ typedef mithep::MCParticleCol;
128 #pragma link C++ typedef mithep::DecayParticleCol;
129 #pragma link C++ typedef mithep::PhotonCol;
130 #pragma link C++ typedef mithep::ConversionCol;
131 #pragma link C++ typedef mithep::StableParticleCol;
132 #pragma link C++ typedef mithep::StableDaughterCol;
133
134 #pragma link C++ typedef mithep::DataObjectArr;
135 #pragma link C++ typedef mithep::TrackArr;
136 #pragma link C++ typedef mithep::ParticleArr;
137 #pragma link C++ typedef mithep::ChargedParticleArr;
138 #pragma link C++ typedef mithep::MuonArr;
139 #pragma link C++ typedef mithep::ElectronArr;
140 #pragma link C++ typedef mithep::JetArr;
141 #pragma link C++ typedef mithep::MetArr;
142 #pragma link C++ typedef mithep::CompositeParticleArr;
143 #pragma link C++ typedef mithep::MCParticleArr;
144 #pragma link C++ typedef mithep::DecayParticleArr;
145 #pragma link C++ typedef mithep::PhotonArr;
146 #pragma link C++ typedef mithep::ConversionArr;
147 #pragma link C++ typedef mithep::StableParticleArr;
148 #pragma link C++ typedef mithep::StableDaughterArr;
149
150 #pragma link C++ enum mithep::MCParticle::EPartType;
151 #endif