#include <PhotonTransporter.h>
Inheritance diagram for photrans::PhotonTransporter:

Public Member Functions | |
| PhotonTransporter () | |
| virtual | ~PhotonTransporter () |
Protected Member Functions | |
| unsigned int | GeneratePoisson (const double r) const |
| unsigned int | GenerateFlat (const unsigned int max_value) const |
Protected Attributes | |
| util::TRandomNOVA * | fRandom |
|
|
Definition at line 14 of file PhotonTransporter.cxx. References fRandom, and util::RandomHandler::GetGenerator(). 00014 : fRandom(NULL) 00015 { 00016 fRandom = util::RandomHandler::GetGenerator(); 00017 }
|
|
|
Definition at line 21 of file PhotonTransporter.cxx. 00022 {
00023
00024 }
|
|
|
Definition at line 28 of file PhotonTransporter.h. 00028 {
00029 return fRandom->Integer(max_value); }
|
|
|
Definition at line 26 of file PhotonTransporter.h. 00026 {
00027 return fRandom->Poisson(r); }
|
|
|
Definition at line 31 of file PhotonTransporter.h. Referenced by PhotonTransporter(). |
1.3.9.1