ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/MitCommon/DataFormats/src/MitCommonDataFormatsLinkDef.h
Revision: 1.4
Committed: Mon Aug 10 16:04:51 2009 UTC (15 years, 8 months ago) by phedex
Content type: text/plain
Branch: MAIN
Changes since 1.3: +3 -1 lines
Log Message:
Add custom 2D histogram class that stores asymmetric statistical and systematic errors. Used for Fake Rate calculations.

File Contents

# User Rev Content
1 phedex 1.4 // $Id: MitCommonDataFormatsLinkDef.h,v 1.3 2009/04/29 15:14:06 loizides Exp $
2 loizides 1.1
3     #ifndef MITCOMMON_DATAFORMATS_LINKDEF_H
4     #define MITCOMMON_DATAFORMATS_LINKDEF_H
5    
6 loizides 1.3 #include "MitCommon/DataFormats/interface/Hist1DRat.h"
7 phedex 1.4 #include "MitCommon/DataFormats/interface/TH2DAsymErr.h"
8 loizides 1.1 #include "MitCommon/DataFormats/interface/Types.h"
9 loizides 1.2 #include "MitCommon/DataFormats/interface/Vect3.h"
10     #include "MitCommon/DataFormats/interface/Vect3C.h"
11     #include "MitCommon/DataFormats/interface/Vect4M.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++ typedef mithep::FourVector;
23     #pragma link C++ typedef mithep::FourVectorM;
24     #pragma link C++ typedef mithep::FourVectorE;
25     #pragma link C++ typedef mithep::ThreeVector;
26     #pragma link C++ typedef mithep::ThreeVectorC;
27     #pragma link C++ typedef mithep::ThreeSymMatrix;
28     #pragma link C++ typedef mithep::SevenSymMatrix;
29     #pragma link C++ typedef mithep::ThreeMatrix;
30     #pragma link C++ typedef mithep::SevenMatrix;
31     #pragma link C++ typedef mithep::FourVector32;
32     #pragma link C++ typedef mithep::FourVectorM32;
33     #pragma link C++ typedef mithep::FourVectorE32;
34     #pragma link C++ typedef mithep::ThreeVector32;
35     #pragma link C++ typedef mithep::ThreeVectorC32;
36     #pragma link C++ typedef mithep::ThreeSymMatrix32;
37     #pragma link C++ typedef mithep::SevenSymMatrix32;
38     #pragma link C++ typedef mithep::ThreeMatrix32;
39     #pragma link C++ typedef mithep::SevenMatrix32;
40    
41 loizides 1.3 #pragma link C++ class mithep::Hist1DRat+;
42 phedex 1.4 #pragma link C++ class mithep::TH2DAsymErr+;
43 loizides 1.2 #pragma link C++ class mithep::Vect3+;
44     #pragma link C++ class mithep::Vect3C+;
45     #pragma link C++ class mithep::Vect4M+;
46 loizides 1.1 #endif