ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/MitAna/DataTree/src/MitAnaDataTreeLinkDef.h
Revision: 1.4
Committed: Thu Jun 5 10:07:06 2008 UTC (16 years, 11 months ago) by loizides
Content type: text/plain
Branch: MAIN
Changes since 1.3: +2 -1 lines
Log Message:
Slighly modified Collection interface to rely on pointers, references can be obtained as well in the Vector.h class.

File Contents

# User Rev Content
1 loizides 1.4 // $Id: MitAnaDataTreeLinkDef.h,v 1.3 2008/06/04 09:08:36 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 loizides 1.1 #endif
18    
19     #ifdef __CINT__
20     #pragma link off all globals;
21     #pragma link off all classes;
22     #pragma link off all functions;
23     #pragma link C++ nestedclass;
24     #pragma link C++ nestedtypedef;
25     #pragma link C++ namespace mithep;
26    
27 loizides 1.2 #pragma link C++ class mithep::Names+;
28    
29 loizides 1.3 #pragma link C++ class mithep::DataObject+;
30     #pragma link C++ class mithep::Track+;
31 loizides 1.1 #pragma link C++ class mithep::Particle+;
32 loizides 1.3 #pragma link C++ class mithep::GenParticle+;
33     #pragma link C++ class mithep::Lepton+;
34     #pragma link C++ class mithep::Muon+;
35     #pragma link C++ class std::vector<mithep::DataObject>+;
36     #pragma link C++ class std::vector<mithep::Track>+;
37 loizides 1.1 #pragma link C++ class std::vector<mithep::Particle>+;
38 loizides 1.3 #pragma link C++ class std::vector<mithep::GenParticle>+;
39     #pragma link C++ class std::vector<mithep::Lepton>+;
40     #pragma link C++ class std::vector<mithep::Muon>+;
41 loizides 1.4 #pragma link C++ class mithep::BaseCollection+;
42 loizides 1.3 #pragma link C++ class mithep::Collection<mithep::DataObject>+;
43     #pragma link C++ class mithep::Collection<mithep::Track>+;
44 loizides 1.1 #pragma link C++ class mithep::Collection<mithep::Particle>+;
45 loizides 1.3 #pragma link C++ class mithep::Collection<mithep::GenParticle>+;
46     #pragma link C++ class mithep::Collection<mithep::Lepton>+;
47     #pragma link C++ class mithep::Collection<mithep::Muon>+;
48     #pragma link C++ class mithep::Vector<mithep::DataObject>+;
49     #pragma link C++ class mithep::Vector<mithep::Track>+;
50 loizides 1.1 #pragma link C++ class mithep::Vector<mithep::Particle>+;
51 loizides 1.3 #pragma link C++ class mithep::Vector<mithep::GenParticle>+;
52     #pragma link C++ class mithep::Vector<mithep::Lepton>+;
53     #pragma link C++ class mithep::Vector<mithep::Muon>+;
54     #pragma link C++ typedef mithep::DataObjectCol;
55     #pragma link C++ typedef mithep::TrackCol;
56     #pragma link C++ typedef mithep::ParticleCol;
57     #pragma link C++ typedef mithep::GenParticleCol;
58     #pragma link C++ typedef mithep::LeptonCol;
59     #pragma link C++ typedef mithep::MuonCol;
60 loizides 1.1 #endif