HepRndmGenerator.h
Go to the documentation of this file.
1 //====================================================================
2 // CLHEP Random Generator 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_HEPRNDMGENERATOR_H
16 #define HEPRNDM_HEPRNDMGENERATOR_H 1
17 
18 // Framework include files
19 #include "RndmGen.h"
20 #include "RndmGenSvc.h"
21 
22 #include "HepRndmBaseEngine.h"
23 
24 namespace HepRndm {
25 
26  template <class TYPE>
27  class Generator : public RndmGen {
28  public:
29  typedef TYPE Parameters;
30  protected:
31  CLHEP::HepRandomEngine* m_hepEngine = nullptr;
32  TYPE* m_specs = nullptr;
33  public:
34  Generator(IInterface* engine) : RndmGen(engine) {}
35  ~Generator() override= default;
37  StatusCode initialize(const IRndmGen::Param& par) override;
39  double shoot() const override;
40  };
41 
42 
45  StatusCode status = RndmGen::initialize(par);
46  if ( status.isSuccess() ) {
47  try {
48  m_specs = dynamic_cast<TYPE*>(m_params.get());
49  if ( m_specs ) {
50  BaseEngine* engine = dynamic_cast<BaseEngine*>(m_engine.get());
51  if ( engine ) {
52  m_hepEngine = engine->hepEngine();
53  if ( m_hepEngine ) {
54  return StatusCode::SUCCESS;
55  }
56  }
57  }
58  }
59  catch (...) {
60  }
61  }
62  return StatusCode::FAILURE;
63  }
64 }
65 
66 #endif // HEPRNDM_HEPRNDMGENERATOR_H
bool isSuccess() const
Test for a status code of SUCCESS.
Definition: StatusCode.h:74
Generator(IInterface *engine)
TYPE * get() const
Get interface pointer.
Definition: SmartIF.h:76
SmartIF< IRndmEngine > m_engine
Hosting service: Access must always be possible.
Definition: RndmGen.h:47
StatusCode initialize(const IRndmGen::Param &par) override
Initialize the generator.
This class is used for returning status codes from appropriate routines.
Definition: StatusCode.h:26
Definition of the basic interface.
Definition: IInterface.h:234
StatusCode initialize(const IRndmGen::Param &par) override
IRndmGen implementation.
Definition: RndmGen.cpp:28
Random Generator definition.
Definition: RndmGen.h:41
~Generator() override=default
T get(T...args)
std::unique_ptr< IRndmGen::Param > m_params
Generation parameters.
Definition: RndmGen.h:45
double shoot() const override
Single shot.
CLHEP::HepRandomEngine * m_hepEngine
CLHEP::HepRandomEngine * hepEngine()