Skip to content
Snippets Groups Projects
Commit 03b69905 authored by Adrien Matta's avatar Adrien Matta :skull_crossbones:
Browse files

* twicking details in random generator

parent 5ff8bce0
No related branches found
No related tags found
No related merge requests found
/run/beamOn 10 /run/beamOn 1000
...@@ -87,7 +87,6 @@ ClassImp(Reaction) ...@@ -87,7 +87,6 @@ ClassImp(Reaction)
fshoot3=true; fshoot3=true;
fshoot4=true; fshoot4=true;
fUseExInGeant4=true; fUseExInGeant4=true;
RandGen=gRandom;
fLabCrossSection=false; // flag if the provided cross-section is in the lab or not fLabCrossSection=false; // flag if the provided cross-section is in the lab or not
...@@ -156,7 +155,6 @@ Reaction::Reaction(string reaction){ ...@@ -156,7 +155,6 @@ Reaction::Reaction(string reaction){
fshoot3=true; fshoot3=true;
fshoot4=true; fshoot4=true;
RandGen=gRandom;
fLabCrossSection=false; fLabCrossSection=false;
...@@ -357,7 +355,7 @@ double Reaction::EnergyLabFromThetaLab(double ThetaLab){ ...@@ -357,7 +355,7 @@ double Reaction::EnergyLabFromThetaLab(double ThetaLab){
if(B>D) { if(B>D) {
ThetaLabMax = asin(sqrt(D/B)); ThetaLabMax = asin(sqrt(D/B));
if(RandGen->Rndm()<0.5) sign=-1; if(gRandom->Rndm()<0.5) sign=-1;
} }
if(ThetaLab>ThetaLabMax) return -1; if(ThetaLab>ThetaLabMax) return -1;
......
...@@ -320,7 +320,7 @@ void NPS::BeamReaction::DoIt(const G4FastTrack& fastTrack, ...@@ -320,7 +320,7 @@ void NPS::BeamReaction::DoIt(const G4FastTrack& fastTrack,
// Angles // Angles
// Shoot and Set a Random ThetaCM // Shoot and Set a Random ThetaCM
m_Reaction.ShootRandomThetaCM(); m_Reaction.ShootRandomThetaCM();
double phi = RandFlat::shoot() * 2. * pi; double phi = G4RandFlat::shoot() * 2. * pi;
////////////////////////////////////////////////// //////////////////////////////////////////////////
///// Momentum and angles from kinematics ///// ///// Momentum and angles from kinematics /////
...@@ -453,8 +453,8 @@ void NPS::BeamReaction::DoIt(const G4FastTrack& fastTrack, ...@@ -453,8 +453,8 @@ void NPS::BeamReaction::DoIt(const G4FastTrack& fastTrack,
// Shoot and Set a Random ThetaCM // Shoot and Set a Random ThetaCM
//m_QFS.ShootRandomThetaCM(); //m_QFS.ShootRandomThetaCM();
//m_QFS.ShootRandomPhiCM(); //m_QFS.ShootRandomPhiCM();
double theta = RandFlat::shoot() * pi; double theta = G4RandFlat::shoot() * pi;
double phi = RandFlat::shoot() * 2. * pi - pi; //rand in [-pi,pi] double phi = G4RandFlat::shoot() * 2. * pi - pi; //rand in [-pi,pi]
m_QFS.SetThetaCM(theta); m_QFS.SetThetaCM(theta);
m_QFS.SetPhiCM(phi); m_QFS.SetPhiCM(phi);
......
...@@ -67,6 +67,7 @@ int main(int argc, char** argv){ ...@@ -67,6 +67,7 @@ int main(int argc, char** argv){
// initialize the state of the root and geant4 random generator // initialize the state of the root and geant4 random generator
if(OptionManager->GetRandomSeed()>0){ if(OptionManager->GetRandomSeed()>0){
std::cout << " Seeds for random generators set to: " << OptionManager->GetRandomSeed() << std::endl;
gRandom->SetSeed(OptionManager->GetRandomSeed()); gRandom->SetSeed(OptionManager->GetRandomSeed());
CLHEP::HepRandom::setTheSeed(OptionManager->GetRandomSeed(),3); CLHEP::HepRandom::setTheSeed(OptionManager->GetRandomSeed(),3);
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment