The Gaudi Framework  v29r0 (ff2e7097)
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 {
25  class HepRandomEngine;
26 }
27 
28 namespace HepRndm
29 {
30 
31  class BaseEngine : public RndmEngine
32  {
33  protected:
35 
36  public:
37  BaseEngine( const std::string& name, ISvcLocator* loc ) : RndmEngine( name, loc ) {}
38  ~BaseEngine() override = default;
39  CLHEP::HepRandomEngine* hepEngine() { return m_hepEngine.get(); }
40  const CLHEP::HepRandomEngine* hepEngine() const { return m_hepEngine.get(); }
41  // Retrieve single random number
42  double rndm() const override { return m_hepEngine->flat(); }
43 
44  StatusCode finalize() override
45  {
46  if ( m_hepEngine ) CLHEP::HepRandom::setTheEngine( nullptr );
47  m_hepEngine.reset();
48  return RndmEngine::finalize();
49  }
50 
51  protected:
52  void initEngine() { m_hepEngine = createEngine(); }
53  virtual std::unique_ptr<CLHEP::HepRandomEngine> createEngine() = 0;
54  };
55 }
56 #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
StatusCode finalize() override
Service override: finalization.
Definition: RndmEngine.cpp:53
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:28
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:46
CLHEP::HepRandomEngine * hepEngine()