ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/MitPhysics/SelMods/src/MitPhysicsSelModsLinkDef.h
Revision: 1.6
Committed: Mon Jun 15 15:00:22 2009 UTC (15 years, 10 months ago) by loizides
Content type: text/plain
Branch: MAIN
CVS Tags: Mit_014e, Mit_014d, Mit_014c, Mit_014b, Mit_014a, Mit_014, Mit_014pre3, Mit_014pre2, Mit_014pre1, Mit_013d, Mit_013c, Mit_013b, Mit_013a, Mit_013, Mit_013pre1, Mit_012i, Mit_012g, Mit_012f, Mit_012e, Mit_012d, Mit_012c, Mit_012b, Mit_012a, Mit_012, Mit_011a, Mit_011, Mit_010a, Mit_010, Mit_009c, Mit_009b
Changes since 1.5: +14 -1 lines
Log Message:
Added proper fwd defs plus split up complilation of MitAna/DataTree LinkDefs.

File Contents

# User Rev Content
1 loizides 1.6 // $Id: MitPhysicsSelModsLinkDef.h,v 1.5 2009/04/29 15:07:12 loizides 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 loizides 1.1 #endif
24    
25     #ifdef __CINT__
26     #pragma link off all globals;
27     #pragma link off all classes;
28     #pragma link off all functions;
29     #pragma link C++ nestedclass;
30     #pragma link C++ nestedtypedef;
31     #pragma link C++ namespace mithep;
32    
33 loizides 1.5 #pragma link C++ class mithep::DilepSelMod+;
34 loizides 1.1 #pragma link C++ class mithep::GenericSelMod<mithep::Particle>+;
35     #pragma link C++ class mithep::GenericSelMod<mithep::CompositeParticle>+;
36     #pragma link C++ class mithep::GenericSelMod<mithep::Conversion>+;
37     #pragma link C++ class mithep::GenericSelMod<mithep::Electron>+;
38     #pragma link C++ class mithep::GenericSelMod<mithep::GenJet>+;
39     #pragma link C++ class mithep::GenericSelMod<mithep::Jet>+;
40     #pragma link C++ class mithep::GenericSelMod<mithep::MCParticle>+;
41     #pragma link C++ class mithep::GenericSelMod<mithep::Met>+;
42     #pragma link C++ class mithep::GenericSelMod<mithep::Muon>+;
43     #pragma link C++ class mithep::GenericSelMod<mithep::Photon>+;
44     #pragma link C++ class mithep::GenericSelMod<mithep::Track>+;
45     #pragma link C++ class mithep::GenericSelMod<mithep::TriggerObject>+;
46 loizides 1.4 #pragma link C++ class mithep::JetPlusIsoTrackSelMod+;
47     #pragma link C++ class mithep::LeptonPlusIsoTrackSelMod+;
48     #pragma link C++ class mithep::PhotonPlusIsoTrackSelMod+;
49 loizides 1.1 #endif