From 982b36a5a52988f5e2a1017fda4849d003f41f34 Mon Sep 17 00:00:00 2001 From: Charles Leggett <charles.g.leggett@gmail.com> Date: Tue, 20 Dec 2016 23:51:11 +0100 Subject: [PATCH] endreq -> endmsg, messageService -> msgSvc (AthenaPoolTestAthenaPool-00-00-28) * endreq -> endmsg * messageService() -> msgSvc() * tag AthenaPoolTestAthenaPool-00-00-28 M src/PixelRDOElemLinkVecCnv.cxx M src/PixelRDOElemLinkVecCnv_p1.cxx --- .../src/PixelRDOElemLinkVecCnv.cxx | 10 +++++----- .../src/PixelRDOElemLinkVecCnv_p1.cxx | 4 ++-- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/AtlasTest/DatabaseTest/AthenaPoolTestAthenaPool/src/PixelRDOElemLinkVecCnv.cxx b/AtlasTest/DatabaseTest/AthenaPoolTestAthenaPool/src/PixelRDOElemLinkVecCnv.cxx index 1cc5d37e45d..6cdf413ffe3 100755 --- a/AtlasTest/DatabaseTest/AthenaPoolTestAthenaPool/src/PixelRDOElemLinkVecCnv.cxx +++ b/AtlasTest/DatabaseTest/AthenaPoolTestAthenaPool/src/PixelRDOElemLinkVecCnv.cxx @@ -15,21 +15,21 @@ PixelRDOElemLinkVecCnv::PixelRDOElemLinkVecCnv(ISvcLocator* svcLoc) : PixelRDOElemLinkVecPERS* PixelRDOElemLinkVecCnv::createPersistent(PixelRDOElemLinkVec* trans) { - MsgStream log(messageService(), "PixelRDOElemLinkVecCnv"); - log << MSG::DEBUG << "Writing PixelRDOElemLinkVec_p1" << endreq; + MsgStream log(msgSvc(), "PixelRDOElemLinkVecCnv"); + log << MSG::DEBUG << "Writing PixelRDOElemLinkVec_p1" << endmsg; PixelRDOElemLinkVecPERS* pers=new PixelRDOElemLinkVecPERS(); m_converter_p1.transToPers(trans,pers,log); return pers; } PixelRDOElemLinkVec* PixelRDOElemLinkVecCnv::createTransient() { - MsgStream log(messageService(), "PixelRDOElemLinkVecCnv" ); + MsgStream log(msgSvc(), "PixelRDOElemLinkVecCnv" ); // Search for persistent version to convert - last version first PixelRDOElemLinkVec* trans = 0; if (compareClassGuid(m_guid1)) { trans=new PixelRDOElemLinkVec; log << MSG::DEBUG << "Read PixelRDOElemLinkVec_p1. GUID=" - << m_classID.toString() << endreq; + << m_classID.toString() << endmsg; PixelRDOElemLinkVec_p1* pers=poolReadObject<PixelRDOElemLinkVec_p1>(); m_converter_p1.persToTrans(pers,trans,log); delete pers; @@ -37,7 +37,7 @@ PixelRDOElemLinkVec* PixelRDOElemLinkVecCnv::createTransient() { } else { log << MSG::ERROR << "Unsupported persistent version of PixelRDOElemLinkVec GUID=" - << m_classID.toString() << endreq; + << m_classID.toString() << endmsg; throw std::runtime_error("Unsupported persistent version of PixelRDOElemLinkVec"); } return trans; diff --git a/AtlasTest/DatabaseTest/AthenaPoolTestAthenaPool/src/PixelRDOElemLinkVecCnv_p1.cxx b/AtlasTest/DatabaseTest/AthenaPoolTestAthenaPool/src/PixelRDOElemLinkVecCnv_p1.cxx index 5ff8bce572a..84314989264 100755 --- a/AtlasTest/DatabaseTest/AthenaPoolTestAthenaPool/src/PixelRDOElemLinkVecCnv_p1.cxx +++ b/AtlasTest/DatabaseTest/AthenaPoolTestAthenaPool/src/PixelRDOElemLinkVecCnv_p1.cxx @@ -18,7 +18,7 @@ void PixelRDOElemLinkVecCnv_p1::persToTrans(const PixelRDOElemLinkVec_p1* pers, // log << MSG::ERROR // << "persToTrans: index " << pers->m_pixelRDOs[i].m_contIndex << " " // << pers->m_pixelRDOs[i].m_elementIndex -// << endreq; +// << endmsg; m_elementLinkCnv.persToTrans(&pers->m_pixelRDOs[i], &trans->pixelRDOs()[i], log); } } @@ -36,7 +36,7 @@ void PixelRDOElemLinkVecCnv_p1::transToPers(const PixelRDOElemLinkVec* trans, // log << MSG::ERROR // << "transToPers: index " << MSG::hex // << trans->m_pixelRDOs[i].index() << " " << MSG::dec -// << endreq; +// << endmsg; m_elementLinkCnv.transToPers( &trans->pixelRDOs()[i], &pers->m_pixelRDOs[i], log); } } -- GitLab