Geant4.10
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
Public Member Functions
G4NeutronHPProduct Class Reference

#include <G4NeutronHPProduct.hh>

Public Member Functions

 G4NeutronHPProduct ()
 
 ~G4NeutronHPProduct ()
 
G4double GetMassCode ()
 
G4double GetMass ()
 
void Init (std::istream &aDataFile)
 
G4ReactionProductVectorSample (G4double anEnergy)
 
G4double GetMeanYield (G4double anEnergy)
 
void SetNeutron (G4ReactionProduct *aNeutron)
 
void SetTarget (G4ReactionProduct *aTarget)
 
G4ReactionProductGetTarget ()
 
G4ReactionProductGetNeutron ()
 
G4double MeanEnergyOfThisInteraction ()
 
G4double GetQValue ()
 

Detailed Description

Definition at line 48 of file G4NeutronHPProduct.hh.

Constructor & Destructor Documentation

G4NeutronHPProduct::G4NeutronHPProduct ( )
inline

Definition at line 51 of file G4NeutronHPProduct.hh.

52  {
53  theDist = 0;
54  }
G4NeutronHPProduct::~G4NeutronHPProduct ( )
inline

Definition at line 55 of file G4NeutronHPProduct.hh.

56  {
57  if(theDist != 0) delete theDist;
58  }

Member Function Documentation

G4double G4NeutronHPProduct::GetMass ( )
inline

Definition at line 64 of file G4NeutronHPProduct.hh.

64 {return theMass;};
G4double G4NeutronHPProduct::GetMassCode ( )
inline

Definition at line 63 of file G4NeutronHPProduct.hh.

63 {return theMassCode;};
G4double G4NeutronHPProduct::GetMeanYield ( G4double  anEnergy)
inline

Definition at line 131 of file G4NeutronHPProduct.hh.

References G4NeutronHPVector::GetY().

132  {
133  return theYield.GetY(anEnergy);
134  }
G4double GetY(G4double x)
G4ReactionProduct* G4NeutronHPProduct::GetNeutron ( )
inline

Definition at line 148 of file G4NeutronHPProduct.hh.

148 { return theNeutron; }
G4double G4NeutronHPProduct::GetQValue ( )
inline

Definition at line 165 of file G4NeutronHPProduct.hh.

Referenced by G4NeutronHPEnAngCorrelation::Sample().

165 { return theActualStateQValue; }
G4ReactionProduct* G4NeutronHPProduct::GetTarget ( void  )
inline

Definition at line 146 of file G4NeutronHPProduct.hh.

146 { return theTarget; }
void G4NeutronHPProduct::Init ( std::istream &  aDataFile)
inline

Definition at line 66 of file G4NeutronHPProduct.hh.

References G4VNeutronHPEnergyAngular::Init(), G4NeutronHPVector::Init(), and G4VNeutronHPEnergyAngular::SetQValue().

Referenced by G4NeutronHPEnAngCorrelation::Init().

67  {
68  aDataFile >> theMassCode>>theMass>>theIsomerFlag>>theDistLaw
69  >> theGroundStateQValue>>theActualStateQValue;
70  theGroundStateQValue*= CLHEP::eV;
71  theActualStateQValue*= CLHEP::eV;
72  theYield.Init(aDataFile, CLHEP::eV);
73  if(theDistLaw==0)
74  {
75  // distribution not known, use E-independent, isotropic angular distribution
76  theDist = new G4NeutronHPIsotropic;
77  }
78  else if(theDistLaw == 1)
79  {
80  // Continuum energy-angular distribution
81  theDist = new G4NeutronHPContEnergyAngular;
82  }
83  else if(theDistLaw == 2)
84  {
85  // Discrete 2-body scattering
86  theDist = new G4NeutronHPDiscreteTwoBody;
87  }
88  else if(theDistLaw == 3)
89  {
90  // Isotropic emission
91  theDist = new G4NeutronHPIsotropic;
92  }
93  else if(theDistLaw == 4)
94  {
95  // Discrete 2-body recoil modification
96  // not used for now. @@@@
97  theDist = new G4NeutronHPDiscreteTwoBody;
98  // the above is only temporary;
99  // recoils need to be addressed
100  // properly
101  delete theDist;
102  theDist = 0;
103  }
104  else if(theDistLaw == 5)
105  {
106  // charged particles only, to be used in a later stage. @@@@
107  }
108  else if(theDistLaw == 6)
109  {
110  // N-Body phase space
111  theDist = new G4NeutronHPNBodyPhaseSpace;
112  }
113  else if(theDistLaw == 7)
114  {
115  // Laboratory angular energy paraetrisation
116  theDist = new G4NeutronHPLabAngularEnergy;
117  }
118  else
119  {
120  throw G4HadronicException(__FILE__, __LINE__, "distribution law unknown to G4NeutronHPProduct");
121  }
122  if(theDist!=0)
123  {
124  theDist->SetQValue(theActualStateQValue);
125  theDist->Init(aDataFile);
126  }
127  }
void Init(std::istream &aDataFile, G4int total, G4double ux=1., G4double uy=1.)
virtual void Init(std::istream &aDataFile)=0
G4double G4NeutronHPProduct::MeanEnergyOfThisInteraction ( )
inline

Definition at line 150 of file G4NeutronHPProduct.hh.

References G4VNeutronHPEnergyAngular::MeanEnergyOfThisInteraction().

Referenced by G4NeutronHPEnAngCorrelation::Sample().

151  {
152  G4double result;
153  if(theDist == 0)
154  {
155  result = 0;
156  }
157  else
158  {
159  result=theDist->MeanEnergyOfThisInteraction();
160  result *= theCurrentMultiplicity;
161  }
162  return result;
163  }
virtual G4double MeanEnergyOfThisInteraction()=0
double G4double
Definition: G4Types.hh:76
G4ReactionProductVector * G4NeutronHPProduct::Sample ( G4double  anEnergy)

Definition at line 42 of file G4NeutronHPProduct.cc.

References G4VNeutronHPEnergyAngular::ClearHistories(), G4Poisson(), G4NeutronHPVector::GetY(), G4VNeutronHPEnergyAngular::Sample(), G4VNeutronHPEnergyAngular::SetNeutron(), and G4VNeutronHPEnergyAngular::SetTarget().

Referenced by G4NeutronHPEnAngCorrelation::Sample(), and G4NeutronHPEnAngCorrelation::SampleOne().

43 {
44  if(theDist == 0) { return 0; }
46  G4double mean = theYield.GetY(anEnergy);
47  G4int multi;
48  multi = G4int(mean+0.0001);
49  //if(theMassCode==0) multi = G4Poisson(mean); // @@@@gammas. please X-check this
50  //080718
51  if ( theMassCode == 0 )
52  {
53  if ( G4int ( mean ) == mean )
54  {
55  multi = (G4int) mean;
56  }
57  else
58  {
59  multi = G4Poisson ( mean );
60  }
61  }
62  theDist->SetTarget(theTarget);
63  theDist->SetNeutron(theNeutron);
64  G4int i;
65 // G4double eMax = GetTarget()->GetMass()+GetNeutron()->GetMass()
66 // - theActualStateQValue;
67  theCurrentMultiplicity = static_cast<G4int>(mean);
68  G4ReactionProduct * tmp;
69  theDist->ClearHistories();
70  for(i=0;i<multi;i++)
71  {
72  tmp = theDist->Sample(anEnergy, theMassCode, theMass);
73  if(tmp != 0) { result->push_back(tmp); }
74  }
75  if(multi == 0)
76  {
77  tmp = theDist->Sample(anEnergy, theMassCode, theMass);
78  delete tmp;
79  }
80 /*
81 //080901 TK Comment out, too many secondaries are produced in deuteron reactions
82  if(theTarget->GetMass()<2*GeV) // @@@ take care of residuals in all cases
83  {
84  tmp = theDist->Sample(anEnergy, theMassCode, theMass);
85  tmp->SetDefinition(G4Proton::Proton());
86  if(tmp != 0) { result->push_back(tmp); }
87  }
88 */
89  return result;
90 }
G4double GetY(G4double x)
G4long G4Poisson(G4double mean)
Definition: G4Poisson.hh:51
void SetNeutron(G4ReactionProduct *aNeutron)
void SetTarget(G4ReactionProduct *aTarget)
int G4int
Definition: G4Types.hh:78
std::vector< G4ReactionProduct * > G4ReactionProductVector
virtual G4ReactionProduct * Sample(G4double anEnergy, G4double massCode, G4double mass)=0
double G4double
Definition: G4Types.hh:76
void G4NeutronHPProduct::SetNeutron ( G4ReactionProduct aNeutron)
inline

Definition at line 136 of file G4NeutronHPProduct.hh.

137  {
138  theNeutron = aNeutron;
139  }
void G4NeutronHPProduct::SetTarget ( G4ReactionProduct aTarget)
inline

Definition at line 141 of file G4NeutronHPProduct.hh.

142  {
143  theTarget = aTarget;
144  }

The documentation for this class was generated from the following files: