Loading [MathJax]/extensions/tex2jax.js
The Gaudi Framework  v31r0 (aeb156f0)
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
GaudiGSL.cpp
Go to the documentation of this file.
1 // ============================================================================
2 // local
3 #include "GaudiGSL/GaudiGSL.h"
4 
5 // ============================================================================
13 // ============================================================================
14 
15 // ============================================================================
18 // ============================================================================
19 namespace {
20  static const IGslSvc* s_gslSvc = nullptr;
21 }
22 // ============================================================================
23 
24 // ============================================================================
28 // ============================================================================
29 const IGslSvc* GaudiGSL::gslSvc() { return s_gslSvc; }
30 // ============================================================================
31 
32 // ============================================================================
36 // ============================================================================
37 const IGslSvc* GaudiGSL::setGslSvc( const IGslSvc* value ) {
38  s_gslSvc = value;
39  return gslSvc();
40 }
41 // ============================================================================
42 
43 // ============================================================================
44 // The END
45 // ============================================================================
static const IGslSvc * setGslSvc(const IGslSvc *value)
set new value for static Gaudi GSL Service
Definition: GaudiGSL.cpp:37
static const IGslSvc * gslSvc()
static accessor to Gaudi GSL Service
Definition: GaudiGSL.cpp:29
The abstract interface to "deal" with GNU Scientific Library (GLS) The main task is the error handlin...
Definition: IGslSvc.h:16