diff --git a/LArCalorimeter/LArBadChannelTool/LArBadChannelTool/LArBadChannelDBTools.h b/LArCalorimeter/LArBadChannelTool/LArBadChannelTool/LArBadChannelDBTools.h index 2053ed2633c8d9e968f6d129e60f5c89b716d902..fdc38c0395281ca45c208b19c11874e3f3cdeb8e 100644 --- a/LArCalorimeter/LArBadChannelTool/LArBadChannelTool/LArBadChannelDBTools.h +++ b/LArCalorimeter/LArBadChannelTool/LArBadChannelTool/LArBadChannelDBTools.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #ifndef LArBadChannelDBTools_H @@ -72,10 +72,10 @@ namespace LArBadChannelDBTools { } std::vector<BadChanEntry> - readBadChan( const AthenaAttributeList& attrList, MsgStream& log); + readBadChan( const coral::AttributeList& attrList, MsgStream& log); std::vector<BadFebEntry> - readBadFeb( const AthenaAttributeList& attrList, MsgStream& log); + readBadFeb( const coral::AttributeList& attrList, MsgStream& log); } #endif diff --git a/LArCalorimeter/LArBadChannelTool/src/LArBadChannelCondAlg.cxx b/LArCalorimeter/LArBadChannelTool/src/LArBadChannelCondAlg.cxx index 12604f7cbe54e72e51b2a18acffa0e4a13f7910f..146969ad38da73065097106e8e595d8d3a96a12c 100644 --- a/LArCalorimeter/LArBadChannelTool/src/LArBadChannelCondAlg.cxx +++ b/LArCalorimeter/LArBadChannelTool/src/LArBadChannelCondAlg.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2018 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #include "LArBadChannelTool/LArBadChannelCondAlg.h" @@ -70,7 +70,7 @@ StatusCode LArBadChannelCondAlg::execute() { CondAttrListCollection::const_iterator chanIt_e=attrListColl->end(); for (;chanIt!=chanIt_e;++chanIt) { - const AthenaAttributeList& attrList( chanIt->second); + const coral::AttributeList& attrList = chanIt->second; const coral::Blob& blob = attrList["Blob"].data<coral::Blob>(); unsigned int chanSize = attrList["ChannelSize"].data<unsigned int>(); unsigned int stateSize = attrList["StatusWordSize"].data<unsigned int>(); diff --git a/LArCalorimeter/LArBadChannelTool/src/LArBadChannelDBTools.cxx b/LArCalorimeter/LArBadChannelTool/src/LArBadChannelDBTools.cxx index 236cb55e9911ae6fde97b151256f0359ff4a3049..2ac49686469f97049c61c43204d7070e114f2d49 100644 --- a/LArCalorimeter/LArBadChannelTool/src/LArBadChannelDBTools.cxx +++ b/LArCalorimeter/LArBadChannelTool/src/LArBadChannelDBTools.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #include "LArBadChannelTool/LArBadChannelDBTools.h" @@ -139,7 +139,7 @@ namespace LArBadChannelDBTools { } std::vector<BadChanEntry> - readBadChan( const AthenaAttributeList& attrList, MsgStream& log) + readBadChan( const coral::AttributeList& attrList, MsgStream& log) { const coral::Blob& blob = attrList["Blob"].data<coral::Blob>(); unsigned int chanSize = attrList["ChannelSize"].data<unsigned int>(); @@ -153,7 +153,7 @@ namespace LArBadChannelDBTools { } std::vector<BadFebEntry> - readBadFeb( const AthenaAttributeList& attrList, MsgStream& log) + readBadFeb( const coral::AttributeList& attrList, MsgStream& log) { const coral::Blob& blob = attrList["Blob"].data<coral::Blob>(); unsigned int chanSize = attrList["ChannelSize"].data<unsigned int>();