1 |
loizides |
1.25 |
// $Id: MitAnaDataTreeLinkDef.h,v 1.24 2008/07/29 12:29:47 bendavid 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.4 |
#pragma link C++ class mithep::BaseCollection+;
|
63 |
loizides |
1.3 |
#pragma link C++ class mithep::Collection<mithep::DataObject>+;
|
64 |
|
|
#pragma link C++ class mithep::Collection<mithep::Track>+;
|
65 |
loizides |
1.1 |
#pragma link C++ class mithep::Collection<mithep::Particle>+;
|
66 |
bendavid |
1.21 |
#pragma link C++ class mithep::Collection<mithep::ChargedParticle>+;
|
67 |
loizides |
1.3 |
#pragma link C++ class mithep::Collection<mithep::Muon>+;
|
68 |
bendavid |
1.5 |
#pragma link C++ class mithep::Collection<mithep::Electron>+;
|
69 |
loizides |
1.16 |
#pragma link C++ class mithep::Collection<mithep::Jet>+;
|
70 |
|
|
#pragma link C++ class mithep::Collection<mithep::Met>+;
|
71 |
bendavid |
1.20 |
#pragma link C++ class mithep::Collection<mithep::MCParticle>+;
|
72 |
bendavid |
1.15 |
#pragma link C++ class mithep::Collection<mithep::Conversion>+;
|
73 |
bendavid |
1.21 |
#pragma link C++ class mithep::Collection<mithep::StableParticle>+;
|
74 |
bendavid |
1.24 |
#pragma link C++ class mithep::Collection<mithep::StableDaughter>+;
|
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 |
bendavid |
1.24 |
#pragma link C++ class mithep::Array<mithep::StableDaughter>+;
|
85 |
loizides |
1.12 |
#pragma link C++ class mithep::ObjArray<mithep::DataObject>+;
|
86 |
|
|
#pragma link C++ class mithep::ObjArray<mithep::Track>+;
|
87 |
bendavid |
1.20 |
#pragma link C++ class mithep::ObjArray<mithep::MCParticle>+;
|
88 |
bendavid |
1.21 |
#pragma link C++ class mithep::ObjArray<mithep::ChargedParticle>+;
|
89 |
loizides |
1.12 |
#pragma link C++ class mithep::ObjArray<mithep::Muon>+;
|
90 |
|
|
#pragma link C++ class mithep::ObjArray<mithep::Electron>+;
|
91 |
loizides |
1.16 |
#pragma link C++ class mithep::ObjArray<mithep::Jet>+;
|
92 |
|
|
#pragma link C++ class mithep::ObjArray<mithep::Met>+;
|
93 |
bendavid |
1.15 |
#pragma link C++ class mithep::ObjArray<mithep::Conversion>+;
|
94 |
bendavid |
1.21 |
#pragma link C++ class mithep::ObjArray<mithep::StableParticle>+;
|
95 |
bendavid |
1.24 |
#pragma link C++ class mithep::ObjArray<mithep::StableDaughter>+;
|
96 |
bendavid |
1.15 |
|
97 |
loizides |
1.13 |
#pragma link C++ class mithep::Collection<TRef>+;
|
98 |
loizides |
1.19 |
#pragma link C++ class mithep::RefArray<mithep::Particle>-;
|
99 |
|
|
#pragma link C++ class mithep::RefArray<mithep::Conversion>-;
|
100 |
loizides |
1.12 |
|
101 |
|
|
#pragma link C++ class mithep::CompositeParticle+;
|
102 |
loizides |
1.13 |
#pragma link C++ class mithep::DecayParticle+;
|
103 |
|
|
#pragma link C++ class mithep::Photon+;
|
104 |
bendavid |
1.15 |
#pragma link C++ class mithep::Conversion+;
|
105 |
loizides |
1.13 |
#pragma link C++ class mithep::Collection<mithep::CompositeParticle>+;
|
106 |
|
|
#pragma link C++ class mithep::Collection<mithep::DecayParticle>+;
|
107 |
|
|
#pragma link C++ class mithep::Collection<mithep::Photon>+;
|
108 |
|
|
#pragma link C++ class mithep::Array<mithep::CompositeParticle>+;
|
109 |
|
|
#pragma link C++ class mithep::Array<mithep::DecayParticle>+;
|
110 |
|
|
#pragma link C++ class mithep::Array<mithep::Photon>+;
|
111 |
|
|
#pragma link C++ class mithep::ObjArray<mithep::CompositeParticle>+;
|
112 |
|
|
#pragma link C++ class mithep::ObjArray<mithep::DecayParticle>+;
|
113 |
|
|
#pragma link C++ class mithep::ObjArray<mithep::Photon>+;
|
114 |
loizides |
1.12 |
|
115 |
loizides |
1.3 |
#pragma link C++ typedef mithep::DataObjectCol;
|
116 |
|
|
#pragma link C++ typedef mithep::TrackCol;
|
117 |
|
|
#pragma link C++ typedef mithep::ParticleCol;
|
118 |
bendavid |
1.21 |
#pragma link C++ typedef mithep::ChargedParticleCol;
|
119 |
loizides |
1.3 |
#pragma link C++ typedef mithep::MuonCol;
|
120 |
bendavid |
1.5 |
#pragma link C++ typedef mithep::ElectronCol;
|
121 |
loizides |
1.16 |
#pragma link C++ typedef mithep::JetCol;
|
122 |
|
|
#pragma link C++ typedef mithep::MetCol;
|
123 |
loizides |
1.14 |
#pragma link C++ typedef mithep::CompositeParticleCol;
|
124 |
bendavid |
1.20 |
#pragma link C++ typedef mithep::MCParticleCol;
|
125 |
loizides |
1.14 |
#pragma link C++ typedef mithep::DecayParticleCol;
|
126 |
bendavid |
1.15 |
#pragma link C++ typedef mithep::PhotonCol;
|
127 |
|
|
#pragma link C++ typedef mithep::ConversionCol;
|
128 |
bendavid |
1.21 |
#pragma link C++ typedef mithep::StableParticleCol;
|
129 |
bendavid |
1.24 |
#pragma link C++ typedef mithep::StableDaughterCol;
|
130 |
loizides |
1.14 |
|
131 |
|
|
#pragma link C++ typedef mithep::DataObjectArr;
|
132 |
|
|
#pragma link C++ typedef mithep::TrackArr;
|
133 |
loizides |
1.25 |
#pragma link C++ typedef mithep::ParticleArr;
|
134 |
|
|
#pragma link C++ typedef mithep::ChargedParticleArr;
|
135 |
loizides |
1.14 |
#pragma link C++ typedef mithep::MuonArr;
|
136 |
|
|
#pragma link C++ typedef mithep::ElectronArr;
|
137 |
loizides |
1.16 |
#pragma link C++ typedef mithep::JetArr;
|
138 |
|
|
#pragma link C++ typedef mithep::MetArr;
|
139 |
loizides |
1.25 |
#pragma link C++ typedef mithep::CompositeParticleArr;
|
140 |
bendavid |
1.20 |
#pragma link C++ typedef mithep::MCParticleArr;
|
141 |
loizides |
1.25 |
#pragma link C++ typedef mithep::DecayParticleArr;
|
142 |
bendavid |
1.15 |
#pragma link C++ typedef mithep::PhotonArr;
|
143 |
loizides |
1.25 |
#pragma link C++ typedef mithep::ConversionArr;
|
144 |
bendavid |
1.21 |
#pragma link C++ typedef mithep::StableParticleArr;
|
145 |
bendavid |
1.24 |
#pragma link C++ typedef mithep::StableDaughterArr;
|
146 |
loizides |
1.12 |
|
147 |
bendavid |
1.20 |
#pragma link C++ enum mithep::MCParticle::EPartType;
|
148 |
loizides |
1.1 |
#endif
|