Belle II Software development
linkdef.h
1#ifdef __CINT__
2
3#pragma link off all globals;
4#pragma link off all classes;
5#pragma link off all functions;
6#pragma link C++ nestedclasses;
7
8#pragma link C++ class Belle2::BgoSimHit+; // checksum=0x7d02ed92, version=2
9#pragma link C++ class Belle2::BgoHit+; // checksum=0x3eed7dc7, version=2
10
11#pragma read \
12 sourceClass="Belle2::BgoHit" \
13 source="TVector3 m_Momentum" \
14 version="[1]" \
15 targetClass="Belle2::BgoHit" \
16 target="m_Momentum" \
17 include="TVector3.h" \
18 code="{ m_Momentum.SetXYZ(onfile.m_Momentum.X(), onfile.m_Momentum.Y(), onfile.m_Momentum.Z()); }" \
19
20#pragma read \
21 sourceClass="Belle2::BgoHit" \
22 source="TVector3 m_Position" \
23 version="[1]" \
24 targetClass="Belle2::BgoHit" \
25 target="m_Position" \
26 include="TVector3.h" \
27 code="{ m_Position.SetXYZ(onfile.m_Position.X(), onfile.m_Position.Y(), onfile.m_Position.Z()); }" \
28
29#pragma read \
30 sourceClass="Belle2::BgoSimHit" \
31 source="TVector3 m_Momentum" \
32 version="[1]" \
33 targetClass="Belle2::BgoSimHit" \
34 target="m_Momentum" \
35 include="TVector3.h" \
36 code="{ m_Momentum.SetXYZ(onfile.m_Momentum.X(), onfile.m_Momentum.Y(), onfile.m_Momentum.Z()); }" \
37
38#pragma read \
39 sourceClass="Belle2::BgoSimHit" \
40 source="TVector3 m_Position" \
41 version="[1]" \
42 targetClass="Belle2::BgoSimHit" \
43 target="m_Position" \
44 include="TVector3.h" \
45 code="{ m_Position.SetXYZ(onfile.m_Position.X(), onfile.m_Position.Y(), onfile.m_Position.Z()); }" \
46
47#endif