From ae4920316810183ffd97663c02797d80cbd9c7c9 Mon Sep 17 00:00:00 2001
From: Scott Snyder <scott.snyder@cern.ch>
Date: Thu, 11 Aug 2016 16:42:29 +0200
Subject: [PATCH] 'endreq -> endmsg.  messageService -> msgSvc.'
 (EventShapeAthenaPool-00-00-01-03)

	* Tagging EventShapeAthenaPool-00-00-01-03.
	* endreq -> endmsg.  messageService -> msgSvc.
---
 .../EventShapes/EventShapeAthenaPool/cmt/requirements     | 1 -
 .../EventShapeAthenaPool/src/EventShapeStoreCnv.cxx       | 8 ++++----
 2 files changed, 4 insertions(+), 5 deletions(-)

diff --git a/Reconstruction/EventShapes/EventShapeAthenaPool/cmt/requirements b/Reconstruction/EventShapes/EventShapeAthenaPool/cmt/requirements
index 94dc65d7282..8145de4beb1 100755
--- a/Reconstruction/EventShapes/EventShapeAthenaPool/cmt/requirements
+++ b/Reconstruction/EventShapes/EventShapeAthenaPool/cmt/requirements
@@ -17,4 +17,3 @@ branches EventShapeAthenaPool src
 
 apply_pattern poolcnv typesWithNamespace=$(eventShapeAthenaPool_poolCnvTypes) \
    files="-s=${EventShapeEvent_root}/EventShapeEvent EventShapeStore.h"
-
diff --git a/Reconstruction/EventShapes/EventShapeAthenaPool/src/EventShapeStoreCnv.cxx b/Reconstruction/EventShapes/EventShapeAthenaPool/src/EventShapeStoreCnv.cxx
index af814f75830..16898ba5348 100644
--- a/Reconstruction/EventShapes/EventShapeAthenaPool/src/EventShapeStoreCnv.cxx
+++ b/Reconstruction/EventShapes/EventShapeAthenaPool/src/EventShapeStoreCnv.cxx
@@ -9,8 +9,8 @@
 
 EventShapeStore_PERS* EventShapeStoreCnv::createPersistent(EventShapeStore* transObj)
 {
-  MsgStream report( messageService(), "EventShapeStoreConverter" );
-  report << MSG::INFO << "Writing EventShapeStore_p1" << endreq; 
+  MsgStream report( msgSvc(), "EventShapeStoreConverter" );
+  report << MSG::INFO << "Writing EventShapeStore_p1" << endmsg; 
   EventShapeStoreCnv_p1   TPconverter;
   EventShapeStore_PERS *persObj = TPconverter.createPersistent( transObj, report );
   
@@ -25,8 +25,8 @@ EventShapeStore* EventShapeStoreCnv::createTransient()
       EventShapeStoreCnv_p1   TPconverter;
       // using auto_ptr ensures deletion of the persistent object
       std::auto_ptr<EventShapeStore_p1> shapestore( poolReadObject< EventShapeStore_p1 >() );
-      MsgStream report( messageService(), "EventShapeStoreCnv" );
-      report << MSG::INFO << "Reading EventShapeStore_p1" << endreq; 
+      MsgStream report( msgSvc(), "EventShapeStoreCnv" );
+      report << MSG::INFO << "Reading EventShapeStore_p1" << endmsg; 
       return TPconverter.createTransient( shapestore.get(), report );
     }
   throw std::runtime_error("Unsupported persistent version of EventShapeStore");
-- 
GitLab