Geant4 10.7.0
Toolkit for the simulation of the passage of particles through matter
Loading...
Searching...
No Matches
G4ParticleHPCapture Class Reference

#include <G4ParticleHPCapture.hh>

+ Inheritance diagram for G4ParticleHPCapture:

Public Member Functions

 G4ParticleHPCapture ()
 
 ~G4ParticleHPCapture ()
 
G4HadFinalStateApplyYourself (const G4HadProjectile &aTrack, G4Nucleus &aTargetNucleus)
 
virtual const std::pair< G4double, G4doubleGetFatalEnergyCheckLevels () 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 G4HadFinalStateApplyYourself (const G4HadProjectile &aTrack, G4Nucleus &targetNucleus)
 
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 const std::pair< G4double, G4doubleGetFatalEnergyCheckLevels () const
 
virtual std::pair< G4double, G4doubleGetEnergyMomentumCheckLevels () const
 
void SetEnergyMomentumCheckLevels (G4double relativeLevel, G4double absoluteLevel)
 
virtual void ModelDescription (std::ostream &outFile) const
 
virtual void BuildPhysicsTable (const G4ParticleDefinition &)
 
virtual void InitialiseModel ()
 
 G4HadronicInteraction (const G4HadronicInteraction &right)=delete
 
const G4HadronicInteractionoperator= (const G4HadronicInteraction &right)=delete
 
G4bool operator== (const G4HadronicInteraction &right) const =delete
 
G4bool operator!= (const G4HadronicInteraction &right) const =delete
 

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::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(!std::getenv("G4NEUTRONHPDATA"))
53 throw G4HadronicException(__FILE__, __LINE__, "Please setenv G4NEUTRONHPDATA to point to the neutron cross-section files.");
54 dirName = std::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)
void SetMaxEnergy(const G4double anEnergy)

◆ ~G4ParticleHPCapture()

G4ParticleHPCapture::~G4ParticleHPCapture ( )

Definition at line 81 of file G4ParticleHPCapture.cc.

82 {
83 //delete [] theCapture;
84 //vector is shared, only master deletes
86 if ( theCapture != NULL ) {
87 for ( std::vector<G4ParticleHPChannel*>::iterator
88 ite = theCapture->begin() ; ite != theCapture->end() ; ite++ ) {
89 delete *ite;
90 }
91 theCapture->clear();
92 }
93 }
94 }
G4bool IsWorkerThread()
Definition: G4Threading.cc:123

Member Function Documentation

◆ ApplyYourself()

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

Reimplemented from G4HadronicInteraction.

Definition at line 97 of file G4ParticleHPCapture.cc.

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

Referenced by ApplyYourself().

◆ BuildPhysicsTable()

void G4ParticleHPCapture::BuildPhysicsTable ( const G4ParticleDefinition )
virtual

Reimplemented from G4HadronicInteraction.

Definition at line 192 of file G4ParticleHPCapture.cc.

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

◆ GetFatalEnergyCheckLevels()

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

Reimplemented from G4HadronicInteraction.

Definition at line 161 of file G4ParticleHPCapture.cc.

162{
163 //return std::pair<G4double, G4double>(10*perCent,10*GeV);
164 return std::pair<G4double, G4double>(10*perCent,DBL_MAX);
165}
#define DBL_MAX
Definition: templates.hh:62

◆ GetVerboseLevel()

G4int G4ParticleHPCapture::GetVerboseLevel ( ) const

Definition at line 183 of file G4ParticleHPCapture.cc.

◆ ModelDescription()

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

Reimplemented from G4HadronicInteraction.

Definition at line 229 of file G4ParticleHPCapture.cc.

230{
231 outFile << "High Precision model based on Evaluated Nuclear Data Files (ENDF) for radiative capture reaction of neutrons below 20MeV\n";
232}

◆ SetVerboseLevel()

void G4ParticleHPCapture::SetVerboseLevel ( G4int  newValue)

Definition at line 187 of file G4ParticleHPCapture.cc.

188{
190}

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