ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/MitPhysics/Utils/src/MitPhysicsUtilsLinkDef.h
Revision: 1.3
Committed: Sat Apr 10 18:06:51 2010 UTC (15 years ago) by sixie
Content type: text/plain
Branch: MAIN
CVS Tags: Mit_014c, Mit_014b, Mit_014a, Mit_014, Mit_014pre3, Mit_014pre2, Mit_014pre1, Mit_013d
Changes since 1.2: +5 -1 lines
Log Message:
Add a helper class for electron ID.

File Contents

# User Rev Content
1 sixie 1.3 // $Id: MitPhysicsUtilsLinkDef.h,v 1.2 2010/03/27 13:38:44 sixie Exp $
2 loizides 1.1
3     #ifndef MITPHYSICS_UTILS_LINKDEF_H
4     #define MITPHYSICS_UTILS_LINKDEF_H
5    
6     #include "MitPhysics/Utils/interface/DiTauSystem.h"
7 sixie 1.2 #include "MitPhysics/Utils/interface/GeneratorTools.h"
8 loizides 1.1 #include "MitPhysics/Utils/interface/IsolationTools.h"
9     #include "MitPhysics/Utils/interface/MatchingTools.h"
10     #include "MitPhysics/Utils/interface/MuonTools.h"
11 sixie 1.3 #include "MitPhysics/Utils/interface/ElectronTools.h"
12 loizides 1.1 #endif
13    
14     #ifdef __CINT__
15     #pragma link off all globals;
16     #pragma link off all classes;
17     #pragma link off all functions;
18     #pragma link C++ nestedclass;
19     #pragma link C++ nestedtypedef;
20     #pragma link C++ namespace mithep;
21    
22     #pragma link C++ class mithep::DiTauSystem;
23 sixie 1.2 #pragma link C++ class mithep::GeneratorTools;
24 loizides 1.1 #pragma link C++ class mithep::IsolationTools;
25     #pragma link C++ class mithep::MatchingTools;
26     #pragma link C++ class mithep::MuonTools;
27 sixie 1.3 #pragma link C++ class mithep::ElectronTools;
28     #pragma link C++ enum mithep::ElectronTools::EElIdType;
29     #pragma link C++ enum mithep::ElectronTools::EElIsoType;
30 loizides 1.1
31     #endif