diff --git a/Reconstruction/EventShapes/EventShapeTPCnv/src/EventShapeStoreCnv_p1.cxx b/Reconstruction/EventShapes/EventShapeTPCnv/src/EventShapeStoreCnv_p1.cxx index 7414463fb72022c6f05c43fb4dda9201f7e04d77..479fc40bfc78af086ebf062983d356eaed091891 100644 --- a/Reconstruction/EventShapes/EventShapeTPCnv/src/EventShapeStoreCnv_p1.cxx +++ b/Reconstruction/EventShapes/EventShapeTPCnv/src/EventShapeStoreCnv_p1.cxx @@ -16,7 +16,7 @@ EventShapeStoreCnv_p1::transToPers(const EventShapeStore* transObj, EventShapeStore_p1* persObj, MsgStream &reporter ) { - reporter << MSG::DEBUG << "EventShapeStoreCnv_p1 toPers()" << endreq; + reporter << MSG::DEBUG << "EventShapeStoreCnv_p1 toPers()" << endmsg; for ( EventShapeStore::store_Citer it = transObj->m_store.begin(); it != transObj->m_store.end(); ++it ) @@ -31,7 +31,7 @@ EventShapeStoreCnv_p1::persToTrans(const EventShapeStore_p1* persObj, EventShapeStore* transObj, MsgStream &reporter ) { - reporter << MSG::DEBUG << "EventShapeStoreCnv toTrans()" << endreq; + reporter << MSG::DEBUG << "EventShapeStoreCnv toTrans()" << endmsg; // make coverity happy // if ( ! bool(transObj) ) @@ -39,7 +39,7 @@ EventShapeStoreCnv_p1::persToTrans(const EventShapeStore_p1* persObj, transObj->m_store.clear(); if ( persObj->m_mtypV.size() != persObj->m_mvalV.size() ) - reporter << MSG::WARNING << "EventShapeStore_p1 different sizes !!" << endreq; + reporter << MSG::WARNING << "EventShapeStore_p1 different sizes !!" << endmsg; for ( unsigned int i = 0; i < persObj->m_mtypV.size(); ++i ) transObj->insert(EventShapes::EventShapeType(persObj->m_mtypV.at(i)), persObj->m_mvalV.at(i)); diff --git a/Reconstruction/EventShapes/EventShapeTPCnv/src/EventShapeStoreCnv_p2.cxx b/Reconstruction/EventShapes/EventShapeTPCnv/src/EventShapeStoreCnv_p2.cxx index caf50540a7f0bcd4586ca690e6a26f8ca3099229..7f976f3d973d2ec39df2e4fcaa3a3907279977a6 100644 --- a/Reconstruction/EventShapes/EventShapeTPCnv/src/EventShapeStoreCnv_p2.cxx +++ b/Reconstruction/EventShapes/EventShapeTPCnv/src/EventShapeStoreCnv_p2.cxx @@ -16,7 +16,7 @@ EventShapeStoreCnv_p2::transToPers(const EventShapeStore* transObj, EventShapeStore_p2* persObj, MsgStream &reporter ) { - reporter << MSG::DEBUG << "EventShapeStoreCnv_p2 toPers()" << endreq; + reporter << MSG::DEBUG << "EventShapeStoreCnv_p2 toPers()" << endmsg; persObj->m_mvalM.resize(transObj->m_store.size()); // for ( EventShapeStore::store_Citer it = transObj->m_store.begin(); @@ -35,7 +35,7 @@ EventShapeStoreCnv_p2::persToTrans(const EventShapeStore_p2* persObj, EventShapeStore* transObj, MsgStream &reporter ) { - reporter << MSG::DEBUG << "EventShapeStoreCnv toTrans()" << endreq; + reporter << MSG::DEBUG << "EventShapeStoreCnv toTrans()" << endmsg; // make coverity happy // if ( ! bool(transObj) ) @@ -43,7 +43,7 @@ EventShapeStoreCnv_p2::persToTrans(const EventShapeStore_p2* persObj, transObj->m_store.clear(); // if ( persObj->m_mtypV.size() != persObj->m_mvalV.size() ) - // reporter << MSG::WARNING << "EventShapeStore_p2 different sizes !!" << endreq; + // reporter << MSG::WARNING << "EventShapeStore_p2 different sizes !!" << endmsg; std::vector<double> tmp; for ( unsigned int i = 0; i < persObj->m_mtypV.size(); ++i ) // loop through every ES type for type and value vectors