Geant4  v4-10.4-release
 모두 클래스 네임스페이스들 파일들 함수 변수 타입정의 열거형 타입 열거형 멤버 Friends 매크로 그룹들 페이지들
G4fissionEvent.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 //
27 // This software was developed by Lawrence Livermore National Laboratory.
28 //
29 // Redistribution and use in source and binary forms, with or without
30 // modification, are permitted provided that the following conditions are met:
31 //
32 // 1. Redistributions of source code must retain the above copyright notice,
33 // this list of conditions and the following disclaimer.
34 // 2. Redistributions in binary form must reproduce the above copyright notice,
35 // this list of conditions and the following disclaimer in the documentation
36 // and/or other materials provided with the distribution.
37 // 3. The name of the author may not be used to endorse or promote products
38 // derived from this software without specific prior written permission.
39 //
40 // THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
41 // WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
42 // MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
43 // EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
44 // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
45 // PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
46 // OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
47 // WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
48 // OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
49 // ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
50 //
51 // Copyright (c) 2006 The Regents of the University of California.
52 // All rights reserved.
53 // UCRL-CODE-224807
54 //
55 // $Id: G4fissionEvent.hh 68799 2013-04-05 13:29:46Z gcosmo $
56 //
57 #ifndef G4fissionEvent_hh
58 #define G4fissionEvent_hh
59 
60 #include "globals.hh"
61 #include <string>
62 
64  private:
65  G4int neutronNu; // number of neutrons in this fission event
72 
73  G4int photonNu; // number of photons in this fission event
80 
81  // options
87  static G4double (*rngdptr)(void);
88  static float (*rngfptr)(void);
89 
90  public:
91  // These are all the methods of this class accessible to the caller of the object
92  G4fissionEvent(G4int isotope, G4double time, G4double nubar, G4double eng);
95  return neutronNu;
96  }
98  return photonNu;
99  }
101  if (index >= 0 && index < neutronNu) return neutronEnergies[index];
102  else return -1;
103  }
105  if (index >= 0 && index < neutronNu) return neutronVelocities[index];
106  else return -1;
107  }
109  if (index >= 0 && index < neutronNu) return neutronDircosu[index];
110  else return -1;
111  }
113  if (index >= 0 && index < neutronNu) return neutronDircosv[index];
114  else return -1;
115  }
117  if (index >= 0 && index < neutronNu) return neutronDircosw[index];
118  else return -1;
119  }
121  if (index >= 0 && index < photonNu) return photonEnergies[index];
122  else return -1;
123  }
125  if (index >= 0 && index < photonNu) return photonVelocities[index];
126  else return -1;
127  }
129  if (index >= 0 && index < photonNu) return photonDircosu[index];
130  else return -1;
131  }
133  if (index >= 0 && index < photonNu) return photonDircosv[index];
134  else return -1;
135  }
137  if (index >= 0 && index < photonNu) return photonDircosw[index];
138  else return -1;
139  }
141  if (index >= 0 && index < neutronNu) return neutronAges[index];
142  else return -1;
143  }
145  if (index >= 0 && index < photonNu) return photonAges[index];
146  else return -1;
147  }
148  static void setDelayOption(G4int delay) {
149  delayoption = delay;
150  };
151  static void setCorrelationOption(G4int correlation) {
152  correlationoption = correlation;
153  };
154  static void setNudistOption(G4int nudist) {
155  nudistoption = nudist;
156  };
157  static void setCf252Option(G4int ndist, G4int neng) {
158  Cf252ndistoption = ndist;
159  Cf252nengoption = neng;
160  };
161  static void setRNGf(float (*funcptr) (void)) {
162  rngfptr = funcptr;
163  rngdptr = rngf2d;
164  }
165  static void setRNGd(G4double (*funcptr) (void)) {
166  rngdptr = funcptr;
167  }
168 
169 
170  private:
177  G4double G4SmpNVel(G4double eng, G4double* cosdiru, G4double* cosdirv, G4double* cosdirw);
178  G4double G4SmpNEngCf252(G4int option);
179  void G4SmpIsoDir(G4double* cosdiru, G4double* cosdirv, G4double* cosdirw);
184  G4int G4SmpNugDist(G4int isotope, G4double nubar);
185  G4double G4SmpPVel(G4double eng, G4double* cosdiru, G4double* cosdirv, G4double* cosdirw);
186  G4int G4SmpSpNuDistData(G4int isotope, G4int Cf252option);
188  G4int G4SmpSpNugDistData(G4int isotope);
190  G4double G4SmpWatt(G4double ePart, G4int iso);
191  void G4fissionerr(G4int iSever, std::string chSubNam, std::string chMsg);
192  static G4double fisslibrng(void);
193  static G4double rngf2d(void);
194 };
195 
196 #endif
G4double * neutronDircosv
G4double * neutronEnergies
G4int G4SmpNuDistDataU233_235(G4double nubar)
G4fissionEvent(G4int isotope, G4double time, G4double nubar, G4double eng)
static void setRNGf(float(*funcptr)(void))
G4double * neutronDircosu
G4double G4SmpGEng()
Definition: G4SmpGEng.cc:64
G4double getPhotonAge(G4int index)
G4double getNeutronVelocity(G4int index)
G4double G4SmpWatt(G4double ePart, G4int iso)
Definition: G4SmpWatt.cc:67
static float(* rngfptr)(void)
static void setNudistOption(G4int nudist)
static G4int Cf252ndistoption
G4double * photonEnergies
G4double * photonAges
void G4SmpIsoDir(G4double *cosdiru, G4double *cosdirv, G4double *cosdirw)
Definition: G4SmpIsoDir.cc:64
G4double G4SmpPVel(G4double eng, G4double *cosdiru, G4double *cosdirv, G4double *cosdirw)
Definition: G4SmpPVel.cc:62
static void setCorrelationOption(G4int correlation)
G4double * neutronVelocities
G4int G4SmpNuDistDataPu239_241(G4double nubar)
static G4int Cf252nengoption
G4double getNeutronDircosu(G4int index)
double G4double
Definition: G4Types.hh:76
G4int getNeutronNu()
static void setCf252Option(G4int ndist, G4int neng)
G4double * photonDircosw
G4int G4SmpNuDistDataU238(G4double erg)
G4int G4SmpSpNugDistData(G4int isotope)
static G4int delayoption
G4double getNeutronEnergy(G4int index)
static void setDelayOption(G4int delay)
G4double getPhotonDircosw(G4int index)
G4double * photonVelocities
G4int G4SmpSpNuDistData(G4int isotope, G4int Cf252option)
G4double G4SmpNVel(G4double eng, G4double *cosdiru, G4double *cosdirv, G4double *cosdirw)
Definition: G4SmpNVel.cc:62
static G4int correlationoption
void G4fissionerr(G4int iSever, std::string chSubNam, std::string chMsg)
Definition: G4fissionerr.cc:65
G4double getPhotonVelocity(G4int index)
G4double getPhotonEnergy(G4int index)
G4int G4SmpNuDistDataPu239(G4double erg)
G4int G4SmpNuDistDataU232_234_236_238(G4double nubar)
int G4int
Definition: G4Types.hh:78
G4int G4SmpNugDist(G4int isotope, G4double nubar)
Definition: G4SmpNugDist.cc:68
G4int G4SmpNuDistDataU233_235_MC(G4double nubar)
static G4int nudistoption
G4int G4SmpNuDistDataPu239_241_MC(G4double nubar)
G4double getPhotonDircosv(G4int index)
static void setRNGd(G4double(*funcptr)(void))
G4double getNeutronDircosw(G4int index)
G4double getNeutronAge(G4int index)
G4int G4SmpNuDistDataU232_234_236_238_MC(G4double nubar)
G4int G4SmpNuDistDataU235(G4double erg, G4int option)
G4double * neutronDircosw
G4double getNeutronDircosv(G4int index)
G4double * photonDircosu
G4double getPhotonDircosu(G4int index)
G4double G4SmpTerrell(G4double nubar)
Definition: G4SmpTerrell.cc:69
typedef void(XMLCALL *XML_ElementDeclHandler)(void *userData
G4double G4SmpSpNubarData(G4int isotope)
G4double G4SmpNEngCf252(G4int option)
G4double * photonDircosv
static G4double rngf2d(void)
Definition: G4rngc.cc:75
G4double * neutronAges
static G4double(* rngdptr)(void)
static G4double fisslibrng(void)
Definition: G4rngc.cc:65