#ifndef ROOT_TRandom2
#define ROOT_TRandom2
#ifndef ROOT_TRandom
#include "TRandom.h"
#endif
class TRandom2 : public TRandom {
protected:
UInt_t fSeed1;
UInt_t fSeed2;
public:
TRandom2(UInt_t seed=1);
virtual ~TRandom2();
virtual Double_t Rndm(Int_t i=0);
virtual void RndmArray(Int_t n, Float_t *array);
virtual void RndmArray(Int_t n, Double_t *array);
virtual void SetSeed(UInt_t seed=0);
ClassDef(TRandom2,1)
};
R__EXTERN TRandom *gRandom;
#endif
Last change: Wed Jun 25 08:52:05 2008
Last generated: 2008-06-25 08:52
This page has been automatically generated. If you have any comments or suggestions about the page layout send a mail to ROOT support, or contact the developers with any questions or problems regarding ROOT.