ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/MitAna/DataCont/src/MitAnaDataContLinkDef.h
Revision: 1.8
Committed: Sun Mar 8 12:08:31 2009 UTC (16 years, 2 months ago) by loizides
Content type: text/plain
Branch: MAIN
CVS Tags: Mit_008pre2
Changes since 1.7: +21 -3 lines
Log Message:
Added BitMask and CacheFlag. Also have type-based BitMaskT for 8, 16, 32 and 64 bit masks. Use more generic BitMask with char ptr for every other case. Solves weird ROOT problem with re-skimming.

File Contents

# Content
1 // $Id: MitAnaDataContLinkDef.h,v 1.7 2009/03/03 18:01:35 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/BitMask.h"
8 #include "MitAna/DataCont/interface/CacheFlag.h"
9 #include "MitAna/DataCont/interface/FastArray.h"
10 #include "MitAna/DataCont/interface/FastArrayBasic.h"
11 #include "MitAna/DataCont/interface/ProcIDRef.h"
12 #include "MitAna/DataCont/interface/RefResolver.h"
13 #include "MitAna/DataCont/interface/Types.h"
14 #endif
15
16 #ifdef __CINT__
17 #pragma link off all globals;
18 #pragma link off all classes;
19 #pragma link off all functions;
20 #pragma link C++ nestedclass;
21 #pragma link C++ nestedtypedef;
22 #pragma link C++ namespace mithep;
23
24 #pragma link C++ class mithep::BaseCollection+;
25
26 #pragma link C++ class mithep::BitMaskT<UChar_t>+;
27 #pragma link C++ class mithep::BitMaskT<UShort_t>+;
28 #pragma link C++ class mithep::BitMaskT<UInt_t>+;
29 #pragma link C++ class mithep::BitMask<6>+;
30 #pragma link C++ class mithep::BitMaskT<ULong64_t>+;
31 #pragma link C++ class mithep::BitMask<16>+;
32 #pragma link C++ class mithep::BitMask<32>+;
33 #pragma link C++ typedef mithep::BitMask8;
34 #pragma link C++ typedef mithep::BitMask16;
35 #pragma link C++ typedef mithep::BitMask32;
36 #pragma link C++ typedef mithep::BitMask48;
37 #pragma link C++ typedef mithep::BitMask64;
38 #pragma link C++ typedef mithep::BitMask128;
39 #pragma link C++ typedef mithep::BitMask256;
40
41 #pragma link C++ class mithep::CacheFlag-;
42 #pragma link C++ class mithep::RefResolver+;
43 #pragma link C++ class mithep::ProcIDRef-;
44
45 #pragma link C++ class mithep::Collection<mithep::ProcIDRef>+;
46 #pragma link C++ class mithep::FastArray<mithep::ProcIDRef>-;
47 #pragma link C++ class mithep::FastArrayBasic<Double_t>-;
48 #pragma link C++ class mithep::FastArrayBasic<Double32_t,kTRUE>-;
49 #pragma link C++ class mithep::FastArrayBasic<Int_t>-;
50 #pragma link C++ class mithep::FastArrayBasic<UInt_t>-;
51 #pragma link C++ typedef mithep::FArrDouble;
52 #pragma link C++ typedef mithep::FArrDouble32;
53 #pragma link C++ typedef mithep::FArrInt;
54 #pragma link C++ typedef mithep::FArrUInt;
55 #endif