Skip to content
Snippets Groups Projects
Commit 93908ad3 authored by Naoko.kanaya Omachi's avatar Naoko.kanaya Omachi Committed by Graeme Stewart
Browse files

fix major warnings and improve a debug message (ATR10153) (TrigCaloRec-00-04-33)

	* tagged as TrigCaloRec-00-04-33
	* fix major warning (use AthAlgTool instead AlgTool)

2015-01-28 Denis Damazio
	* tagged as TrigCaloRec-00-04-32
	* improvements to mem management of Aux Container
parent a02248b1
No related merge requests found
......@@ -17,7 +17,7 @@
#define TRIGCALOREC_IALGTOOLEFCALO_H
#include "GaudiKernel/IAlgTool.h"
#include "GaudiKernel/AlgTool.h"
#include "AthenaBaseComps/AthAlgTool.h"
#include "GaudiKernel/IProperty.h"
#include "GaudiKernel/ToolHandle.h"
#include "GaudiKernel/ServiceHandle.h"
......@@ -31,7 +31,7 @@ class CaloCellContainer;
static const InterfaceID IID_IAlgToolEFCalo("IAlgToolEFCalo",1,0);
class IAlgToolEFCalo: public virtual IAlgTool, public AlgTool {
class IAlgToolEFCalo: public virtual IAlgTool, public AthAlgTool {
public:
......@@ -41,7 +41,7 @@ class IAlgToolEFCalo: public virtual IAlgTool, public AlgTool {
public:
IAlgToolEFCalo(const std::string & type, const std::string & name, const IInterface* parent) : AlgTool(type,name,parent){
IAlgToolEFCalo(const std::string & type, const std::string & name, const IInterface* parent) : AthAlgTool(type,name,parent){
declareInterface<IAlgToolEFCalo>(this);
}
......
......@@ -22,6 +22,7 @@ use AthenaMonitoring AthenaMonitoring-* Control
use TrigCaloEvent TrigCaloEvent-* Trigger/TrigEvent
use CLIDSvc CLIDSvc-* Control
use AthenaKernel AthenaKernel-* Control
use AthenaBaseComps AthenaBaseComps-* Control
use xAODCaloEvent xAODCaloEvent-* Event/xAOD
use IRegionSelector IRegionSelector-* DetectorDescription
# =====================================================================
......
......@@ -180,7 +180,7 @@ HLT::ErrorCode TrigFullCaloCellMaker::hltExecute( std::vector<std::vector<HLT::T
// CACHING
if (msgLvl() <= MSG::DEBUG)
msg() << MSG::DEBUG << "Executing this EFMissingET " << name() << " in cached mode" << endreq;
msg() << MSG::DEBUG << "Executing TrigFullCaloCellMaker/" << name() << " in cached mode" << endreq;
// get all input TEs (for seeding relation of navigation structure)
HLT::TEVec allTEs;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment