ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/MitAna/DataTree/src/MitAnaDataTreeLinkDef.h
Revision: 1.26
Committed: Tue Jul 29 17:00:13 2008 UTC (16 years, 9 months ago) by loizides
Content type: text/plain
Branch: MAIN
Changes since 1.25: +1 -2 lines
Log Message:
Fixes.

File Contents

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