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

# Content
1 // $Id: MitAnaDataContLinkDef.h,v 1.6 2009/03/02 14:56:42 loizides Exp $
2
3 #ifndef MITANA_DATACONT_LINKDEF_H
4 #define MITANA_DATACONT_LINKDEF_H
5
6 #include "MitAna/DataCont/interface/BaseCollection.h"
7 #include "MitAna/DataCont/interface/FastArray.h"
8 #include "MitAna/DataCont/interface/FastArrayBasic.h"
9 #include "MitAna/DataCont/interface/ProcIDRef.h"
10 #include "MitAna/DataCont/interface/RefResolver.h"
11 #include "MitAna/DataCont/interface/Types.h"
12 #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 #pragma link C++ class mithep::RefResolver+;
24 #pragma link C++ class mithep::ProcIDRef-;
25 #pragma link C++ class mithep::Collection<mithep::ProcIDRef>+;
26 #pragma link C++ class mithep::FastArray<mithep::ProcIDRef>-;
27
28 #pragma link C++ class mithep::FastArrayBasic<Double_t>-;
29 #pragma link C++ class mithep::FastArrayBasic<Double32_t,kTRUE>-;
30 #pragma link C++ class mithep::FastArrayBasic<Int_t>-;
31 #pragma link C++ class mithep::FastArrayBasic<UInt_t>-;
32
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 #endif