ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/MitAna/TreeMod/src/MitAnaTreeModLinkDef.h
Revision: 1.2
Committed: Mon Jun 9 00:06:36 2008 UTC (16 years, 10 months ago) by bendavid
Content type: text/plain
Branch: MAIN
Changes since 1.1: +3 -1 lines
Log Message:
adherance to coding conventions, reverted ParticleExample, new full chain example

File Contents

# User Rev Content
1 bendavid 1.2 // $Id: MitAnaTreeModLinkDef.h,v 1.1 2008/05/27 19:50:16 loizides Exp $
2 loizides 1.1
3     #ifndef TREEMOD_LINKDEF_H
4     #define TREEMOD_LINKDEF_H
5     #include "MitAna/TreeMod/interface/Analysis.h"
6     #include "MitAna/TreeMod/interface/ParticleExampleMod.h"
7 bendavid 1.2 #include "MitAna/TreeMod/interface/FullExampleMod.h"
8 loizides 1.1 #endif
9    
10     #ifdef __CINT__
11     #pragma link off all globals;
12     #pragma link off all classes;
13     #pragma link off all functions;
14     #pragma link C++ nestedclass;
15     #pragma link C++ nestedtypedef;
16     #pragma link C++ namespace mithep;
17    
18     #pragma link C++ class mithep::Analysis+;
19     #pragma link C++ class mithep::ParticleExampleMod+;
20 bendavid 1.2 #pragma link C++ class mithep::FullExampleMod+;
21 loizides 1.1 #endif