Geant4.10
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
G4NeutronHPFissionBaseFS.cc
Go to the documentation of this file.
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 // neutron_hp -- source file
27 // J.P. Wellisch, Nov-1996
28 // A prototype of the low energy neutron transport model.
29 //
31 #include "G4NeutronHPManager.hh"
32 #include "G4SystemOfUnits.hh"
33 #include "G4ReactionProduct.hh"
34 #include "G4Nucleus.hh"
35 #include "G4Proton.hh"
36 #include "G4Deuteron.hh"
37 #include "G4Triton.hh"
38 #include "G4Alpha.hh"
39 #include "G4ThreeVector.hh"
40 #include "G4LorentzVector.hh"
41 #include "G4NeutronHPDataUsed.hh"
42 
44  {
45  G4String tString = dirName;
46  G4bool dbool;
47  G4NeutronHPDataUsed aFile = theNames.GetName(static_cast<G4int>(A), static_cast<G4int>(Z), M, tString, bit, dbool);
48  G4String filename = aFile.GetName();
49  SetAZMs( A, Z, M, aFile );
50  //theBaseA = aFile.GetA();
51  //theBaseZ = aFile.GetZ();
52  //if(!dbool || ( Z<2.5 && ( std::abs(theBaseZ - Z)>0.0001 || std::abs(theBaseA - A)>0.0001) ) )
53  if ( !dbool || ( Z<2.5 && ( std::abs(theNDLDataZ - Z)>0.0001 || std::abs(theNDLDataA - A)>0.0001)) )
54  {
55  hasAnyData = false;
56  hasFSData = false;
57  hasXsec = false;
58  return; // no data for exactly this isotope.
59  }
60 
61  //std::ifstream theData(filename, std::ios::in);
62  std::istringstream theData(std::ios::in);
64  G4int dummy;
65  if(!(theData))
66  {
67  //theData.close();
68  hasFSData = false;
69  hasXsec = false;
70  hasAnyData = false;
71  return; // no data for this FS for this isotope
72  }
73  theData >> dummy>>dummy;
74  G4int total;
75  theData >> total;
76  theXsection->Init(theData, total, eV);
77  if (!(theData >> dummy))
78  {
79  hasFSData = false;
80  //theData.close();
81  return;
82  }
83  theData >> dummy;
84 
85  theAngularDistribution.Init(theData);
86 
87  theData >> dummy >> dummy;
88 
89  theEnergyDistribution.Init(theData);
90  //theData.close();
91 
92  }
93 
95  {
96 // if therere were no data for this isotope, break out.
97  if(!HasFSData()) { return 0; }
98 
99  G4int i;
101  G4ReactionProduct boosted;
102  boosted.Lorentz(theNeutron, theTarget);
103  G4double eKinetic = boosted.GetKineticEnergy();
104 
105 // Build neutrons
106  G4ReactionProduct * theNeutrons = new G4ReactionProduct[nPrompt];
107  for(i=0; i<nPrompt; i++)
108  {
109  theNeutrons[i].SetDefinition(G4Neutron::Neutron());
110  }
111 
112 // sample energies
113  G4int dummy;
114  for(i=0; i<nPrompt; i++)
115  {
116  // always in the lab system (if file-5)
117  theNeutrons[i].SetKineticEnergy(theEnergyDistribution.Sample(eKinetic, dummy));
118  }
119 
120 // sample neutron angular distribution
121  for(i=0; i<nPrompt; i++)
122  {
123  theAngularDistribution.SampleAndUpdate(theNeutrons[i]);
124  }
125 
126 // already in lab. Add neutrons to dynamic particle vector
127  for(i=0; i<nPrompt; i++)
128  {
130  it->SetDefinition(theNeutrons[i].GetDefinition());
131  it->SetMomentum(theNeutrons[i].GetMomentum());
132  aResult->push_back(it);
133  }
134  delete [] theNeutrons;
135 
136 // return the result
137  return aResult;
138  }
void SetMomentum(const G4ThreeVector &momentum)
void Lorentz(const G4ReactionProduct &p1, const G4ReactionProduct &p2)
void SetKineticEnergy(const G4double en)
static G4NeutronHPManager * GetInstance()
G4DynamicParticleVector * ApplyYourself(G4int Prompt)
G4double Sample(G4double anEnergy, G4int &it)
void Init(std::istream &aDataFile, G4int total, G4double ux=1., G4double uy=1.)
void GetDataStream(G4String, std::istringstream &iss)
G4NeutronHPDataUsed GetName(G4int A, G4int Z, G4String base, G4String rest, G4bool &active)
int G4int
Definition: G4Types.hh:78
void Init(G4double A, G4double Z, G4int M, G4String &dirName, G4String &bit)
bool G4bool
Definition: G4Types.hh:79
std::vector< G4DynamicParticle * > G4DynamicParticleVector
void Init(std::istream &aDataFile)
static G4Neutron * Neutron()
Definition: G4Neutron.cc:104
G4double GetKineticEnergy() const
void SampleAndUpdate(G4ReactionProduct &aNeutron)
G4double total(Particle const *const p1, Particle const *const p2)
void SetDefinition(G4ParticleDefinition *aParticleDefinition)
void SetAZMs(G4double anA, G4double aZ, G4int aM, G4NeutronHPDataUsed used)
double G4double
Definition: G4Types.hh:76
void SetDefinition(const G4ParticleDefinition *aParticleDefinition)