ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/MitAna/DataTree/src/MitAnaDataTreeLinkDef.h
Revision: 1.5
Committed: Thu Jun 5 16:03:35 2008 UTC (16 years, 11 months ago) by bendavid
Content type: text/plain
Branch: MAIN
Changes since 1.4: +7 -1 lines
Log Message:
added electron class, updated lepton class, added basic functionality for tracks, muons

File Contents

# User Rev Content
1 bendavid 1.5 // $Id: MitAnaDataTreeLinkDef.h,v 1.4 2008/06/05 10:07:06 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     #include "MitAna/DataTree/interface/Vector.h"
11 loizides 1.3 #include "MitAna/DataTree/interface/DataObject.h"
12     #include "MitAna/DataTree/interface/Track.h"
13 loizides 1.1 #include "MitAna/DataTree/interface/Particle.h"
14 loizides 1.3 #include "MitAna/DataTree/interface/GenParticle.h"
15     #include "MitAna/DataTree/interface/Lepton.h"
16     #include "MitAna/DataTree/interface/Muon.h"
17 bendavid 1.5 #include "MitAna/DataTree/interface/Electron.h"
18 loizides 1.1 #endif
19    
20     #ifdef __CINT__
21     #pragma link off all globals;
22     #pragma link off all classes;
23     #pragma link off all functions;
24     #pragma link C++ nestedclass;
25     #pragma link C++ nestedtypedef;
26     #pragma link C++ namespace mithep;
27    
28 loizides 1.2 #pragma link C++ class mithep::Names+;
29    
30 loizides 1.3 #pragma link C++ class mithep::DataObject+;
31     #pragma link C++ class mithep::Track+;
32 loizides 1.1 #pragma link C++ class mithep::Particle+;
33 loizides 1.3 #pragma link C++ class mithep::GenParticle+;
34     #pragma link C++ class mithep::Lepton+;
35     #pragma link C++ class mithep::Muon+;
36 bendavid 1.5 #pragma link C++ class mithep::Electron+;
37 loizides 1.3 #pragma link C++ class std::vector<mithep::DataObject>+;
38     #pragma link C++ class std::vector<mithep::Track>+;
39 loizides 1.1 #pragma link C++ class std::vector<mithep::Particle>+;
40 loizides 1.3 #pragma link C++ class std::vector<mithep::GenParticle>+;
41     #pragma link C++ class std::vector<mithep::Lepton>+;
42     #pragma link C++ class std::vector<mithep::Muon>+;
43 bendavid 1.5 #pragma link C++ class std::vector<mithep::Electron>+;
44 loizides 1.4 #pragma link C++ class mithep::BaseCollection+;
45 loizides 1.3 #pragma link C++ class mithep::Collection<mithep::DataObject>+;
46     #pragma link C++ class mithep::Collection<mithep::Track>+;
47 loizides 1.1 #pragma link C++ class mithep::Collection<mithep::Particle>+;
48 loizides 1.3 #pragma link C++ class mithep::Collection<mithep::GenParticle>+;
49     #pragma link C++ class mithep::Collection<mithep::Lepton>+;
50     #pragma link C++ class mithep::Collection<mithep::Muon>+;
51 bendavid 1.5 #pragma link C++ class mithep::Collection<mithep::Electron>+;
52 loizides 1.3 #pragma link C++ class mithep::Vector<mithep::DataObject>+;
53     #pragma link C++ class mithep::Vector<mithep::Track>+;
54 loizides 1.1 #pragma link C++ class mithep::Vector<mithep::Particle>+;
55 loizides 1.3 #pragma link C++ class mithep::Vector<mithep::GenParticle>+;
56     #pragma link C++ class mithep::Vector<mithep::Lepton>+;
57     #pragma link C++ class mithep::Vector<mithep::Muon>+;
58 bendavid 1.5 #pragma link C++ class mithep::Vector<mithep::Electron>+;
59 loizides 1.3 #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 bendavid 1.5 #pragma link C++ typedef mithep::ElectronCol;
66 loizides 1.1 #endif