ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/MitAna/DataTree/src/MitAnaDataTreeLinkDef.h
Revision: 1.23
Committed: Tue Jul 29 10:38:47 2008 UTC (16 years, 9 months ago) by loizides
Content type: text/plain
Branch: MAIN
Changes since 1.22: +1 -5 lines
Log Message:
Moved containers into DataCont.

File Contents

# User Rev Content
1 loizides 1.23 // $Id: MitAnaDataTreeLinkDef.h,v 1.22 2008/07/28 23:13:42 paus 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 loizides 1.1 #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 loizides 1.2 #pragma link C++ class mithep::Names+;
45    
46 loizides 1.10 #pragma link C++ class mithep::EventHeader+;
47 loizides 1.11 #pragma link C++ class mithep::LAHeader+;
48 loizides 1.10 #pragma link C++ class mithep::RunInfo+;
49 loizides 1.12
50 loizides 1.3 #pragma link C++ class mithep::DataObject+;
51 loizides 1.12 #pragma link C++ class mithep::Vertex+;
52     #pragma link C++ class mithep::FitVertex+;
53 loizides 1.3 #pragma link C++ class mithep::Track+;
54 loizides 1.1 #pragma link C++ class mithep::Particle+;
55 bendavid 1.21 #pragma link C++ class mithep::ChargedParticle+;
56 loizides 1.3 #pragma link C++ class mithep::Muon+;
57 bendavid 1.5 #pragma link C++ class mithep::Electron+;
58 loizides 1.16 #pragma link C++ class mithep::Jet+;
59     #pragma link C++ class mithep::Met+;
60 bendavid 1.20 #pragma link C++ class mithep::MCParticle+;
61 bendavid 1.21 #pragma link C++ class mithep::StableParticle+;
62 loizides 1.12
63 loizides 1.4 #pragma link C++ class mithep::BaseCollection+;
64 loizides 1.3 #pragma link C++ class mithep::Collection<mithep::DataObject>+;
65     #pragma link C++ class mithep::Collection<mithep::Track>+;
66 loizides 1.1 #pragma link C++ class mithep::Collection<mithep::Particle>+;
67 bendavid 1.21 #pragma link C++ class mithep::Collection<mithep::ChargedParticle>+;
68 loizides 1.3 #pragma link C++ class mithep::Collection<mithep::Muon>+;
69 bendavid 1.5 #pragma link C++ class mithep::Collection<mithep::Electron>+;
70 loizides 1.16 #pragma link C++ class mithep::Collection<mithep::Jet>+;
71     #pragma link C++ class mithep::Collection<mithep::Met>+;
72 bendavid 1.20 #pragma link C++ class mithep::Collection<mithep::MCParticle>+;
73 bendavid 1.15 #pragma link C++ class mithep::Collection<mithep::Conversion>+;
74 bendavid 1.21 #pragma link C++ class mithep::Collection<mithep::StableParticle>+;
75 loizides 1.9 #pragma link C++ class mithep::Array<mithep::DataObject>+;
76     #pragma link C++ class mithep::Array<mithep::Track>+;
77 bendavid 1.20 #pragma link C++ class mithep::Array<mithep::MCParticle>+;
78 loizides 1.9 #pragma link C++ class mithep::Array<mithep::Muon>+;
79     #pragma link C++ class mithep::Array<mithep::Electron>+;
80 loizides 1.16 #pragma link C++ class mithep::Array<mithep::Jet>+;
81     #pragma link C++ class mithep::Array<mithep::Met>+;
82 bendavid 1.15 #pragma link C++ class mithep::Array<mithep::Conversion>+;
83 bendavid 1.21 #pragma link C++ class mithep::Array<mithep::StableParticle>+;
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.15
95 loizides 1.13 #pragma link C++ class mithep::Collection<TRef>+;
96 loizides 1.19 #pragma link C++ class mithep::RefArray<mithep::Particle>-;
97     #pragma link C++ class mithep::RefArray<mithep::Conversion>-;
98 loizides 1.12
99     #pragma link C++ class mithep::CompositeParticle+;
100 loizides 1.13 #pragma link C++ class mithep::DecayParticle+;
101     #pragma link C++ class mithep::Photon+;
102 bendavid 1.15 #pragma link C++ class mithep::Conversion+;
103 paus 1.22 #pragma link C++ class mithep::BasePart+;
104     #pragma link C++ class mithep::DecayPart+;
105     #pragma link C++ class mithep::StablePart+;
106 loizides 1.13
107     #pragma link C++ class mithep::Collection<mithep::CompositeParticle>+;
108     #pragma link C++ class mithep::Collection<mithep::DecayParticle>+;
109     #pragma link C++ class mithep::Collection<mithep::Photon>+;
110 paus 1.22 #pragma link C++ class mithep::Collection<mithep::BasePart>+;
111     #pragma link C++ class mithep::Collection<mithep::DecayPart>+;
112     #pragma link C++ class mithep::Collection<mithep::StablePart>+;
113 loizides 1.13 #pragma link C++ class mithep::Array<mithep::CompositeParticle>+;
114     #pragma link C++ class mithep::Array<mithep::DecayParticle>+;
115     #pragma link C++ class mithep::Array<mithep::Photon>+;
116     #pragma link C++ class mithep::ObjArray<mithep::CompositeParticle>+;
117     #pragma link C++ class mithep::ObjArray<mithep::DecayParticle>+;
118     #pragma link C++ class mithep::ObjArray<mithep::Photon>+;
119 paus 1.22 #pragma link C++ class mithep::ObjArray<mithep::BasePart>+;
120     #pragma link C++ class mithep::ObjArray<mithep::DecayPart>+;
121     #pragma link C++ class mithep::ObjArray<mithep::StablePart>+;
122 loizides 1.12
123 loizides 1.3 #pragma link C++ typedef mithep::DataObjectCol;
124     #pragma link C++ typedef mithep::TrackCol;
125     #pragma link C++ typedef mithep::ParticleCol;
126 bendavid 1.21 #pragma link C++ typedef mithep::ChargedParticleCol;
127 loizides 1.3 #pragma link C++ typedef mithep::MuonCol;
128 bendavid 1.5 #pragma link C++ typedef mithep::ElectronCol;
129 loizides 1.16 #pragma link C++ typedef mithep::JetCol;
130     #pragma link C++ typedef mithep::MetCol;
131 loizides 1.14 #pragma link C++ typedef mithep::CompositeParticleCol;
132 bendavid 1.20 #pragma link C++ typedef mithep::MCParticleCol;
133 loizides 1.14 #pragma link C++ typedef mithep::DecayParticleCol;
134 bendavid 1.15 #pragma link C++ typedef mithep::PhotonCol;
135     #pragma link C++ typedef mithep::ConversionCol;
136 bendavid 1.21 #pragma link C++ typedef mithep::StableParticleCol;
137 loizides 1.14
138     #pragma link C++ typedef mithep::DataObjectArr;
139     #pragma link C++ typedef mithep::TrackArr;
140     #pragma link C++ typedef mithep::MuonArr;
141     #pragma link C++ typedef mithep::ElectronArr;
142 loizides 1.16 #pragma link C++ typedef mithep::JetArr;
143     #pragma link C++ typedef mithep::MetArr;
144 bendavid 1.20 #pragma link C++ typedef mithep::MCParticleArr;
145 bendavid 1.15 #pragma link C++ typedef mithep::PhotonArr;
146 bendavid 1.21 #pragma link C++ typedef mithep::StableParticleArr;
147 loizides 1.12
148 bendavid 1.20 #pragma link C++ enum mithep::MCParticle::EPartType;
149 loizides 1.18
150 paus 1.22 #pragma link C++ typedef mithep::BasePartObjArr;
151     #pragma link C++ typedef mithep::DecayPartObjArr;
152     #pragma link C++ typedef mithep::StablePartObjArr;
153    
154 loizides 1.1 #endif