ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/MitAna/DataCont/src/MitAnaDataContLinkDef.h
Revision: 1.3
Committed: Fri Oct 31 18:56:14 2008 UTC (16 years, 6 months ago) by bendavid
Content type: text/plain
Branch: MAIN
CVS Tags: Mit_006b, Mit_006a, Mit_006
Changes since 1.2: +12 -1 lines
Log Message:
Switched to new optimized RefArray now supporting multiple PIDs

File Contents

# Content
1 // $Id: MitAnaDataContLinkDef.h,v 1.2 2008/10/14 05:28:21 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/StackArray.h"
8 #include "MitAna/DataCont/interface/StackArrayBasic.h"
9 #include "MitAna/DataCont/interface/ProcIDRef.h"
10 #endif
11
12 #ifdef __CINT__
13 #pragma link off all globals;
14 #pragma link off all classes;
15 #pragma link off all functions;
16 #pragma link C++ nestedclass;
17 #pragma link C++ nestedtypedef;
18 #pragma link C++ namespace mithep;
19
20 #pragma link C++ class mithep::BaseCollection+;
21 #pragma link C++ class mithep::ProcIDRef-;
22 #pragma link C++ class mithep::Collection<mithep::ProcIDRef>+;
23 #pragma link C++ class mithep::StackArrayBasic<UInt_t, 32>-;
24 #pragma link C++ class mithep::StackArray<mithep::ProcIDRef,32>-;
25 #pragma link C++ class mithep::StackArrayBasic<UInt_t, 128>-;
26 #pragma link C++ class mithep::StackArray<mithep::ProcIDRef,128>-;
27 #pragma link C++ class mithep::StackArrayBasic<UInt_t, 1024>-;
28 #pragma link C++ class mithep::StackArray<mithep::ProcIDRef,1024>-;
29 #endif