ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/MitAna/DataCont/src/MitAnaDataContLinkDef.h
Revision: 1.4
Committed: Thu Feb 26 17:05:19 2009 UTC (16 years, 2 months ago) by bendavid
Content type: text/plain
Branch: MAIN
Changes since 1.3: +5 -1 lines
Log Message:
Add FastArray (optimized heap array) and switch RefArray to use FastArray

File Contents

# Content
1 // $Id: MitAnaDataContLinkDef.h,v 1.3 2008/10/31 18:56:14 bendavid 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/StackArray.h"
8 #include "MitAna/DataCont/interface/StackArrayBasic.h"
9 #include "MitAna/DataCont/interface/FastArray.h"
10 #include "MitAna/DataCont/interface/FastArrayBasic.h"
11 #include "MitAna/DataCont/interface/ProcIDRef.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::ProcIDRef-;
24 #pragma link C++ class mithep::Collection<mithep::ProcIDRef>+;
25 #pragma link C++ class mithep::StackArrayBasic<UInt_t, 32>-;
26 #pragma link C++ class mithep::StackArray<mithep::ProcIDRef,32>-;
27 #pragma link C++ class mithep::StackArrayBasic<UInt_t, 128>-;
28 #pragma link C++ class mithep::StackArray<mithep::ProcIDRef,128>-;
29 #pragma link C++ class mithep::StackArrayBasic<UInt_t, 1024>-;
30 #pragma link C++ class mithep::StackArray<mithep::ProcIDRef,1024>-;
31 #pragma link C++ class mithep::FastArray<mithep::ProcIDRef>-;
32 #pragma link C++ class mithep::FastArrayBasic<UInt_t>-;
33 #endif