Loading [MathJax]/extensions/tex2jax.js
The Gaudi Framework  v31r0 (aeb156f0)
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
HepRndmBaseEngine.h
Go to the documentation of this file.
1 //====================================================================
2 // CLHEP Basic Random Engine definition file
3 //--------------------------------------------------------------------
4 //
5 // Package : HepRndm ( The LHCb Offline System)
6 // Author : M.Frank
7 // History :
8 // +---------+----------------------------------------------+---------
9 // | Date | Comment | Who
10 // +---------+----------------------------------------------+---------
11 // | 29/10/99| Initial version | MF
12 // +---------+----------------------------------------------+---------
13 //
14 //====================================================================
15 #ifndef HEPRNDM_HEPRNDMBASEENGINE_H
16 #define HEPRNDM_HEPRNDMBASEENGINE_H 1
17 
18 // Framework include files
19 #include "CLHEP/Random/Random.h"
20 #include "RndmEngine.h"
21 
22 // Forward declarations
23 namespace CLHEP {
24  class HepRandomEngine;
25 }
26 
27 namespace HepRndm {
28 
29  class BaseEngine : public RndmEngine {
30  protected:
32 
33  public:
34  BaseEngine( const std::string& name, ISvcLocator* loc ) : RndmEngine( name, loc ) {}
35  CLHEP::HepRandomEngine* hepEngine() { return m_hepEngine.get(); }
36  const CLHEP::HepRandomEngine* hepEngine() const { return m_hepEngine.get(); }
37  // Retrieve single random number
38  double rndm() const override { return m_hepEngine->flat(); }
39 
40  StatusCode finalize() override {
41  if ( m_hepEngine ) CLHEP::HepRandom::setTheEngine( nullptr );
42  m_hepEngine.reset();
43  return RndmEngine::finalize();
44  }
45 
46  protected:
47  void initEngine() { m_hepEngine = createEngine(); }
48  virtual std::unique_ptr<CLHEP::HepRandomEngine> createEngine() = 0;
49  };
50 } // namespace HepRndm
51 #endif // HEPRNDM_HEPRNDMBASEENGINE_H
The ISvcLocator is the interface implemented by the Service Factory in the Application Manager to loc...
Definition: ISvcLocator.h:25
StatusCode finalize() override
Definition: Service.cpp:164
StatusCode finalize() override
std::unique_ptr< CLHEP::HepRandomEngine > m_hepEngine
STL class.
double rndm() const override
This class is used for returning status codes from appropriate routines.
Definition: StatusCode.h:50
const CLHEP::HepRandomEngine * hepEngine() const
BaseEngine(const std::string &name, ISvcLocator *loc)
T reset(T...args)
T get(T...args)
Random Generator engine definition.
Definition: RndmEngine.h:42
CLHEP::HepRandomEngine * hepEngine()