Geant4  v4-10.4-release
 모두 클래스 네임스페이스들 파일들 함수 변수 타입정의 열거형 타입 열거형 멤버 Friends 매크로 그룹들 페이지들
G4INCLRandom.hh
이 파일의 문서화 페이지로 가기
1 //
2 // ********************************************************************
3 // * License and Disclaimer *
4 // * *
5 // * The Geant4 software is copyright of the Copyright Holders of *
6 // * the Geant4 Collaboration. It is provided under the terms and *
7 // * conditions of the Geant4 Software License, included in the file *
8 // * LICENSE and available at http://cern.ch/geant4/license . These *
9 // * include a list of copyright holders. *
10 // * *
11 // * Neither the authors of this software system, nor their employing *
12 // * institutes,nor the agencies providing financial support for this *
13 // * work make any representation or warranty, express or implied, *
14 // * regarding this software system or assume any liability for its *
15 // * use. Please see the license in the file LICENSE and URL above *
16 // * for the full disclaimer and the limitation of liability. *
17 // * *
18 // * This code implementation is the result of the scientific and *
19 // * technical work of the GEANT4 collaboration. *
20 // * By using, copying, modifying or distributing the software (or *
21 // * any work based on the software) you agree to acknowledge its *
22 // * use in resulting scientific publications, and indicate your *
23 // * acceptance of all terms of the Geant4 Software license. *
24 // ********************************************************************
25 //
26 // INCL++ intra-nuclear cascade model
27 // Alain Boudard, CEA-Saclay, France
28 // Joseph Cugnon, University of Liege, Belgium
29 // Jean-Christophe David, CEA-Saclay, France
30 // Pekka Kaitaniemi, CEA-Saclay, France, and Helsinki Institute of Physics, Finland
31 // Sylvie Leray, CEA-Saclay, France
32 // Davide Mancusi, CEA-Saclay, France
33 //
34 #define INCLXX_IN_GEANT4_MODE 1
35 
36 #include "globals.hh"
37 
38 /*
39  * G4INCLRandom.hh
40  *
41  * \date 7 June 2009
42  * \author Pekka Kaitaniemi
43  */
44 
45 #ifndef G4INCLRANDOM_HH_
46 #define G4INCLRANDOM_HH_
47 
48 #include <iostream>
49 #include <cmath>
50 #include <utility>
52 #include "G4INCLThreeVector.hh"
53 #include "G4INCLGlobals.hh"
54 #include "G4INCLConfig.hh"
55 
56 namespace G4INCL {
57 
58  namespace Random {
64  void setGenerator(G4INCL::IRandomGenerator *aGenerator);
65 
70  void setSeeds(const SeedVector &sv);
71 
77 
81  G4double shoot();
82 
86  G4double shoot0();
87 
91  G4double shoot1();
92 
96  template<typename T> T shootInteger(T n){
97  return static_cast<T>(shoot1() * n);
98  }
99 
103  G4double gauss(G4double sigma=1.);
104 
110 
115 
121 
127  ThreeVector gaussVector(G4double sigma=1.);
128 
130  std::pair<G4double,G4double> correlatedGaussian(const G4double corrCoeff, const G4double x0=0., const G4double sigma=1.);
131 
133  std::pair<G4double,G4double> correlatedUniform(const G4double corrCoeff);
134 
138  void deleteGenerator();
139 
144 
145 #ifdef INCL_COUNT_RND_CALLS
146  unsigned long long getNumberOfCalls();
148 #endif
149 
151  void saveSeeds();
152 
154  SeedVector getSavedSeeds();
155 
157 #ifdef INCLXX_IN_GEANT4_MODE
158  void initialize(Config const * const);
159 #else
160  void initialize(Config const * const theConfig);
161 #endif
162 
163  class Adapter {
164  public:
165  G4int operator()(const G4int n) const;
166  };
167 
168  Adapter const &getAdapter();
169  }
170 
171 }
172 
173 #endif /* G4INCLRANDOM_HH_ */
T shootInteger(T n)
Definition: G4INCLRandom.hh:96
void saveSeeds()
Save the status of the random-number generator.
ThreeVector gaussVector(G4double sigma=1.)
Generate Gaussianly-distributed ThreeVectors.
G4double shoot0()
ThreeVector normVector(G4double norm=1.)
void initialize(Config const *const)
Initialize generator according to a Config object.
SeedVector getSavedSeeds()
Get the saved status of the random-number generator.
void deleteGenerator()
void setSeeds(const SeedVector &sv)
Definition: G4INCLRandom.cc:85
Adapter const & getAdapter()
double G4double
Definition: G4Types.hh:76
bool G4bool
Definition: G4Types.hh:79
G4double shoot()
Definition: G4INCLRandom.cc:93
std::pair< G4double, G4double > correlatedGaussian(const G4double corrCoeff, const G4double x0=0., const G4double sigma=1.)
Generate pairs of correlated Gaussian random numbers.
SeedVector getSeeds()
Definition: G4INCLRandom.cc:89
void setGenerator(G4INCL::IRandomGenerator *aGenerator)
Definition: G4INCLRandom.cc:72
G4int operator()(const G4int n) const
ThreeVector sphereVector(G4double rmax=1.)
int G4int
Definition: G4Types.hh:78
Float_t norm
std::pair< G4double, G4double > correlatedUniform(const G4double corrCoeff)
Generate pairs of correlated uniform random numbers.
G4double shoot1()
Char_t n[5]
G4double gaussWithMemory(G4double sigma=1.)
G4bool isInitialized()
G4double gauss(G4double sigma=1.)