ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/MitAna/DataTree/src/MuonColLinkDef.h
Revision: 1.2
Committed: Mon Mar 22 18:40:17 2010 UTC (15 years, 1 month ago) by bendavid
Content type: text/plain
Branch: MAIN
CVS Tags: Mit_018, Mit_017, Mit_017pre3, Mit_017pre2, Mit_017pre1, Mit_016, Mit_015b, Mit_015a, Mit_015, Mit_014e, Mit_014d, Mit_014c, Mit_014b, Mit_014a, Mit_014, Mit_014pre3, Mit_014pre2, Mit_014pre1, Mit_013d, Mit_013c, Mit_013b, Mit_013a, Mit_013
Changes since 1.1: +10 -1 lines
Log Message:
Explicitly store muon charge and momentum

File Contents

# Content
1 // $Id: MuonColLinkDef.h,v 1.1 2009/06/15 15:00:15 loizides Exp $
2
3 #ifndef MITANA_DATATREE_MUONCOLLINKDEF_H
4 #define MITANA_DATATREE_MUONCOLLINKDEF_H
5
6 #include "MitAna/DataCont/interface/Ref.h"
7 #include "MitAna/DataTree/interface/MuonCol.h"
8 #endif
9
10 #ifdef __CINT__
11 #pragma link off all globals;
12 #pragma link off all classes;
13 #pragma link off all functions;
14 #pragma link C++ nestedclass;
15 #pragma link C++ nestedtypedef;
16 #pragma link C++ namespace mithep;
17
18 #pragma read \
19 sourceClass="mithep::Muon" \
20 version="[-1]" \
21 source="dummysource" \
22 targetClass="mithep::Muon" \
23 target="fCharge" \
24 code="{ fCharge = -99; }" \
25
26
27 #pragma link C++ class mithep::Muon+;
28 #pragma link C++ enum mithep::Muon::EClassType;
29 #pragma link C++ class mithep::Collection<mithep::Muon>+;
30 #pragma link C++ class mithep::Array<mithep::Muon>+;
31 #pragma link C++ class mithep::ObjArray<mithep::Muon>+;
32 #pragma link C++ class mithep::Ref<mithep::Muon>+;
33 #pragma link C++ typedef mithep::MuonCol;
34 #pragma link C++ typedef mithep::MuonArr;
35 #pragma link C++ typedef mithep::MuonOArr;
36 #endif