ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/MitAna/DataTree/src/MitAnaDataTreeLinkDef.h
Revision: 1.7
Committed: Tue Jun 17 14:45:22 2008 UTC (16 years, 10 months ago) by loizides
Content type: text/plain
Branch: MAIN
Changes since 1.6: +5 -1 lines
Log Message:
Added EventHeader class.

File Contents

# Content
1 // $Id: MitAnaDataTreeLinkDef.h,v 1.6 2008/06/17 13:30:37 loizides Exp $
2
3 #ifndef DATATREE_LINKDEF_H
4 #define DATATREE_LINKDEF_H
5
6 #include <vector>
7 #include "MitAna/DataTree/interface/Types.h"
8 #include "MitAna/DataTree/interface/Names.h"
9 #include "MitAna/DataTree/interface/Collections.h"
10 #include "MitAna/DataTree/interface/Array.h"
11 #include "MitAna/DataTree/interface/ObjArray.h"
12 #include "MitAna/DataTree/interface/Vector.h"
13 #include "MitAna/DataTree/interface/DataObject.h"
14 #include "MitAna/DataTree/interface/EventHeader.h"
15 #include "MitAna/DataTree/interface/Track.h"
16 #include "MitAna/DataTree/interface/Particle.h"
17 #include "MitAna/DataTree/interface/GenParticle.h"
18 #include "MitAna/DataTree/interface/Lepton.h"
19 #include "MitAna/DataTree/interface/Muon.h"
20 #include "MitAna/DataTree/interface/Electron.h"
21 #endif
22
23 #ifdef __CINT__
24 #pragma link off all globals;
25 #pragma link off all classes;
26 #pragma link off all functions;
27 #pragma link C++ nestedclass;
28 #pragma link C++ nestedtypedef;
29 #pragma link C++ namespace mithep;
30
31 #pragma link C++ class mithep::Names+;
32
33 #pragma link C++ class mithep::DataObject+;
34 #pragma link C++ class mithep::EventHeader+;
35 #pragma link C++ class mithep::Track+;
36 #pragma link C++ class mithep::Particle+;
37 #pragma link C++ class mithep::GenParticle+;
38 #pragma link C++ class mithep::Lepton+;
39 #pragma link C++ class mithep::Muon+;
40 #pragma link C++ class mithep::Electron+;
41
42 #pragma link C++ class mithep::BaseCollection+;
43 #pragma link C++ class mithep::Collection<mithep::EventHeader>+;
44 #pragma link C++ class mithep::Collection<mithep::DataObject>+;
45 #pragma link C++ class mithep::Collection<mithep::Track>+;
46 #pragma link C++ class mithep::Collection<mithep::Particle>+;
47 #pragma link C++ class mithep::Collection<mithep::GenParticle>+;
48 #pragma link C++ class mithep::Collection<mithep::Lepton>+;
49 #pragma link C++ class mithep::Collection<mithep::Muon>+;
50 #pragma link C++ class mithep::Collection<mithep::Electron>+;
51 #pragma link C++ class mithep::Array<mithep::DataObject>+;
52 #pragma link C++ class mithep::Array<mithep::Track>+;
53 #pragma link C++ class mithep::Array<mithep::Particle>+;
54 #pragma link C++ class mithep::Array<mithep::GenParticle>+;
55 #pragma link C++ class mithep::Array<mithep::Lepton>+;
56 #pragma link C++ class mithep::Array<mithep::Muon>+;
57 #pragma link C++ class mithep::Array<mithep::Electron>+;
58 #pragma link C++ class mithep::Vector<mithep::EventHeader>+;
59 #pragma link C++ typedef mithep::DataObjectCol;
60 #pragma link C++ typedef mithep::TrackCol;
61 #pragma link C++ typedef mithep::ParticleCol;
62 #pragma link C++ typedef mithep::GenParticleCol;
63 #pragma link C++ typedef mithep::LeptonCol;
64 #pragma link C++ typedef mithep::MuonCol;
65 #pragma link C++ typedef mithep::ElectronCol;
66 #endif