The Gaudi Framework  master (37c0b60a)
History.cpp
Go to the documentation of this file.
1 /***********************************************************************************\
2 * (c) Copyright 1998-2019 CERN for the benefit of the LHCb and ATLAS collaborations *
3 * *
4 * This software is distributed under the terms of the Apache version 2 licence, *
5 * copied verbatim in the file "LICENSE". *
6 * *
7 * In applying this licence, CERN does not waive the privileges and immunities *
8 * granted to it by virtue of its status as an Intergovernmental Organization *
9 * or submit itself to any jurisdiction. *
10 \***********************************************************************************/
11 #include "History.h"
12 
13 // Static Factory declaration
15 
16 
18 History::History( const std::string& name, ISvcLocator* pSvcLocator ) : Algorithm( name, pSvcLocator ) {}
19 
20 /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
21 
23 
24  m_histSvc = service( "HistorySvc" );
25  if ( !m_histSvc ) {
26  error() << "Could not get historySvc" << endmsg;
27  return StatusCode::FAILURE;
28  }
29  info() << "got historySvc: " << m_histSvc->name() << endmsg;
30  return StatusCode::SUCCESS;
31 }
32 
33 /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
34 
History::initialize
StatusCode initialize() override
Definition: History.cpp:22
ISvcLocator
Definition: ISvcLocator.h:46
Algorithm
Alias for backward compatibility.
Definition: Algorithm.h:58
StatusCode
Definition: StatusCode.h:65
endmsg
MsgStream & endmsg(MsgStream &s)
MsgStream Modifier: endmsg. Calls the output method of the MsgStream.
Definition: MsgStream.h:202
History::execute
StatusCode execute() override
Definition: History.cpp:35
History.h
History::m_histSvc
SmartIF< IHistorySvc > m_histSvc
Definition: History.h:18
StatusCode::SUCCESS
constexpr static const auto SUCCESS
Definition: StatusCode.h:100
ConditionsStallTest.name
name
Definition: ConditionsStallTest.py:77
std
STL namespace.
DECLARE_COMPONENT
#define DECLARE_COMPONENT(type)
Definition: PluginServiceV1.h:46
Gaudi::Algorithm::service
StatusCode service(std::string_view name, T *&psvc, bool createIf=true) const
Access a service by name, creating it if it doesn't already exist.
Definition: Algorithm.h:206
StatusCode::FAILURE
constexpr static const auto FAILURE
Definition: StatusCode.h:101
History
Definition: History.h:17