ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/MitAna/DataTree/src/MitAnaDataTreeLinkDef.h
Revision: 1.6
Committed: Tue Jun 17 13:30:37 2008 UTC (16 years, 11 months ago) by loizides
Content type: text/plain
Branch: MAIN
Changes since 1.5: +11 -15 lines
Log Message:
Added Array and ObjArray, plus reworked Collections interface.

File Contents

# Content
1 // $Id: MitAnaDataTreeLinkDef.h,v 1.5 2008/06/05 16:03:35 bendavid 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/Track.h"
15 #include "MitAna/DataTree/interface/Particle.h"
16 #include "MitAna/DataTree/interface/GenParticle.h"
17 #include "MitAna/DataTree/interface/Lepton.h"
18 #include "MitAna/DataTree/interface/Muon.h"
19 #include "MitAna/DataTree/interface/Electron.h"
20 #endif
21
22 #ifdef __CINT__
23 #pragma link off all globals;
24 #pragma link off all classes;
25 #pragma link off all functions;
26 #pragma link C++ nestedclass;
27 #pragma link C++ nestedtypedef;
28 #pragma link C++ namespace mithep;
29
30 #pragma link C++ class mithep::Names+;
31
32 #pragma link C++ class mithep::DataObject+;
33 #pragma link C++ class mithep::Track+;
34 #pragma link C++ class mithep::Particle+;
35 #pragma link C++ class mithep::GenParticle+;
36 #pragma link C++ class mithep::Lepton+;
37 #pragma link C++ class mithep::Muon+;
38 #pragma link C++ class mithep::Electron+;
39
40 #pragma link C++ class mithep::BaseCollection+;
41 #pragma link C++ class mithep::Collection<mithep::DataObject>+;
42 #pragma link C++ class mithep::Collection<mithep::Track>+;
43 #pragma link C++ class mithep::Collection<mithep::Particle>+;
44 #pragma link C++ class mithep::Collection<mithep::GenParticle>+;
45 #pragma link C++ class mithep::Collection<mithep::Lepton>+;
46 #pragma link C++ class mithep::Collection<mithep::Muon>+;
47 #pragma link C++ class mithep::Collection<mithep::Electron>+;
48 #pragma link C++ class mithep::Array<mithep::DataObject>+;
49 #pragma link C++ class mithep::Array<mithep::Track>+;
50 #pragma link C++ class mithep::Array<mithep::Particle>+;
51 #pragma link C++ class mithep::Array<mithep::GenParticle>+;
52 #pragma link C++ class mithep::Array<mithep::Lepton>+;
53 #pragma link C++ class mithep::Array<mithep::Muon>+;
54 #pragma link C++ class mithep::Array<mithep::Electron>+;
55 #pragma link C++ typedef mithep::DataObjectCol;
56 #pragma link C++ typedef mithep::TrackCol;
57 #pragma link C++ typedef mithep::ParticleCol;
58 #pragma link C++ typedef mithep::GenParticleCol;
59 #pragma link C++ typedef mithep::LeptonCol;
60 #pragma link C++ typedef mithep::MuonCol;
61 #pragma link C++ typedef mithep::ElectronCol;
62 #endif