ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/MitAna/PhysicsMod/src/MitAnaPhysicsModLinkDef.h
Revision: 1.18
Committed: Mon May 3 11:36:01 2010 UTC (15 years ago) by bendavid
Content type: text/plain
Branch: MAIN
CVS Tags: Mit_020a, Mit_020, Mit_020pre1, Mit_018, Mit_017, Mit_017pre3, Mit_017pre2, Mit_017pre1, Mit_016, Mit_015b, Mit_015a, Mit_015, Mit_014e, Mit_014d, Mit_014c, Mit_014b, Mit_014a, Mit_014, Mit_014pre3, Mit_014pre2, Mit_014pre1
Changes since 1.17: +3 -1 lines
Log Message:
Add first non-working version of json selection module

File Contents

# User Rev Content
1 bendavid 1.18 // $Id: MitAnaPhysicsModLinkDef.h,v 1.17 2010/01/18 14:35:43 bendavid Exp $
2 sixie 1.1
3 loizides 1.4 #ifndef MITANA_PHYSICSMOD_LINKDEF_H
4     #define MITANA_PHYSICSMOD_LINKDEF_H
5     #include "MitAna/PhysicsMod/interface/FullExampleMod.h"
6     #include "MitAna/PhysicsMod/interface/HLTExampleMod.h"
7 bendavid 1.17 #include "MitAna/PhysicsMod/interface/RunSelectionMod.h"
8 bendavid 1.18 #include "MitAna/PhysicsMod/interface/RunLumiSelectionMod.h"
9 loizides 1.12 #include "MitAna/PhysicsMod/interface/SimpleExampleMod.h"
10 loizides 1.16 #include "MitAna/PhysicsMod/interface/TrackToPartMod.h"
11 sixie 1.1 #endif
12 loizides 1.4
13 sixie 1.1 #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 loizides 1.4 #pragma link C++ class mithep::FullExampleMod+;
22     #pragma link C++ class mithep::HLTExampleMod+;
23     #pragma link C++ class mithep::SimpleExampleMod+;
24 loizides 1.16 #pragma link C++ class mithep::TrackToPartMod+;
25 bendavid 1.17 #pragma link C++ class mithep::RunSelectionMod+;
26 bendavid 1.18 #pragma link C++ class mithep::RunLumiSelectionMod+;
27 sixie 1.1 #endif