ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/Morgan/src/LinkDef.h
Revision: 1.6
Committed: Mon Dec 1 15:58:05 2008 UTC (16 years, 5 months ago) by lethuill
Content type: text/plain
Branch: MAIN
Changes since 1.5: +13 -13 lines
Log Message:
Proto-version for use with different data formats (RECO/AOD/PAT/PAT+AOD)
Replace the absolute path /UserCode/Morgan with a relative one

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 lethuill 1.6 #include "../interface/TRootRun.h"
17     #include "../interface/TRootEvent.h"
18     #include "../interface/TRootParticle.h"
19     #include "../interface/TRootTrack.h"
20     #include "../interface/TRootJet.h"
21     #include "../interface/TRootMuon.h"
22     #include "../interface/TRootPhoton.h"
23     #include "../interface/TRootMCPhoton.h"
24     #include "../interface/TRootElectron.h"
25     #include "../interface/TRootSignalEvent.h"
26     #include "../interface/TRootCluster.h"
27     #include "../interface/TRootSuperCluster.h"
28     #include "../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