Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 09:54:38

0001 // $Id: RandPoissonQ.icc,v 1.2 2003/07/17 19:20:02 garren Exp $
0002 // -*- C++ -*-
0003 // 
0004 // -----------------------------------------------------------------------
0005 //                             HEP Random
0006 //                        --- RandPoissonQ ---
0007 //                 inlined functions implementation file
0008 // -----------------------------------------------------------------------
0009 // This file is part of Geant4 (simulation toolkit for HEP).
0010  
0011 // =======================================================================
0012 // M. Fischler      - Created: 1/26/00
0013 // =======================================================================
0014 
0015 namespace CLHEP {
0016 
0017 inline RandPoissonQ::RandPoissonQ(HepRandomEngine & anEngine, double b1 )
0018 : RandPoisson(anEngine, b1)
0019 { setupForDefaultMu();
0020 }
0021 
0022 inline RandPoissonQ::RandPoissonQ(HepRandomEngine * anEngine, double b1 )
0023 : RandPoisson(anEngine, b1)
0024 { setupForDefaultMu();
0025 }
0026 
0027 inline int RandPoissonQ::tableBoundary() {
0028   return int(LAST_MU + S);
0029 }
0030 
0031 }  // namespace CLHEP
0032