ATLAS Offline Software
Loading...
Searching...
No Matches
WeightMatrixCnv_p1.cxx
Go to the documentation of this file.
1/*
2 Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
3*/
4
5//-----------------------------------------------------------------------------
6//
7// file: WeightMatrixCnv_p1.cxx
8// author: Lukasz Janyst <ljanyst@cern.ch>
9//
10//-----------------------------------------------------------------------------
11/*
12#include "TrkEventTPCnv/TrkEventPrimitives/WeightMatrixCnv_p1.h"
13
14void WeightMatrixCnv_p1 :: persToTrans( const Trk :: WeightMatrix_p1 *persObj,
15 Trk :: WeightMatrix *transObj,
16 MsgStream &log ) const
17{
18 transObj->m = persObj->m_mat;
19 transObj->nrow = persObj->m_nrow;
20 transObj->size = persObj->m_mat.size();
21}
22
23void WeightMatrixCnv_p1 :: transToPers( const Trk :: WeightMatrix *transObj,
24 Trk :: WeightMatrix_p1 *persObj,
25 MsgStream &log ) const
26{
27 persObj->m_mat = transObj->m;
28 persObj->m_nrow = transObj->nrow;
29}
30
31
32*/