ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/MitPhysics/Mods/src/MitPhysicsModsLinkDef.h
Revision: 1.6
Committed: Thu Dec 11 17:37:29 2008 UTC (16 years, 4 months ago) by loizides
Content type: text/plain
Branch: MAIN
CVS Tags: Mit_008, Mit_008pre2, Mit_008pre1, Mit_006b, Mit_006a
Changes since 1.5: +6 -1 lines
Log Message:
Add multipurpose merger mod.

File Contents

# Content
1 // $Id: MitPhysicsModsLinkDef.h,v 1.5 2008/12/10 11:44:33 loizides Exp $
2
3 #ifndef MITPHYSICS_MODS_LINKDEF_H
4 #define MITPHYSICS_MODS_LINKDEF_H
5 #include "MitPhysics/Mods/interface/ElectronCleaningMod.h"
6 #include "MitPhysics/Mods/interface/ElectronIDMod.h"
7 #include "MitPhysics/Mods/interface/GeneratorMod.h"
8 #include "MitPhysics/Mods/interface/JetCleaningMod.h"
9 #include "MitPhysics/Mods/interface/JetIDMod.h"
10 #include "MitPhysics/Mods/interface/MergeLeptonsMod.h"
11 #include "MitPhysics/Mods/interface/MergerMod.h"
12 #include "MitPhysics/Mods/interface/MuonIDMod.h"
13 #include "MitPhysics/Mods/interface/PhotonCleaningMod.h"
14 #include "MitPhysics/Mods/interface/PhotonIDMod.h"
15 #endif
16
17 #ifdef __CINT__
18 #pragma link off all globals;
19 #pragma link off all classes;
20 #pragma link off all functions;
21 #pragma link C++ nestedclass;
22 #pragma link C++ nestedtypedef;
23 #pragma link C++ namespace mithep;
24
25 #pragma link C++ class mithep::ElectronCleaningMod+;
26 #pragma link C++ class mithep::ElectronIDMod+;
27 #pragma link C++ enum mithep::ElectronIDMod::EElIdType;
28 #pragma link C++ enum mithep::ElectronIDMod::EElIsoType;
29 #pragma link C++ class mithep::GeneratorMod+;
30 #pragma link C++ class mithep::JetCleaningMod+;
31 #pragma link C++ class mithep::JetIDMod+;
32 #pragma link C++ class mithep::MergeLeptonsMod+;
33 #pragma link C++ class mithep::MergerMod<TObject>+;
34 #pragma link C++ class mithep::MergerMod<mithep::DataBase>+;
35 #pragma link C++ class mithep::MergerMod<mithep::DataObject>+;
36 #pragma link C++ class mithep::MergerMod<mithep::Particle>+;
37 #pragma link C++ class mithep::MuonIDMod+;
38 #pragma link C++ enum mithep::MuonIDMod::EMuClassType;
39 #pragma link C++ enum mithep::MuonIDMod::EMuIdType;
40 #pragma link C++ enum mithep::MuonIDMod::EMuIsoType;
41 #pragma link C++ class mithep::PhotonCleaningMod+;
42 #pragma link C++ class mithep::PhotonIDMod+;
43 #endif