ATLAS Offline Software
Loading...
Searching...
No Matches
AFP_SIDLocRecoEventCnv_p1.cxx
Go to the documentation of this file.
1/*
2 Copyright (C) 2002-2020 CERN for the benefit of the ATLAS collaboration
3*/
4
6
9
11const {
12 log << MSG::DEBUG << "AFP_SIDLocRecoEventCnv_p1::persToTrans called " << endmsg;
13
14 *transObj = AFP_SIDLocRecoEvent (persObj->m_iAlgoNum,
15 persObj->m_nStationID,
16 persObj->m_x,
17 persObj->m_y,
18 persObj->m_z,
19 persObj->m_x_slope,
20 persObj->m_y_slope,
21 persObj->m_z_slope,
22 persObj->m_nHits,
23 persObj->m_nHoles,
24 persObj->m_fChi2);
25
26
27
28
29}
30
31
33const {
34 log << MSG::DEBUG << "AFP_SIDLocRecoEventCnv_p1::transToPers called " << endmsg;
35
36 persObj->m_iAlgoNum = transObj->getAlgoNum();
37 persObj->m_nStationID = transObj->getStationID();
38
39 persObj->m_x = transObj->getXposition();
40 persObj->m_y = transObj->getYposition();
41 persObj->m_z = transObj->getZposition();
42 persObj->m_x_slope = transObj->getXslope();
43 persObj->m_y_slope = transObj->getYslope();
44 persObj->m_z_slope = transObj->getZslope();
45
46 persObj->m_nHits = transObj->getNHits();
47 persObj->m_nHoles = transObj->getNHoles();
48 persObj->m_fChi2 = transObj->getChi2();
49
50
51}
AFP_SIDLocRecoEvent
#define endmsg
virtual void persToTrans(const AFP_SIDLocRecoEvent_p1 *persObj, AFP_SIDLocRecoEvent *transObj, MsgStream &log) const override
virtual void transToPers(const AFP_SIDLocRecoEvent *transObj, AFP_SIDLocRecoEvent_p1 *persObj, MsgStream &log) const override