ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/MitAna/DataTree/src/MitAnaDataTreeLinkDef.h
Revision: 1.1
Committed: Tue May 27 19:24:49 2008 UTC (16 years, 11 months ago) by loizides
Content type: text/plain
Branch: MAIN
Log Message:
First few data tree classes.

File Contents

# User Rev Content
1 loizides 1.1 // $Id: LinkDef.h 2272 2006-01-08 17:16:44Z loizides $
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/Collections.h"
9     #include "MitAna/DataTree/interface/Vector.h"
10     #include "MitAna/DataTree/interface/Particle.h"
11     #endif
12    
13     #ifdef __CINT__
14     #pragma link off all globals;
15     #pragma link off all classes;
16     #pragma link off all functions;
17     #pragma link C++ nestedclass;
18     #pragma link C++ nestedtypedef;
19     #pragma link C++ namespace mithep;
20    
21     #pragma link C++ class mithep::Particle+;
22     #pragma link C++ class std::vector<mithep::Particle>+;
23     #pragma link C++ class mithep::Collection<mithep::Particle>+;
24     #pragma link C++ class mithep::Vector<mithep::Particle>+;
25     #pragma link C++ typedef mithep::ParticleCollection;
26    
27     #endif