ATLAS Offline Software
Tracking
TrkEventCnv
TrkEventTPCnv
src
TrkEventPrimitives
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
14
void 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
23
void 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
*/
Generated on Thu Nov 7 2024 21:31:51 for ATLAS Offline Software by
1.8.18