16 inline RandStudentT::RandStudentT(HepRandomEngine & anEngine,
double a)
17 : HepRandom( ), localEngine( &anEngine, do_nothing_deleter() ), defaultA(a)
20 inline RandStudentT::RandStudentT(HepRandomEngine * anEngine,
double a)
21 : HepRandom( ), localEngine( anEngine ), defaultA(a)
24 inline double RandStudentT::fire() {
25 return fire( defaultA );
28 inline double RandStudentT::shoot() {
32 inline double RandStudentT::shoot( HepRandomEngine* anEngine )
34 return shoot( anEngine, 1.0 );