Geant4  10.02.p01
RandPoissonQ.icc
Go to the documentation of this file.
1 // $Id:$
2 // -*- C++ -*-
3 //
4 // -----------------------------------------------------------------------
5 // HEP Random
6 // --- RandPoissonQ ---
7 // inlined functions implementation file
8 // -----------------------------------------------------------------------
9 // This file is part of Geant4 (simulation toolkit for HEP).
10 
11 // =======================================================================
12 // M. Fischler - Created: 1/26/00
13 // =======================================================================
14 
15 namespace CLHEP {
16 
17 inline RandPoissonQ::RandPoissonQ(HepRandomEngine & anEngine, double b1 )
18 : RandPoisson(anEngine, b1)
19 { setupForDefaultMu();
20 }
21 
22 inline RandPoissonQ::RandPoissonQ(HepRandomEngine * anEngine, double b1 )
23 : RandPoisson(anEngine, b1)
24 { setupForDefaultMu();
25 }
26 
27 inline int RandPoissonQ::tableBoundary() {
28  return int(LAST_MU + S);
29 }
30 
31 } // namespace CLHEP
32