1 |
loizides |
1.7 |
// $Id: MitAnaDataTreeLinkDef.h,v 1.6 2008/06/17 13:30:37 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 |
loizides |
1.1 |
#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 |
loizides |
1.2 |
#pragma link C++ class mithep::Names+;
|
32 |
|
|
|
33 |
loizides |
1.3 |
#pragma link C++ class mithep::DataObject+;
|
34 |
loizides |
1.7 |
#pragma link C++ class mithep::EventHeader+;
|
35 |
loizides |
1.3 |
#pragma link C++ class mithep::Track+;
|
36 |
loizides |
1.1 |
#pragma link C++ class mithep::Particle+;
|
37 |
loizides |
1.3 |
#pragma link C++ class mithep::GenParticle+;
|
38 |
|
|
#pragma link C++ class mithep::Lepton+;
|
39 |
|
|
#pragma link C++ class mithep::Muon+;
|
40 |
bendavid |
1.5 |
#pragma link C++ class mithep::Electron+;
|
41 |
loizides |
1.6 |
|
42 |
loizides |
1.4 |
#pragma link C++ class mithep::BaseCollection+;
|
43 |
loizides |
1.7 |
#pragma link C++ class mithep::Collection<mithep::EventHeader>+;
|
44 |
loizides |
1.3 |
#pragma link C++ class mithep::Collection<mithep::DataObject>+;
|
45 |
|
|
#pragma link C++ class mithep::Collection<mithep::Track>+;
|
46 |
loizides |
1.1 |
#pragma link C++ class mithep::Collection<mithep::Particle>+;
|
47 |
loizides |
1.3 |
#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 |
bendavid |
1.5 |
#pragma link C++ class mithep::Collection<mithep::Electron>+;
|
51 |
loizides |
1.6 |
#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 |
loizides |
1.7 |
#pragma link C++ class mithep::Vector<mithep::EventHeader>+;
|
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
|