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