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::PindiodeSimHit+; // checksum=0xc3c30fde, version=2
9#pragma link C++ class Belle2::PindiodeHit+; // checksum=0x10c7f6cf, version=1
10
11#pragma read \
12 sourceClass="Belle2::PindiodeSimHit" \
13 source="TVector3 m_Momentum" \
14 version="[1]" \
15 targetClass="Belle2::PindiodeSimHit" \
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::PindiodeSimHit" \
22 source="TVector3 m_Position" \
23 version="[1]" \
24 targetClass="Belle2::PindiodeSimHit" \
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#endif