ATLAS Offline Software
TrkAlignDBTool.cxx
Go to the documentation of this file.
1 /*
2  Copyright (C) 2002-2022 CERN for the benefit of the ATLAS collaboration
3 */
4 
5 // TrkAlignDBTool.cxx
6 
7 #include "GaudiKernel/StatusCode.h"
8 #include "GaudiKernel/MsgStream.h"
9 #include "GaudiKernel/AlgTool.h"
10 
12 
13 namespace Trk {
14 
15  //_______________________________________________________________________
16  TrkAlignDBTool::TrkAlignDBTool(const std::string& type, const std::string& name,
17  const IInterface* parent)
19  {
20  declareInterface<ITrkAlignDBTool>(this);
21 
22  m_logStream = nullptr;
23  }
24 
25  //_______________________________________________________________________
27  = default;
28  //_______________________________________________________________________
30  {
31  msg(MSG::DEBUG) << "initialize() of TrkAlignDBTool" << endmsg;
32 
33  return StatusCode::SUCCESS;
34  }
35 
36  //_______________________________________________________________________
38  {
39  msg(MSG::DEBUG) << "finalize() of TrkAlignDBTool" << endmsg;
40 
41  return StatusCode::SUCCESS;
42  }
43 
44 
45 }
Trk::TrkAlignDBTool::~TrkAlignDBTool
virtual ~TrkAlignDBTool()
Virtual destructor.
TrkAlignDBTool.h
endmsg
#define endmsg
Definition: AnalysisConfig_Ntuple.cxx:63
EL::StatusCode
::StatusCode StatusCode
StatusCode definition for legacy code.
Definition: PhysicsAnalysis/D3PDTools/EventLoop/EventLoop/StatusCode.h:22
Trk::TrkAlignDBTool::finalize
StatusCode finalize()
initialize
Definition: TrkAlignDBTool.cxx:37
test_pyathena.parent
parent
Definition: test_pyathena.py:15
Trk::TrkAlignDBTool::TrkAlignDBTool
TrkAlignDBTool(const std::string &type, const std::string &name, const IInterface *parent)
Constructor.
Definition: TrkAlignDBTool.cxx:16
Trk
Ensure that the ATLAS eigen extensions are properly loaded.
Definition: FakeTrackBuilder.h:9
name
std::string name
Definition: Control/AthContainers/Root/debug.cxx:192
Trk::ITrkAlignDBTool::m_logStream
std::ostream * m_logStream
logfile output stream
Definition: ITrkAlignDBTool.h:55
python.CaloScaleNoiseConfig.type
type
Definition: CaloScaleNoiseConfig.py:78
DEBUG
#define DEBUG
Definition: page_access.h:11
AthCommonMsg< AlgTool >::msg
MsgStream & msg() const
Definition: AthCommonMsg.h:24
AthAlgTool
Definition: AthAlgTool.h:26
Trk::TrkAlignDBTool::initialize
StatusCode initialize()
initialize
Definition: TrkAlignDBTool.cxx:29