1 |
bendavid |
1.13 |
// $Id: MitAnaDataContLinkDef.h,v 1.12 2010/06/29 15:51:53 bendavid 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 |
loizides |
1.8 |
#include "MitAna/DataCont/interface/BitMask.h"
|
8 |
|
|
#include "MitAna/DataCont/interface/CacheFlag.h"
|
9 |
bendavid |
1.4 |
#include "MitAna/DataCont/interface/FastArray.h"
|
10 |
|
|
#include "MitAna/DataCont/interface/FastArrayBasic.h"
|
11 |
loizides |
1.10 |
#include "MitAna/DataCont/interface/ObjArray.h"
|
12 |
bendavid |
1.3 |
#include "MitAna/DataCont/interface/ProcIDRef.h"
|
13 |
loizides |
1.5 |
#include "MitAna/DataCont/interface/RefResolver.h"
|
14 |
bendavid |
1.11 |
#include "MitAna/DataCont/interface/RunLumiRangeMap.h"
|
15 |
|
|
#include "MitAna/DataCont/interface/RunLumiSet.h"
|
16 |
loizides |
1.6 |
#include "MitAna/DataCont/interface/Types.h"
|
17 |
loizides |
1.1 |
#endif
|
18 |
|
|
|
19 |
bendavid |
1.13 |
|
20 |
|
|
// typedef UInt_t unsignedint;
|
21 |
|
|
// typedef UChar_t unsignedchar;
|
22 |
|
|
// typedef UShort_t unsignedshort;
|
23 |
|
|
// typedef ULong64_t unsignedlonglong;
|
24 |
|
|
|
25 |
|
|
|
26 |
loizides |
1.1 |
#ifdef __CINT__
|
27 |
|
|
#pragma link off all globals;
|
28 |
|
|
#pragma link off all classes;
|
29 |
|
|
#pragma link off all functions;
|
30 |
|
|
#pragma link C++ nestedclass;
|
31 |
|
|
#pragma link C++ nestedtypedef;
|
32 |
|
|
#pragma link C++ namespace mithep;
|
33 |
|
|
|
34 |
|
|
#pragma link C++ class mithep::BaseCollection+;
|
35 |
loizides |
1.8 |
|
36 |
|
|
#pragma link C++ class mithep::BitMaskT<UChar_t>+;
|
37 |
|
|
#pragma link C++ class mithep::BitMaskT<UShort_t>+;
|
38 |
|
|
#pragma link C++ class mithep::BitMaskT<UInt_t>+;
|
39 |
|
|
#pragma link C++ class mithep::BitMask<6>+;
|
40 |
|
|
#pragma link C++ class mithep::BitMaskT<ULong64_t>+;
|
41 |
|
|
#pragma link C++ class mithep::BitMask<16>+;
|
42 |
|
|
#pragma link C++ class mithep::BitMask<32>+;
|
43 |
|
|
#pragma link C++ typedef mithep::BitMask8;
|
44 |
|
|
#pragma link C++ typedef mithep::BitMask16;
|
45 |
|
|
#pragma link C++ typedef mithep::BitMask32;
|
46 |
|
|
#pragma link C++ typedef mithep::BitMask48;
|
47 |
|
|
#pragma link C++ typedef mithep::BitMask64;
|
48 |
|
|
#pragma link C++ typedef mithep::BitMask128;
|
49 |
bendavid |
1.13 |
#pragma link C++ typedef mithep::BitMask256;
|
50 |
loizides |
1.8 |
|
51 |
|
|
#pragma link C++ class mithep::CacheFlag-;
|
52 |
loizides |
1.5 |
#pragma link C++ class mithep::RefResolver+;
|
53 |
bendavid |
1.3 |
#pragma link C++ class mithep::ProcIDRef-;
|
54 |
loizides |
1.8 |
|
55 |
bendavid |
1.3 |
#pragma link C++ class mithep::Collection<mithep::ProcIDRef>+;
|
56 |
bendavid |
1.4 |
#pragma link C++ class mithep::FastArray<mithep::ProcIDRef>-;
|
57 |
bendavid |
1.7 |
#pragma link C++ class mithep::FastArrayBasic<Double_t>-;
|
58 |
|
|
#pragma link C++ class mithep::FastArrayBasic<Double32_t,kTRUE>-;
|
59 |
loizides |
1.6 |
#pragma link C++ class mithep::FastArrayBasic<Int_t>-;
|
60 |
bendavid |
1.4 |
#pragma link C++ class mithep::FastArrayBasic<UInt_t>-;
|
61 |
loizides |
1.9 |
#pragma link C++ class mithep::FastArrayBasic<Short_t>-;
|
62 |
|
|
#pragma link C++ class mithep::FastArrayBasic<UShort_t>-;
|
63 |
|
|
#pragma link C++ class mithep::FastArrayBasic<Char_t>-;
|
64 |
|
|
#pragma link C++ class mithep::FastArrayBasic<UChar_t>-;
|
65 |
loizides |
1.6 |
#pragma link C++ typedef mithep::FArrDouble;
|
66 |
|
|
#pragma link C++ typedef mithep::FArrDouble32;
|
67 |
|
|
#pragma link C++ typedef mithep::FArrInt;
|
68 |
|
|
#pragma link C++ typedef mithep::FArrUInt;
|
69 |
loizides |
1.10 |
|
70 |
|
|
#pragma link C++ class mithep::Collection<TObject>+;
|
71 |
|
|
#pragma link C++ class mithep::ObjArray<TObject>+;
|
72 |
bendavid |
1.11 |
|
73 |
bendavid |
1.12 |
#pragma link C++ class std::pair<UInt_t,UInt_t>+;
|
74 |
|
|
#pragma link C++ class std::set<std::pair<UInt_t,UInt_t> >+;
|
75 |
|
|
|
76 |
|
|
#pragma link C++ typedef mithep::RunLumiSet::RunLumiPairType;
|
77 |
|
|
#pragma link C++ typedef mithep::RunLumiSet::SetType;
|
78 |
|
|
|
79 |
bendavid |
1.11 |
#pragma link C++ class mithep::RunLumiRangeMap+;
|
80 |
|
|
#pragma link C++ class mithep::RunLumiSet+;
|
81 |
bendavid |
1.12 |
|
82 |
loizides |
1.1 |
#endif
|