ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/MitAna/DataTree/src/MitAnaDataTreeLinkDef.h
Revision: 1.8
Committed: Wed Jun 18 13:23:13 2008 UTC (16 years, 10 months ago) by paus
Content type: text/plain
Branch: MAIN
Changes since 1.7: +21 -9 lines
Log Message:
Basic structure of Filling framework.

File Contents

# User Rev Content
1 paus 1.8 // $Id: MitAnaDataTreeLinkDef.h,v 1.7 2008/06/17 14:45:22 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.1 #include "MitAna/DataTree/interface/Collections.h"
10 loizides 1.6 #include "MitAna/DataTree/interface/Array.h"
11     #include "MitAna/DataTree/interface/ObjArray.h"
12 loizides 1.1 #include "MitAna/DataTree/interface/Vector.h"
13 loizides 1.3 #include "MitAna/DataTree/interface/DataObject.h"
14 loizides 1.7 #include "MitAna/DataTree/interface/EventHeader.h"
15 loizides 1.3 #include "MitAna/DataTree/interface/Track.h"
16 loizides 1.1 #include "MitAna/DataTree/interface/Particle.h"
17 loizides 1.3 #include "MitAna/DataTree/interface/GenParticle.h"
18     #include "MitAna/DataTree/interface/Lepton.h"
19     #include "MitAna/DataTree/interface/Muon.h"
20 bendavid 1.5 #include "MitAna/DataTree/interface/Electron.h"
21 paus 1.8 #include "MitAna/DataTree/interface/GlobalMuon.h"
22 loizides 1.1 #endif
23    
24     #ifdef __CINT__
25     #pragma link off all globals;
26     #pragma link off all classes;
27     #pragma link off all functions;
28     #pragma link C++ nestedclass;
29     #pragma link C++ nestedtypedef;
30     #pragma link C++ namespace mithep;
31    
32 loizides 1.2 #pragma link C++ class mithep::Names+;
33    
34 loizides 1.3 #pragma link C++ class mithep::DataObject+;
35 loizides 1.7 #pragma link C++ class mithep::EventHeader+;
36 loizides 1.3 #pragma link C++ class mithep::Track+;
37 loizides 1.1 #pragma link C++ class mithep::Particle+;
38 loizides 1.3 #pragma link C++ class mithep::GenParticle+;
39     #pragma link C++ class mithep::Lepton+;
40     #pragma link C++ class mithep::Muon+;
41 bendavid 1.5 #pragma link C++ class mithep::Electron+;
42 paus 1.8 #pragma link C++ class mithep::GlobalMuon+;
43     #pragma link C++ class std::vector<mithep::DataObject>+;
44     #pragma link C++ class std::vector<mithep::Track>+;
45     #pragma link C++ class std::vector<mithep::Particle>+;
46     #pragma link C++ class std::vector<mithep::GenParticle>+;
47     #pragma link C++ class std::vector<mithep::Lepton>+;
48     #pragma link C++ class std::vector<mithep::Muon>+;
49     #pragma link C++ class std::vector<mithep::Electron>+;
50     #pragma link C++ class std::vector<mithep::GlobalMuon>+;
51 loizides 1.4 #pragma link C++ class mithep::BaseCollection+;
52 loizides 1.7 #pragma link C++ class mithep::Collection<mithep::EventHeader>+;
53 loizides 1.3 #pragma link C++ class mithep::Collection<mithep::DataObject>+;
54     #pragma link C++ class mithep::Collection<mithep::Track>+;
55 loizides 1.1 #pragma link C++ class mithep::Collection<mithep::Particle>+;
56 loizides 1.3 #pragma link C++ class mithep::Collection<mithep::GenParticle>+;
57     #pragma link C++ class mithep::Collection<mithep::Lepton>+;
58     #pragma link C++ class mithep::Collection<mithep::Muon>+;
59 bendavid 1.5 #pragma link C++ class mithep::Collection<mithep::Electron>+;
60 paus 1.8 #pragma link C++ class mithep::Collection<mithep::GlobalMuon>+;
61     #pragma link C++ class mithep::Vector<mithep::DataObject>+;
62     #pragma link C++ class mithep::Vector<mithep::Track>+;
63     #pragma link C++ class mithep::Vector<mithep::Particle>+;
64     #pragma link C++ class mithep::Vector<mithep::GenParticle>+;
65     #pragma link C++ class mithep::Vector<mithep::Lepton>+;
66     #pragma link C++ class mithep::Vector<mithep::Muon>+;
67     #pragma link C++ class mithep::Vector<mithep::Electron>+;
68     #pragma link C++ class mithep::Vector<mithep::GlobalMuon>+;
69 loizides 1.7 #pragma link C++ class mithep::Vector<mithep::EventHeader>+;
70 loizides 1.3 #pragma link C++ typedef mithep::DataObjectCol;
71     #pragma link C++ typedef mithep::TrackCol;
72     #pragma link C++ typedef mithep::ParticleCol;
73     #pragma link C++ typedef mithep::GenParticleCol;
74     #pragma link C++ typedef mithep::LeptonCol;
75     #pragma link C++ typedef mithep::MuonCol;
76 bendavid 1.5 #pragma link C++ typedef mithep::ElectronCol;
77 paus 1.8 #pragma link C++ typedef mithep::GlobalMuonCol;
78 loizides 1.1 #endif