TGenPhaseSpace

Dear Experts,
I look into the documentation of TGenPhaseSpace, and I find that it accesses TRandom instead of TRandom3 or some similar “recommended” random number generator. Is there perhaps some under-the-hood method that changes this? I know that regular TRandom is “not recommended for any statistical study”

If it is true that TGenPhaseSpace only accesses TRandom, then perhaps this should be changed?

Many thanks,
Mike

Actually, it only accesses “gRandom” (via #include “TRandom.h”). Try:
root [0] gRandom->Print();

I see. That is exactly the “under-the-hood” method I meant. This should be true for compiled code as well as interpreted? My code is compiled.

Many thanks,
Mike

EDIT. Of course it is trivial to check that in the code. So I did. Thanks again.