ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/MitAna/DataTree/src/MitAnaDataTreeLinkDef.h
Revision: 1.20
Committed: Fri Jul 25 11:32:46 2008 UTC (16 years, 9 months ago) by bendavid
Content type: text/plain
Branch: MAIN
Changes since 1.19: +9 -16 lines
Log Message:
Merged gen and sim particles into new MCParticle class

File Contents

# User Rev Content
1 bendavid 1.20 // $Id: MitAnaDataTreeLinkDef.h,v 1.19 2008/07/22 19:57:50 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.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 loizides 1.3 #include "MitAna/DataTree/interface/Lepton.h"
25     #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 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 loizides 1.3 #pragma link C++ class mithep::Lepton+;
56     #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 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 loizides 1.3 #pragma link C++ class mithep::Collection<mithep::Lepton>+;
67     #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 loizides 1.9 #pragma link C++ class mithep::Array<mithep::DataObject>+;
74     #pragma link C++ class mithep::Array<mithep::Track>+;
75 bendavid 1.20 #pragma link C++ class mithep::Array<mithep::MCParticle>+;
76 loizides 1.9 #pragma link C++ class mithep::Array<mithep::Muon>+;
77     #pragma link C++ class mithep::Array<mithep::Electron>+;
78 loizides 1.16 #pragma link C++ class mithep::Array<mithep::Jet>+;
79     #pragma link C++ class mithep::Array<mithep::Met>+;
80 bendavid 1.15 #pragma link C++ class mithep::Array<mithep::Conversion>+;
81 loizides 1.12 #pragma link C++ class mithep::ObjArray<mithep::DataObject>+;
82     #pragma link C++ class mithep::ObjArray<mithep::Track>+;
83 bendavid 1.20 #pragma link C++ class mithep::ObjArray<mithep::MCParticle>+;
84 loizides 1.12 #pragma link C++ class mithep::ObjArray<mithep::Lepton>+;
85     #pragma link C++ class mithep::ObjArray<mithep::Muon>+;
86     #pragma link C++ class mithep::ObjArray<mithep::Electron>+;
87 loizides 1.16 #pragma link C++ class mithep::ObjArray<mithep::Jet>+;
88     #pragma link C++ class mithep::ObjArray<mithep::Met>+;
89 bendavid 1.15 #pragma link C++ class mithep::ObjArray<mithep::Conversion>+;
90    
91 loizides 1.13 #pragma link C++ class mithep::Collection<TRef>+;
92 loizides 1.19 #pragma link C++ class mithep::RefArray<mithep::Particle>-;
93     #pragma link C++ class mithep::RefArray<mithep::Conversion>-;
94 loizides 1.12
95     #pragma link C++ class mithep::CompositeParticle+;
96 loizides 1.13 #pragma link C++ class mithep::DecayParticle+;
97     #pragma link C++ class mithep::Photon+;
98 bendavid 1.15 #pragma link C++ class mithep::Conversion+;
99 loizides 1.13
100     #pragma link C++ class mithep::Collection<mithep::CompositeParticle>+;
101     #pragma link C++ class mithep::Collection<mithep::DecayParticle>+;
102     #pragma link C++ class mithep::Collection<mithep::Photon>+;
103     #pragma link C++ class mithep::Array<mithep::CompositeParticle>+;
104     #pragma link C++ class mithep::Array<mithep::DecayParticle>+;
105     #pragma link C++ class mithep::Array<mithep::Photon>+;
106     #pragma link C++ class mithep::ObjArray<mithep::CompositeParticle>+;
107     #pragma link C++ class mithep::ObjArray<mithep::DecayParticle>+;
108     #pragma link C++ class mithep::ObjArray<mithep::Photon>+;
109 loizides 1.12
110 loizides 1.3 #pragma link C++ typedef mithep::DataObjectCol;
111     #pragma link C++ typedef mithep::TrackCol;
112     #pragma link C++ typedef mithep::ParticleCol;
113     #pragma link C++ typedef mithep::LeptonCol;
114     #pragma link C++ typedef mithep::MuonCol;
115 bendavid 1.5 #pragma link C++ typedef mithep::ElectronCol;
116 loizides 1.16 #pragma link C++ typedef mithep::JetCol;
117     #pragma link C++ typedef mithep::MetCol;
118 loizides 1.14 #pragma link C++ typedef mithep::CompositeParticleCol;
119 bendavid 1.20 #pragma link C++ typedef mithep::MCParticleCol;
120 loizides 1.14 #pragma link C++ typedef mithep::DecayParticleCol;
121 bendavid 1.15 #pragma link C++ typedef mithep::PhotonCol;
122     #pragma link C++ typedef mithep::ConversionCol;
123 loizides 1.14
124     #pragma link C++ typedef mithep::DataObjectArr;
125     #pragma link C++ typedef mithep::TrackArr;
126     #pragma link C++ typedef mithep::MuonArr;
127     #pragma link C++ typedef mithep::ElectronArr;
128 loizides 1.16 #pragma link C++ typedef mithep::JetArr;
129     #pragma link C++ typedef mithep::MetArr;
130 bendavid 1.20 #pragma link C++ typedef mithep::MCParticleArr;
131 bendavid 1.15 #pragma link C++ typedef mithep::PhotonArr;
132     #pragma link C++ typedef mithep::ConversionArr;
133 loizides 1.12
134 bendavid 1.20 #pragma link C++ enum mithep::MCParticle::EPartType;
135 loizides 1.18
136 loizides 1.1 #endif