Loading [MathJax]/extensions/tex2jax.js
The Gaudi Framework  master (d98a2936)
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
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
Gaudi::Algorithm::service
SmartIF< IService > service(std::string_view name, const bool createIf=true, const bool quiet=false) const
Return a pointer to the service identified by name (or "type/name")
Definition: Algorithm.cpp:627
GaudiPartProp.decorators.std
std
Definition: decorators.py:32
ISvcLocator
Definition: ISvcLocator.h:42
Algorithm
Alias for backward compatibility.
Definition: Algorithm.h:58
StatusCode
Definition: StatusCode.h:64
endmsg
MsgStream & endmsg(MsgStream &s)
MsgStream Modifier: endmsg. Calls the output method of the MsgStream.
Definition: MsgStream.h:198
History::execute
StatusCode execute() override
Definition: History.cpp:35
History.h
History::m_histSvc
SmartIF< IHistorySvc > m_histSvc
Definition: History.h:17
StatusCode::SUCCESS
constexpr static const auto SUCCESS
Definition: StatusCode.h:99
ConditionsStallTest.name
name
Definition: ConditionsStallTest.py:77
DECLARE_COMPONENT
#define DECLARE_COMPONENT(type)
Definition: PluginServiceV1.h:45
StatusCode::FAILURE
constexpr static const auto FAILURE
Definition: StatusCode.h:100
History
Definition: History.h:16