ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/MitPhysics/SelMods/src/MitPhysicsSelModsLinkDef.h
Revision: 1.8
Committed: Wed Dec 22 13:39:36 2010 UTC (14 years, 4 months ago) by ceballos
Content type: text/plain
Branch: MAIN
CVS Tags: Mit_029c, Mit_029b, Mit_029a, Mit_028a, Mit_028, Mit_027, Mit_027a, Mit_025e, Mit_025d, Mit_025c, Mit_025b, Mit_025a, Mit_025, Mit_025pre2, Mit_024b, Mit_025pre1, Mit_024a, Mit_024, Mit_023, Mit_022a, Mit_022, Mit_020d, TMit_020d, Mit_020c, Mit_021, Mit_021pre2, Mit_021pre1, Mit_020b, Mit_020a, Mit_020, Mit_020pre1, Mit_018, HEAD
Changes since 1.7: +3 -1 lines
Log Message:
new module

File Contents

# User Rev Content
1 ceballos 1.8 // $Id: MitPhysicsSelModsLinkDef.h,v 1.7 2010/10/04 18:06:10 ceballos Exp $
2 loizides 1.1
3     #ifndef MITPHYSICS_SELMODS_LINKDEF_H
4     #define MITPHYSICS_SELMODS_LINKDEF_H
5 loizides 1.6
6     #include "MitAna/DataCont/interface/Collection.h"
7     #include "MitAna/DataTree/interface/CompositeParticle.h"
8     #include "MitAna/DataTree/interface/Conversion.h"
9     #include "MitAna/DataTree/interface/Electron.h"
10     #include "MitAna/DataTree/interface/GenJet.h"
11     #include "MitAna/DataTree/interface/Jet.h"
12     #include "MitAna/DataTree/interface/Met.h"
13     #include "MitAna/DataTree/interface/Muon.h"
14     #include "MitAna/DataTree/interface/Particle.h"
15     #include "MitAna/DataTree/interface/Photon.h"
16     #include "MitAna/DataTree/interface/Track.h"
17     #include "MitAna/DataTree/interface/TriggerObject.h"
18 loizides 1.5 #include "MitPhysics/SelMods/interface/DilepSelMod.h"
19 loizides 1.1 #include "MitPhysics/SelMods/interface/GenericSelMod.h"
20 loizides 1.4 #include "MitPhysics/SelMods/interface/JetPlusIsoTrackSelMod.h"
21     #include "MitPhysics/SelMods/interface/LeptonPlusIsoTrackSelMod.h"
22     #include "MitPhysics/SelMods/interface/PhotonPlusIsoTrackSelMod.h"
23 ceballos 1.7 #include "MitPhysics/SelMods/interface/HwwExampleAnalysisMod.h"
24 ceballos 1.8 #include "MitPhysics/SelMods/interface/WBFExampleAnalysisMod.h"
25 loizides 1.1 #endif
26    
27     #ifdef __CINT__
28     #pragma link off all globals;
29     #pragma link off all classes;
30     #pragma link off all functions;
31     #pragma link C++ nestedclass;
32     #pragma link C++ nestedtypedef;
33     #pragma link C++ namespace mithep;
34    
35 loizides 1.5 #pragma link C++ class mithep::DilepSelMod+;
36 loizides 1.1 #pragma link C++ class mithep::GenericSelMod<mithep::Particle>+;
37     #pragma link C++ class mithep::GenericSelMod<mithep::CompositeParticle>+;
38     #pragma link C++ class mithep::GenericSelMod<mithep::Conversion>+;
39     #pragma link C++ class mithep::GenericSelMod<mithep::Electron>+;
40     #pragma link C++ class mithep::GenericSelMod<mithep::GenJet>+;
41     #pragma link C++ class mithep::GenericSelMod<mithep::Jet>+;
42     #pragma link C++ class mithep::GenericSelMod<mithep::MCParticle>+;
43     #pragma link C++ class mithep::GenericSelMod<mithep::Met>+;
44     #pragma link C++ class mithep::GenericSelMod<mithep::Muon>+;
45     #pragma link C++ class mithep::GenericSelMod<mithep::Photon>+;
46     #pragma link C++ class mithep::GenericSelMod<mithep::Track>+;
47     #pragma link C++ class mithep::GenericSelMod<mithep::TriggerObject>+;
48 loizides 1.4 #pragma link C++ class mithep::JetPlusIsoTrackSelMod+;
49     #pragma link C++ class mithep::LeptonPlusIsoTrackSelMod+;
50     #pragma link C++ class mithep::PhotonPlusIsoTrackSelMod+;
51 ceballos 1.7 #pragma link C++ class mithep::HwwExampleAnalysisMod+;
52 ceballos 1.8 #pragma link C++ class mithep::WBFExampleAnalysisMod+;
53 loizides 1.1 #endif