ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/MitPhysics/Mods/src/MergerModLinkDef.h
Revision: 1.1
Committed: Wed Jun 17 08:42:29 2009 UTC (15 years, 10 months ago) by loizides
Content type: text/plain
Branch: MAIN
CVS Tags: Mit_011a, Mit_011, Mit_010a, Mit_010, Mit_009c
Log Message:
Added MatchMod a module to give you a collection of geometrical matches of two collections.

File Contents

# User Rev Content
1 loizides 1.1 // $Id: MitPhysicsModsLinkDef.h,v 1.14 2009/04/30 08:09:32 loizides Exp $
2    
3     #ifndef MITPHYSICS_MODS_MERGERMODLINKDEF_H
4     #define MITPHYSICS_MODS_MERGERMODLINKDEF_H
5     #include "MitPhysics/Mods/interface/MergerMod.h"
6     #include "MitAna/DataTree/interface/DataBase.h"
7     #include "MitAna/DataTree/interface/DataObject.h"
8     #include "MitAna/DataTree/interface/Particle.h"
9     #endif
10    
11     #ifdef __CINT__
12     #pragma link off all globals;
13     #pragma link off all classes;
14     #pragma link off all functions;
15     #pragma link C++ nestedclass;
16     #pragma link C++ nestedtypedef;
17     #pragma link C++ namespace mithep;
18    
19     #pragma link C++ class mithep::MergerMod<TObject>+;
20     #pragma link C++ class mithep::MergerMod<mithep::DataBase>+;
21     #pragma link C++ class mithep::MergerMod<mithep::DataObject>+;
22     #pragma link C++ class mithep::MergerMod<mithep::Particle>+;
23     #endif