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

#include <G4PreCompoundFragmentVector.hh>

Public Member Functions

 G4PreCompoundFragmentVector (pcfvector *avector)
 
 ~G4PreCompoundFragmentVector ()=default
 
void SetVector (pcfvector *avector)
 
void SetOPTxs (G4int)
 
void UseSICB (G4bool)
 
G4double CalculateProbabilities (const G4Fragment &aFragment)
 
G4VPreCompoundFragmentChooseFragment ()
 

Detailed Description

Definition at line 51 of file G4PreCompoundFragmentVector.hh.

Constructor & Destructor Documentation

◆ G4PreCompoundFragmentVector()

G4PreCompoundFragmentVector::G4PreCompoundFragmentVector ( pcfvector * avector)
explicit

Definition at line 37 of file G4PreCompoundFragmentVector.cc.

38 : theChannels(nullptr), nChannels(0)
39{
40 SetVector(avector);
41}

Referenced by ~G4PreCompoundFragmentVector().

◆ ~G4PreCompoundFragmentVector()

G4PreCompoundFragmentVector::~G4PreCompoundFragmentVector ( )
default

Member Function Documentation

◆ CalculateProbabilities()

G4double G4PreCompoundFragmentVector::CalculateProbabilities ( const G4Fragment & aFragment)

Definition at line 74 of file G4PreCompoundFragmentVector.cc.

76{
77 //G4cout << "## G4PreCompoundFragmentVector::CalculateProbabilities nCh= "
78 // << nChannels << G4endl;
79 G4double probtot = 0.0;
80 for (G4int i=0; i<nChannels; ++i) {
81 if ((*theChannels)[i]->Initialize(aFragment)) {
82 G4double prob = (*theChannels)[i]->CalcEmissionProbability(aFragment);
83 probtot += prob;
84 }
85 probabilities[i] = probtot;
86 //G4cout<< " probtot= " << probtot << " for "<< i << "-th channel" <<G4endl;
87 }
88 return probtot;
89}
double G4double
Definition G4Types.hh:83
int G4int
Definition G4Types.hh:85

◆ ChooseFragment()

G4VPreCompoundFragment * G4PreCompoundFragmentVector::ChooseFragment ( )

Definition at line 91 of file G4PreCompoundFragmentVector.cc.

92{
93 //G4cout << "## G4PreCompoundFragmentVector::ChooseFragment nCh= "
94 // << nChannels << G4endl;
95 G4double x = probabilities[nChannels-1]*G4UniformRand();
96 G4int i=0;
97 for (; i<nChannels; ++i) {
98 if(x <= probabilities[i]) { break; }
99 }
100 return (*theChannels)[i];
101}
#define G4UniformRand()
Definition Randomize.hh:52

◆ SetOPTxs()

void G4PreCompoundFragmentVector::SetOPTxs ( G4int opt)

Definition at line 59 of file G4PreCompoundFragmentVector.cc.

60{
61 for (G4int i=0; i<nChannels; ++i) {
62 (*theChannels)[i]->SetOPTxs(opt);
63 }
64}

◆ SetVector()

void G4PreCompoundFragmentVector::SetVector ( pcfvector * avector)

Definition at line 43 of file G4PreCompoundFragmentVector.cc.

44{
45 if(avector != theChannels) {
46 delete theChannels;
47 theChannels = avector;
48 }
49 if(theChannels) {
50 nChannels = (G4int)theChannels->size();
51 probabilities.resize(nChannels, 0.0);
52 } else {
53 nChannels = 0;
54 probabilities.clear();
55 }
56}

Referenced by G4PreCompoundFragmentVector().

◆ UseSICB()

void G4PreCompoundFragmentVector::UseSICB ( G4bool use)

Definition at line 67 of file G4PreCompoundFragmentVector.cc.

68{
69 for (G4int i=0; i< nChannels; ++i) {
70 (*theChannels)[i]->UseSICB(use);
71 }
72}

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