ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/MitAna/DataTree/src/MitAnaDataTreeLinkDef.h
Revision: 1.21
Committed: Fri Jul 25 16:04:45 2008 UTC (16 years, 9 months ago) by bendavid
Content type: text/plain
Branch: MAIN
Changes since 1.20: +13 -6 lines
Log Message:
Renamed Lepton to ChargedParticle and added StableParticle class

File Contents

# User Rev Content
1 bendavid 1.21 // $Id: MitAnaDataTreeLinkDef.h,v 1.20 2008/07/25 11:32:46 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.6 #include "MitAna/DataTree/interface/Array.h"
10     #include "MitAna/DataTree/interface/ObjArray.h"
11 loizides 1.12 #include "MitAna/DataTree/interface/RefArray.h"
12 loizides 1.1 #include "MitAna/DataTree/interface/Vector.h"
13 loizides 1.16 #include "MitAna/DataTree/interface/Collections.h"
14 loizides 1.12
15 loizides 1.10 #include "MitAna/DataTree/interface/EventHeader.h"
16 loizides 1.11 #include "MitAna/DataTree/interface/LAHeader.h"
17 loizides 1.10 #include "MitAna/DataTree/interface/RunInfo.h"
18 loizides 1.12
19 loizides 1.3 #include "MitAna/DataTree/interface/DataObject.h"
20 loizides 1.12 #include "MitAna/DataTree/interface/Vertex.h"
21     #include "MitAna/DataTree/interface/FitVertex.h"
22 loizides 1.3 #include "MitAna/DataTree/interface/Track.h"
23 loizides 1.1 #include "MitAna/DataTree/interface/Particle.h"
24 bendavid 1.21 #include "MitAna/DataTree/interface/ChargedParticle.h"
25 loizides 1.3 #include "MitAna/DataTree/interface/Muon.h"
26 bendavid 1.5 #include "MitAna/DataTree/interface/Electron.h"
27 loizides 1.16 #include "MitAna/DataTree/interface/Jet.h"
28     #include "MitAna/DataTree/interface/Met.h"
29 bendavid 1.20 #include "MitAna/DataTree/interface/MCParticle.h"
30 loizides 1.13 #include "MitAna/DataTree/interface/CompositeParticle.h"
31 loizides 1.12 #include "MitAna/DataTree/interface/DecayParticle.h"
32     #include "MitAna/DataTree/interface/Photon.h"
33 bendavid 1.15 #include "MitAna/DataTree/interface/Conversion.h"
34 bendavid 1.21 #include "MitAna/DataTree/interface/StableParticle.h"
35 loizides 1.1 #endif
36    
37     #ifdef __CINT__
38     #pragma link off all globals;
39     #pragma link off all classes;
40     #pragma link off all functions;
41     #pragma link C++ nestedclass;
42     #pragma link C++ nestedtypedef;
43     #pragma link C++ namespace mithep;
44    
45 loizides 1.2 #pragma link C++ class mithep::Names+;
46    
47 loizides 1.10 #pragma link C++ class mithep::EventHeader+;
48 loizides 1.11 #pragma link C++ class mithep::LAHeader+;
49 loizides 1.10 #pragma link C++ class mithep::RunInfo+;
50 loizides 1.12
51 loizides 1.3 #pragma link C++ class mithep::DataObject+;
52 loizides 1.12 #pragma link C++ class mithep::Vertex+;
53     #pragma link C++ class mithep::FitVertex+;
54 loizides 1.3 #pragma link C++ class mithep::Track+;
55 loizides 1.1 #pragma link C++ class mithep::Particle+;
56 bendavid 1.21 #pragma link C++ class mithep::ChargedParticle+;
57 loizides 1.3 #pragma link C++ class mithep::Muon+;
58 bendavid 1.5 #pragma link C++ class mithep::Electron+;
59 loizides 1.16 #pragma link C++ class mithep::Jet+;
60     #pragma link C++ class mithep::Met+;
61 bendavid 1.20 #pragma link C++ class mithep::MCParticle+;
62 bendavid 1.21 #pragma link C++ class mithep::StableParticle+;
63 loizides 1.12
64 loizides 1.4 #pragma link C++ class mithep::BaseCollection+;
65 loizides 1.3 #pragma link C++ class mithep::Collection<mithep::DataObject>+;
66     #pragma link C++ class mithep::Collection<mithep::Track>+;
67 loizides 1.1 #pragma link C++ class mithep::Collection<mithep::Particle>+;
68 bendavid 1.21 #pragma link C++ class mithep::Collection<mithep::ChargedParticle>+;
69 loizides 1.3 #pragma link C++ class mithep::Collection<mithep::Muon>+;
70 bendavid 1.5 #pragma link C++ class mithep::Collection<mithep::Electron>+;
71 loizides 1.16 #pragma link C++ class mithep::Collection<mithep::Jet>+;
72     #pragma link C++ class mithep::Collection<mithep::Met>+;
73 bendavid 1.20 #pragma link C++ class mithep::Collection<mithep::MCParticle>+;
74 bendavid 1.15 #pragma link C++ class mithep::Collection<mithep::Conversion>+;
75 bendavid 1.21 #pragma link C++ class mithep::Collection<mithep::StableParticle>+;
76 loizides 1.9 #pragma link C++ class mithep::Array<mithep::DataObject>+;
77     #pragma link C++ class mithep::Array<mithep::Track>+;
78 bendavid 1.20 #pragma link C++ class mithep::Array<mithep::MCParticle>+;
79 loizides 1.9 #pragma link C++ class mithep::Array<mithep::Muon>+;
80     #pragma link C++ class mithep::Array<mithep::Electron>+;
81 loizides 1.16 #pragma link C++ class mithep::Array<mithep::Jet>+;
82     #pragma link C++ class mithep::Array<mithep::Met>+;
83 bendavid 1.15 #pragma link C++ class mithep::Array<mithep::Conversion>+;
84 bendavid 1.21 #pragma link C++ class mithep::Array<mithep::StableParticle>+;
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.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
105     #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 loizides 1.14
130     #pragma link C++ typedef mithep::DataObjectArr;
131     #pragma link C++ typedef mithep::TrackArr;
132     #pragma link C++ typedef mithep::MuonArr;
133     #pragma link C++ typedef mithep::ElectronArr;
134 loizides 1.16 #pragma link C++ typedef mithep::JetArr;
135     #pragma link C++ typedef mithep::MetArr;
136 bendavid 1.20 #pragma link C++ typedef mithep::MCParticleArr;
137 bendavid 1.15 #pragma link C++ typedef mithep::PhotonArr;
138     #pragma link C++ typedef mithep::ConversionArr;
139 bendavid 1.21 #pragma link C++ typedef mithep::StableParticleArr;
140 loizides 1.12
141 bendavid 1.20 #pragma link C++ enum mithep::MCParticle::EPartType;
142 loizides 1.18
143 loizides 1.1 #endif