Geant4  10.03.p01
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
G4ParticleHPCapture Class Reference

#include <G4ParticleHPCapture.hh>

Inheritance diagram for G4ParticleHPCapture:
Collaboration diagram for G4ParticleHPCapture:

Public Member Functions

 G4ParticleHPCapture ()
 
 ~G4ParticleHPCapture ()
 
G4HadFinalStateApplyYourself (const G4HadProjectile &aTrack, G4Nucleus &aTargetNucleus)
 
virtual const std::pair
< G4double, G4double
GetFatalEnergyCheckLevels () const
 
G4int GetVerboseLevel () const
 
void SetVerboseLevel (G4int)
 
void BuildPhysicsTable (const G4ParticleDefinition &)
 
virtual void ModelDescription (std::ostream &outFile) const
 
- Public Member Functions inherited from G4HadronicInteraction
 G4HadronicInteraction (const G4String &modelName="HadronicModel")
 
virtual ~G4HadronicInteraction ()
 
virtual G4double SampleInvariantT (const G4ParticleDefinition *p, G4double plab, G4int Z, G4int A)
 
virtual G4bool IsApplicable (const G4HadProjectile &aTrack, G4Nucleus &targetNucleus)
 
G4double GetMinEnergy () const
 
G4double GetMinEnergy (const G4Material *aMaterial, const G4Element *anElement) const
 
void SetMinEnergy (G4double anEnergy)
 
void SetMinEnergy (G4double anEnergy, const G4Element *anElement)
 
void SetMinEnergy (G4double anEnergy, const G4Material *aMaterial)
 
G4double GetMaxEnergy () const
 
G4double GetMaxEnergy (const G4Material *aMaterial, const G4Element *anElement) const
 
void SetMaxEnergy (const G4double anEnergy)
 
void SetMaxEnergy (G4double anEnergy, const G4Element *anElement)
 
void SetMaxEnergy (G4double anEnergy, const G4Material *aMaterial)
 
G4int GetVerboseLevel () const
 
void SetVerboseLevel (G4int value)
 
const G4StringGetModelName () const
 
void DeActivateFor (const G4Material *aMaterial)
 
void ActivateFor (const G4Material *aMaterial)
 
void DeActivateFor (const G4Element *anElement)
 
void ActivateFor (const G4Element *anElement)
 
G4bool IsBlocked (const G4Material *aMaterial) const
 
G4bool IsBlocked (const G4Element *anElement) const
 
void SetRecoilEnergyThreshold (G4double val)
 
G4double GetRecoilEnergyThreshold () const
 
virtual std::pair< G4double,
G4double
GetEnergyMomentumCheckLevels () const
 
void SetEnergyMomentumCheckLevels (G4double relativeLevel, G4double absoluteLevel)
 
virtual void InitialiseModel ()
 

Additional Inherited Members

- Protected Member Functions inherited from G4HadronicInteraction
void SetModelName (const G4String &nam)
 
G4bool IsBlocked () const
 
void Block ()
 
- Protected Attributes inherited from G4HadronicInteraction
G4HadFinalState theParticleChange
 
G4int verboseLevel
 
G4double theMinEnergy
 
G4double theMaxEnergy
 
G4bool isBlocked
 

Detailed Description

Definition at line 49 of file G4ParticleHPCapture.hh.

Constructor & Destructor Documentation

G4ParticleHPCapture::G4ParticleHPCapture ( )

Definition at line 43 of file G4ParticleHPCapture.cc.

44  :G4HadronicInteraction("NeutronHPCapture")
45  ,theCapture(NULL)
46  ,numEle(0)
47  {
48  SetMinEnergy( 0.0 );
49  SetMaxEnergy( 20.*MeV );
50 /*
51 // G4cout << "Capture : start of construction!!!!!!!!"<<G4endl;
52  if(!getenv("G4NEUTRONHPDATA"))
53  throw G4HadronicException(__FILE__, __LINE__, "Please setenv G4NEUTRONHPDATA to point to the neutron cross-section files.");
54  dirName = getenv("G4NEUTRONHPDATA");
55  G4String tString = "/Capture";
56  dirName = dirName + tString;
57  numEle = G4Element::GetNumberOfElements();
58 // G4cout << "+++++++++++++++++++++++++++++++++++++++++++++++++"<<G4endl;
59 // G4cout <<"Disname="<<dirName<<" numEle="<<numEle<<G4endl;
60  //theCapture = new G4ParticleHPChannel[numEle];
61 // G4cout <<"G4ParticleHPChannel constructed"<<G4endl;
62  G4ParticleHPCaptureFS * theFS = new G4ParticleHPCaptureFS;
63  //for (G4int i=0; i<numEle; i++)
64  //{
65 // // G4cout << "initializing theCapture "<<i<<" "<< numEle<<G4endl;
66  // theCapture[i].Init((*(G4Element::GetElementTable()))[i], dirName);
67  // theCapture[i].Register(theFS);
68  //}
69  for ( G4int i = 0 ; i < numEle ; i++ )
70  {
71  theCapture.push_back( new G4ParticleHPChannel );
72  (*theCapture[i]).Init((*(G4Element::GetElementTable()))[i], dirName);
73  (*theCapture[i]).Register(theFS);
74  }
75  delete theFS;
76 // G4cout << "-------------------------------------------------"<<G4endl;
77 // G4cout << "Leaving G4ParticleHPCapture::G4ParticleHPCapture"<<G4endl;
78 */
79  }
void SetMinEnergy(G4double anEnergy)
G4HadronicInteraction(const G4String &modelName="HadronicModel")
void SetMaxEnergy(const G4double anEnergy)
static constexpr double MeV
Definition: G4SIunits.hh:214

Here is the call graph for this function:

G4ParticleHPCapture::~G4ParticleHPCapture ( )

Definition at line 81 of file G4ParticleHPCapture.cc.

82  {
83  //delete [] theCapture;
84  if ( theCapture != NULL ) {
85  for ( std::vector<G4ParticleHPChannel*>::iterator
86  ite = theCapture->begin() ; ite != theCapture->end() ; ite++ ) {
87  delete *ite;
88  }
89  theCapture->clear();
90  }
91  }

Member Function Documentation

G4HadFinalState * G4ParticleHPCapture::ApplyYourself ( const G4HadProjectile aTrack,
G4Nucleus aTargetNucleus 
)
virtual

Implements G4HadronicInteraction.

Definition at line 94 of file G4ParticleHPCapture.cc.

95  {
96 
97  //if ( numEle < (G4int)G4Element::GetNumberOfElements() ) addChannelForNewElement();
98 
100  if(getenv("NeutronHPCapture")) G4cout <<" ####### G4ParticleHPCapture called"<<G4endl;
101  const G4Material * theMaterial = aTrack.GetMaterial();
102  G4int n = theMaterial->GetNumberOfElements();
103  G4int index = theMaterial->GetElement(0)->GetIndex();
104  if(n!=1)
105  {
106  G4double* xSec = new G4double[n];
107  G4double sum=0;
108  G4int i;
109  const G4double * NumAtomsPerVolume = theMaterial->GetVecNbOfAtomsPerVolume();
110  G4double rWeight;
111  G4ParticleHPThermalBoost aThermalE;
112  for (i=0; i<n; i++)
113  {
114  index = theMaterial->GetElement(i)->GetIndex();
115  rWeight = NumAtomsPerVolume[i];
116  //xSec[i] = theCapture[index].GetXsec(aThermalE.GetThermalEnergy(aTrack,
117  xSec[i] = ((*theCapture)[index])->GetXsec(aThermalE.GetThermalEnergy(aTrack,
118  theMaterial->GetElement(i),
119  theMaterial->GetTemperature()));
120  xSec[i] *= rWeight;
121  sum+=xSec[i];
122  }
123  G4double random = G4UniformRand();
124  G4double running = 0;
125  for (i=0; i<n; i++)
126  {
127  running += xSec[i];
128  index = theMaterial->GetElement(i)->GetIndex();
129  //if(random<=running/sum) break;
130  if( sum == 0 || random <= running/sum ) break;
131  }
132  if(i==n) i=std::max(0, n-1);
133  delete [] xSec;
134  }
135 
136  //return theCapture[index].ApplyYourself(aTrack);
137  //G4HadFinalState* result = theCapture[index].ApplyYourself(aTrack);
138  G4HadFinalState* result = ((*theCapture)[index])->ApplyYourself(aTrack);
139 
140  //Overwrite target parameters
141  aNucleus.SetParameters(G4ParticleHPManager::GetInstance()->GetReactionWhiteBoard()->GetTargA(),G4ParticleHPManager::GetInstance()->GetReactionWhiteBoard()->GetTargZ());
142  const G4Element* target_element = (*G4Element::GetElementTable())[index];
143  const G4Isotope* target_isotope=NULL;
144  G4int iele = target_element->GetNumberOfIsotopes();
145  for ( G4int j = 0 ; j != iele ; j++ ) {
146  target_isotope=target_element->GetIsotope( j );
147  if ( target_isotope->GetN() == G4ParticleHPManager::GetInstance()->GetReactionWhiteBoard()->GetTargA() ) break;
148  }
149  //G4cout << "Target Material of this reaction is " << theMaterial->GetName() << G4endl;
150  //G4cout << "Target Element of this reaction is " << target_element->GetName() << G4endl;
151  //G4cout << "Target Isotope of this reaction is " << target_isotope->GetName() << G4endl;
152  aNucleus.SetIsotope( target_isotope );
153 
155  return result;
156  }
G4double G4ParticleHPJENDLHEData::G4double result
static G4ParticleHPManager * GetInstance()
size_t GetNumberOfIsotopes() const
Definition: G4Element.hh:159
const G4Element * GetElement(G4int iel) const
Definition: G4Material.hh:202
int G4int
Definition: G4Types.hh:78
G4HadFinalState * ApplyYourself(const G4HadProjectile &aTrack, G4Nucleus &aTargetNucleus)
const G4double * GetVecNbOfAtomsPerVolume() const
Definition: G4Material.hh:206
G4int GetN() const
Definition: G4Isotope.hh:94
#define G4UniformRand()
Definition: Randomize.hh:97
G4GLOB_DLL std::ostream G4cout
size_t GetIndex() const
Definition: G4Element.hh:182
G4double GetThermalEnergy(const G4HadProjectile &aP, const G4Element *anE, G4double aT)
T max(const T t1, const T t2)
brief Return the largest of the two arguments
const G4Isotope * GetIsotope(G4int iso) const
Definition: G4Element.hh:170
G4double GetTemperature() const
Definition: G4Material.hh:182
#define G4endl
Definition: G4ios.hh:61
const G4Material * GetMaterial() const
size_t GetNumberOfElements() const
Definition: G4Material.hh:186
double G4double
Definition: G4Types.hh:76
static G4ElementTable * GetElementTable()
Definition: G4Element.cc:398
G4ParticleHPReactionWhiteBoard * GetReactionWhiteBoard()

Here is the call graph for this function:

void G4ParticleHPCapture::BuildPhysicsTable ( const G4ParticleDefinition )
virtual

Reimplemented from G4HadronicInteraction.

Definition at line 189 of file G4ParticleHPCapture.cc.

190 {
191 
193 
194  theCapture = hpmanager->GetCaptureFinalStates();
195 
196  if ( G4Threading::IsMasterThread() ) {
197 
198  if ( theCapture == NULL ) theCapture = new std::vector<G4ParticleHPChannel*>;
199 
200  if ( numEle == (G4int)G4Element::GetNumberOfElements() ) return;
201 
202  if ( theCapture->size() == G4Element::GetNumberOfElements() ) {
204  return;
205  }
206 
207  if ( !getenv("G4NEUTRONHPDATA") )
208  throw G4HadronicException(__FILE__, __LINE__, "Please setenv G4NEUTRONHPDATA to point to the neutron cross-section files.");
209  dirName = getenv("G4NEUTRONHPDATA");
210  G4String tString = "/Capture";
211  dirName = dirName + tString;
212 
214  for ( G4int i = numEle ; i < (G4int)G4Element::GetNumberOfElements() ; i++ )
215  {
216  theCapture->push_back( new G4ParticleHPChannel );
217  ((*theCapture)[i])->Init((*(G4Element::GetElementTable()))[i], dirName);
218  ((*theCapture)[i])->Register(theFS);
219  }
220  delete theFS;
221  hpmanager->RegisterCaptureFinalStates( theCapture );
222  }
224 }
static G4ParticleHPManager * GetInstance()
std::vector< G4ParticleHPChannel * > * GetCaptureFinalStates()
void Init()
Definition: G4IonTable.cc:90
int G4int
Definition: G4Types.hh:78
void Register(T *inst)
Definition: G4AutoDelete.hh:65
static size_t GetNumberOfElements()
Definition: G4Element.cc:405
void RegisterCaptureFinalStates(std::vector< G4ParticleHPChannel * > *val)
G4bool IsMasterThread()
Definition: G4Threading.cc:146
static G4ElementTable * GetElementTable()
Definition: G4Element.cc:398

Here is the call graph for this function:

const std::pair< G4double, G4double > G4ParticleHPCapture::GetFatalEnergyCheckLevels ( ) const
virtual

Reimplemented from G4HadronicInteraction.

Definition at line 158 of file G4ParticleHPCapture.cc.

159 {
160  //return std::pair<G4double, G4double>(10*perCent,10*GeV);
161  return std::pair<G4double, G4double>(10*perCent,DBL_MAX);
162 }
static constexpr double perCent
Definition: G4SIunits.hh:332
#define DBL_MAX
Definition: templates.hh:83
G4int G4ParticleHPCapture::GetVerboseLevel ( ) const

Definition at line 180 of file G4ParticleHPCapture.cc.

181 {
183 }
static G4ParticleHPManager * GetInstance()

Here is the call graph for this function:

void G4ParticleHPCapture::ModelDescription ( std::ostream &  outFile) const
virtual

Reimplemented from G4HadronicInteraction.

Definition at line 226 of file G4ParticleHPCapture.cc.

227 {
228  outFile << "High Precision model based on Evaluated Nuclear Data Files (ENDF) for radiative capture reaction of neutrons below 20MeV\n";
229 }
void G4ParticleHPCapture::SetVerboseLevel ( G4int  newValue)

Definition at line 184 of file G4ParticleHPCapture.cc.

185 {
187 }
static G4ParticleHPManager * GetInstance()

Here is the call graph for this function:


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