Revision: | 1.3 |
Committed: | Fri Mar 11 04:03:00 2011 UTC (14 years, 1 month ago) by bendavid |
Content type: | text/plain |
Branch: | MAIN |
CVS Tags: | Mit_032, Mit_031, Mit_025c_branch2, Mit_025c_branch1, Mit_030, Mit_029c, Mit_029b, Mit_030_pre1, Mit_029a, Mit_029, Mit_029_pre1, Mit_028a, Mit_025c_branch0, Mit_028, Mit_027a, Mit_027, Mit_026, Mit_025e, Mit_025d, Mit_025c, Mit_025b, Mit_025a, Mit_025, Mit_025pre2, Mit_024b, Mit_025pre1, Mit_024a, Mit_024, Mit_023, Mit_022a, Mit_022, Mit_020d, TMit_020d, Mit_020c, Mit_021, Mit_021pre2, Mit_021pre1, Mit_020b, Mit_020a, Mit_020, Mit_020pre1, HEAD |
Branch point for: | Mit_025c_branch |
Changes since 1.2: | +8 -1 lines |
Log Message: | even more unspeakable hacks to workaround even more unspeakable cint bugs |
# | Content |
---|---|
1 | // $Id: ElectronColLinkDef.h,v 1.2 2009/10/30 14:16:01 bendavid Exp $ |
2 | |
3 | #ifndef MITANA_DATATREE_ELECTRONCOLLINKDEF_H |
4 | #define MITANA_DATATREE_ELECTRONCOLLINKDEF_H |
5 | |
6 | #include "MitAna/DataCont/interface/Ref.h" |
7 | #include "MitAna/DataTree/interface/ElectronCol.h" |
8 | #endif |
9 | |
10 | #ifndef __CINT__ |
11 | # define _R__UNIQUEIDENTIFIER_ ElectronCol |
12 | # define _R__JOIN3_(F,X,Y) _NAME3_(F,X,Y) |
13 | # undef _R__UNIQUE_ |
14 | # define _R__UNIQUE_(X) _R__JOIN3_( _R__UNIQUEIDENTIFIER_,X,__LINE__) |
15 | #endif |
16 | |
17 | #ifdef __CINT__ |
18 | #pragma link off all globals; |
19 | #pragma link off all classes; |
20 | #pragma link off all functions; |
21 | #pragma link C++ nestedclass; |
22 | #pragma link C++ nestedtypedef; |
23 | #pragma link C++ namespace mithep; |
24 | |
25 | #pragma read \ |
26 | sourceClass="mithep::Electron" \ |
27 | version="[-2]" \ |
28 | source="dummysource" \ |
29 | targetClass="mithep::Electron" \ |
30 | target="fCharge" \ |
31 | code="{ fCharge = -99; }" \ |
32 | |
33 | |
34 | #pragma link C++ class mithep::Electron+; |
35 | #pragma link C++ class mithep::Collection<mithep::Electron>+; |
36 | #pragma link C++ class mithep::Array<mithep::Electron>+; |
37 | #pragma link C++ class mithep::ObjArray<mithep::Electron>+; |
38 | #pragma link C++ class mithep::Ref<mithep::Electron>+; |
39 | #pragma link C++ typedef mithep::ElectronCol; |
40 | #pragma link C++ typedef mithep::ElectronArr; |
41 | #pragma link C++ typedef mithep::ElectronOArr; |
42 | #endif |