ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/MitAna/DataCont/src/MitAnaDataContLinkDef.h
Revision: 1.7
Committed: Tue Mar 3 18:01:35 2009 UTC (16 years, 2 months ago) by bendavid
Content type: text/plain
Branch: MAIN
CVS Tags: Mit_008pre1
Changes since 1.6: +3 -3 lines
Log Message:
Fixed special handling of double32

File Contents

# User Rev Content
1 bendavid 1.7 // $Id: MitAnaDataContLinkDef.h,v 1.6 2009/03/02 14:56:42 loizides Exp $
2 loizides 1.1
3 loizides 1.2 #ifndef MITANA_DATACONT_LINKDEF_H
4     #define MITANA_DATACONT_LINKDEF_H
5 loizides 1.1
6     #include "MitAna/DataCont/interface/BaseCollection.h"
7 bendavid 1.4 #include "MitAna/DataCont/interface/FastArray.h"
8     #include "MitAna/DataCont/interface/FastArrayBasic.h"
9 bendavid 1.3 #include "MitAna/DataCont/interface/ProcIDRef.h"
10 loizides 1.5 #include "MitAna/DataCont/interface/RefResolver.h"
11 loizides 1.6 #include "MitAna/DataCont/interface/Types.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::BaseCollection+;
23 loizides 1.5 #pragma link C++ class mithep::RefResolver+;
24 bendavid 1.3 #pragma link C++ class mithep::ProcIDRef-;
25     #pragma link C++ class mithep::Collection<mithep::ProcIDRef>+;
26 bendavid 1.4 #pragma link C++ class mithep::FastArray<mithep::ProcIDRef>-;
27 loizides 1.6
28 bendavid 1.7 #pragma link C++ class mithep::FastArrayBasic<Double_t>-;
29     #pragma link C++ class mithep::FastArrayBasic<Double32_t,kTRUE>-;
30 loizides 1.6 #pragma link C++ class mithep::FastArrayBasic<Int_t>-;
31 bendavid 1.4 #pragma link C++ class mithep::FastArrayBasic<UInt_t>-;
32 loizides 1.6
33     #pragma link C++ typedef mithep::FArrDouble;
34     #pragma link C++ typedef mithep::FArrDouble32;
35     #pragma link C++ typedef mithep::FArrInt;
36     #pragma link C++ typedef mithep::FArrUInt;
37 loizides 1.1 #endif