Files
geant4/source/externals/clhep/include/CLHEP/Random/RandPoissonQ.icc
2018-12-07 15:15:39 +01:00

32 lines
936 B
C++

// -*- C++ -*-
//
// -----------------------------------------------------------------------
// HEP Random
// --- RandPoissonQ ---
// inlined functions implementation file
// -----------------------------------------------------------------------
// This file is part of Geant4 (simulation toolkit for HEP).
// =======================================================================
// M. Fischler - Created: 1/26/00
// =======================================================================
namespace CLHEP {
inline RandPoissonQ::RandPoissonQ(HepRandomEngine & anEngine, double b1 )
: RandPoisson(anEngine, b1)
{ setupForDefaultMu();
}
inline RandPoissonQ::RandPoissonQ(HepRandomEngine * anEngine, double b1 )
: RandPoisson(anEngine, b1)
{ setupForDefaultMu();
}
inline int RandPoissonQ::tableBoundary() {
return int(LAST_MU + S);
}
} // namespace CLHEP