21 |
|
#include "MitAna/DataTree/interface/FitVertex.h" |
22 |
|
#include "MitAna/DataTree/interface/Track.h" |
23 |
|
#include "MitAna/DataTree/interface/Particle.h" |
24 |
< |
#include "MitAna/DataTree/interface/Lepton.h" |
24 |
> |
#include "MitAna/DataTree/interface/ChargedParticle.h" |
25 |
|
#include "MitAna/DataTree/interface/Muon.h" |
26 |
|
#include "MitAna/DataTree/interface/Electron.h" |
27 |
|
#include "MitAna/DataTree/interface/Jet.h" |
31 |
|
#include "MitAna/DataTree/interface/DecayParticle.h" |
32 |
|
#include "MitAna/DataTree/interface/Photon.h" |
33 |
|
#include "MitAna/DataTree/interface/Conversion.h" |
34 |
+ |
#include "MitAna/DataTree/interface/StableParticle.h" |
35 |
|
#endif |
36 |
|
|
37 |
|
#ifdef __CINT__ |
53 |
|
#pragma link C++ class mithep::FitVertex+; |
54 |
|
#pragma link C++ class mithep::Track+; |
55 |
|
#pragma link C++ class mithep::Particle+; |
56 |
< |
#pragma link C++ class mithep::Lepton+; |
56 |
> |
#pragma link C++ class mithep::ChargedParticle+; |
57 |
|
#pragma link C++ class mithep::Muon+; |
58 |
|
#pragma link C++ class mithep::Electron+; |
59 |
|
#pragma link C++ class mithep::Jet+; |
60 |
|
#pragma link C++ class mithep::Met+; |
61 |
|
#pragma link C++ class mithep::MCParticle+; |
62 |
+ |
#pragma link C++ class mithep::StableParticle+; |
63 |
|
|
64 |
|
#pragma link C++ class mithep::BaseCollection+; |
65 |
|
#pragma link C++ class mithep::Collection<mithep::DataObject>+; |
66 |
|
#pragma link C++ class mithep::Collection<mithep::Track>+; |
67 |
|
#pragma link C++ class mithep::Collection<mithep::Particle>+; |
68 |
< |
#pragma link C++ class mithep::Collection<mithep::Lepton>+; |
68 |
> |
#pragma link C++ class mithep::Collection<mithep::ChargedParticle>+; |
69 |
|
#pragma link C++ class mithep::Collection<mithep::Muon>+; |
70 |
|
#pragma link C++ class mithep::Collection<mithep::Electron>+; |
71 |
|
#pragma link C++ class mithep::Collection<mithep::Jet>+; |
72 |
|
#pragma link C++ class mithep::Collection<mithep::Met>+; |
73 |
|
#pragma link C++ class mithep::Collection<mithep::MCParticle>+; |
74 |
|
#pragma link C++ class mithep::Collection<mithep::Conversion>+; |
75 |
+ |
#pragma link C++ class mithep::Collection<mithep::StableParticle>+; |
76 |
|
#pragma link C++ class mithep::Array<mithep::DataObject>+; |
77 |
|
#pragma link C++ class mithep::Array<mithep::Track>+; |
78 |
|
#pragma link C++ class mithep::Array<mithep::MCParticle>+; |
81 |
|
#pragma link C++ class mithep::Array<mithep::Jet>+; |
82 |
|
#pragma link C++ class mithep::Array<mithep::Met>+; |
83 |
|
#pragma link C++ class mithep::Array<mithep::Conversion>+; |
84 |
+ |
#pragma link C++ class mithep::Array<mithep::StableParticle>+; |
85 |
|
#pragma link C++ class mithep::ObjArray<mithep::DataObject>+; |
86 |
|
#pragma link C++ class mithep::ObjArray<mithep::Track>+; |
87 |
|
#pragma link C++ class mithep::ObjArray<mithep::MCParticle>+; |
88 |
< |
#pragma link C++ class mithep::ObjArray<mithep::Lepton>+; |
88 |
> |
#pragma link C++ class mithep::ObjArray<mithep::ChargedParticle>+; |
89 |
|
#pragma link C++ class mithep::ObjArray<mithep::Muon>+; |
90 |
|
#pragma link C++ class mithep::ObjArray<mithep::Electron>+; |
91 |
|
#pragma link C++ class mithep::ObjArray<mithep::Jet>+; |
92 |
|
#pragma link C++ class mithep::ObjArray<mithep::Met>+; |
93 |
|
#pragma link C++ class mithep::ObjArray<mithep::Conversion>+; |
94 |
+ |
#pragma link C++ class mithep::ObjArray<mithep::StableParticle>+; |
95 |
|
|
96 |
|
#pragma link C++ class mithep::Collection<TRef>+; |
97 |
|
#pragma link C++ class mithep::RefArray<mithep::Particle>-; |
115 |
|
#pragma link C++ typedef mithep::DataObjectCol; |
116 |
|
#pragma link C++ typedef mithep::TrackCol; |
117 |
|
#pragma link C++ typedef mithep::ParticleCol; |
118 |
< |
#pragma link C++ typedef mithep::LeptonCol; |
118 |
> |
#pragma link C++ typedef mithep::ChargedParticleCol; |
119 |
|
#pragma link C++ typedef mithep::MuonCol; |
120 |
|
#pragma link C++ typedef mithep::ElectronCol; |
121 |
|
#pragma link C++ typedef mithep::JetCol; |
125 |
|
#pragma link C++ typedef mithep::DecayParticleCol; |
126 |
|
#pragma link C++ typedef mithep::PhotonCol; |
127 |
|
#pragma link C++ typedef mithep::ConversionCol; |
128 |
+ |
#pragma link C++ typedef mithep::StableParticleCol; |
129 |
|
|
130 |
|
#pragma link C++ typedef mithep::DataObjectArr; |
131 |
|
#pragma link C++ typedef mithep::TrackArr; |
136 |
|
#pragma link C++ typedef mithep::MCParticleArr; |
137 |
|
#pragma link C++ typedef mithep::PhotonArr; |
138 |
|
#pragma link C++ typedef mithep::ConversionArr; |
139 |
+ |
#pragma link C++ typedef mithep::StableParticleArr; |
140 |
|
|
141 |
|
#pragma link C++ enum mithep::MCParticle::EPartType; |
142 |
|
|