ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/Morgan/src/LinkDef.h
Revision: 1.5
Committed: Wed Nov 19 19:03:16 2008 UTC (16 years, 5 months ago) by lethuill
Content type: text/plain
Branch: MAIN
CVS Tags: Common-2008_11_24, Common-2008_11_19
Changes since 1.4: +3 -0 lines
Log Message:
First skeleton for common code

File Contents

# User Rev Content
1 mlethuil 1.1 #ifdef __CINT__
2 mlethuil 1.3 #include "../interface/TRootRun.h"
3 mlethuil 1.1 #include "../interface/TRootEvent.h"
4     #include "../interface/TRootParticle.h"
5 mlethuil 1.2 #include "../interface/TRootTrack.h"
6 mlethuil 1.1 #include "../interface/TRootJet.h"
7     #include "../interface/TRootMuon.h"
8     #include "../interface/TRootPhoton.h"
9 mlethuil 1.4 #include "../interface/TRootMCPhoton.h"
10 mlethuil 1.1 #include "../interface/TRootElectron.h"
11     #include "../interface/TRootSignalEvent.h"
12     #include "../interface/TRootCluster.h"
13     #include "../interface/TRootSuperCluster.h"
14 lethuill 1.5 #include "../interface/TRootMET.h"
15 mlethuil 1.1 #else
16 mlethuil 1.3 #include "UserCode/Morgan/interface/TRootRun.h"
17 mlethuil 1.1 #include "UserCode/Morgan/interface/TRootEvent.h"
18     #include "UserCode/Morgan/interface/TRootParticle.h"
19 mlethuil 1.2 #include "UserCode/Morgan/interface/TRootTrack.h"
20 mlethuil 1.1 #include "UserCode/Morgan/interface/TRootJet.h"
21     #include "UserCode/Morgan/interface/TRootMuon.h"
22     #include "UserCode/Morgan/interface/TRootPhoton.h"
23 mlethuil 1.4 #include "UserCode/Morgan/interface/TRootMCPhoton.h"
24 mlethuil 1.1 #include "UserCode/Morgan/interface/TRootElectron.h"
25     #include "UserCode/Morgan/interface/TRootSignalEvent.h"
26     #include "UserCode/Morgan/interface/TRootCluster.h"
27     #include "UserCode/Morgan/interface/TRootSuperCluster.h"
28 lethuill 1.5 #include "UserCode/Morgan/interface/TRootMET.h"
29 mlethuil 1.1 #endif
30    
31     #ifdef __CINT__
32     #pragma link off all globals;
33     #pragma link off all classes;
34     #pragma link off all functions;
35    
36 mlethuil 1.3 #pragma link C++ class TRootRun;
37 mlethuil 1.1 #pragma link C++ class TRootEvent;
38     #pragma link C++ class TRootParticle;
39 mlethuil 1.2 #pragma link C++ class TRootTrack;
40 mlethuil 1.1 #pragma link C++ class TRootJet;
41     #pragma link C++ class TRootMuon;
42     #pragma link C++ class TRootPhoton;
43 mlethuil 1.4 #pragma link C++ class TRootMCPhoton;
44 mlethuil 1.1 #pragma link C++ class TRootElectron;
45     #pragma link C++ class TRootSignalEvent;
46     #pragma link C++ class TRootCluster;
47     #pragma link C++ class TRootSuperCluster;
48 lethuill 1.5 #pragma link C++ class TRootMET;
49 mlethuil 1.1
50     #endif