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

#include <G4PartialWidthTable.hh>

Public Member Functions

 G4PartialWidthTable (const G4double *energies, G4int entries)
 
virtual ~G4PartialWidthTable ()
 
G4bool operator== (const G4PartialWidthTable &right) const
 
G4bool operator!= (const G4PartialWidthTable &right) const
 
G4int NumberOfChannels () const
 
const G4PhysicsVectorWidth (const G4String &name1, const G4String &name2) const
 
void AddWidths (const G4double *widths, const G4String &name1, const G4String &name2)
 
void Dump () const
 

Detailed Description

Definition at line 50 of file G4PartialWidthTable.hh.

Constructor & Destructor Documentation

◆ G4PartialWidthTable()

G4PartialWidthTable::G4PartialWidthTable ( const G4double * energies,
G4int entries )

Definition at line 49 of file G4PartialWidthTable.cc.

49 : nEnergies(entries)
50{
51 // Fill the vector with tabulated energies
52 G4int i;
53 for (i=0; i<entries; i++)
54 {
55 G4double e = *(energies + i) * GeV;
56 energy.push_back(e);
57 }
58}
double G4double
Definition G4Types.hh:83
int G4int
Definition G4Types.hh:85

◆ ~G4PartialWidthTable()

G4PartialWidthTable::~G4PartialWidthTable ( )
virtual

Definition at line 61 of file G4PartialWidthTable.cc.

62{ }

Member Function Documentation

◆ AddWidths()

void G4PartialWidthTable::AddWidths ( const G4double * widths,
const G4String & name1,
const G4String & name2 )

Definition at line 104 of file G4PartialWidthTable.cc.

106{
107 G4PhysicsFreeVector* width = new G4PhysicsFreeVector(nEnergies);
108 G4int i;
109 for (i=0; i<nEnergies; i++)
110 {
111 G4double value = *(channelWidth+ i) * GeV;
112 G4double e = energy[i];
113 width->PutValue(i,e,value);
114 }
115
116 widths.push_back(width);
117 daughter1.push_back(name1);
118 daughter2.push_back(name2);
119
120 return;
121}
void PutValue(const std::size_t index, const G4double e, const G4double value)

◆ Dump()

void G4PartialWidthTable::Dump ( ) const

Definition at line 124 of file G4PartialWidthTable.cc.

125{
126 std::size_t entries = widths.size();
127
128 for (std::size_t i=0; i<entries; ++i)
129 {
130 G4cout << " Channel " << i << ": "
131 << daughter1[i] << " " << daughter2[i] << G4endl;
132 G4PhysicsFreeVector* width = widths[i];
133 for (G4int j=0; j<nEnergies; ++j)
134 {
135 G4bool dummy = false;
136 G4double e = energy[i];
137 G4double w = width->GetValue(e,dummy);
138 G4cout << j << ") Energy = " << e << ", Width = " << w << G4endl;
139 }
140 }
141 return;
142}
bool G4bool
Definition G4Types.hh:86
#define G4endl
Definition G4ios.hh:67
G4GLOB_DLL std::ostream G4cout
G4double GetValue(const G4double energy, G4bool &isOutRange) const

◆ NumberOfChannels()

G4int G4PartialWidthTable::NumberOfChannels ( ) const

Definition at line 77 of file G4PartialWidthTable.cc.

78{
79 return (G4int)widths.size();
80}

◆ operator!=()

G4bool G4PartialWidthTable::operator!= ( const G4PartialWidthTable & right) const

Definition at line 71 of file G4PartialWidthTable.cc.

72{
73 return (this != (G4PartialWidthTable *) &right);
74}

◆ operator==()

G4bool G4PartialWidthTable::operator== ( const G4PartialWidthTable & right) const

Definition at line 65 of file G4PartialWidthTable.cc.

66{
67 return (this == (G4PartialWidthTable *) &right);
68}

◆ Width()

const G4PhysicsVector * G4PartialWidthTable::Width ( const G4String & name1,
const G4String & name2 ) const

Definition at line 83 of file G4PartialWidthTable.cc.

84{
85 // Returned pointer is not owned by the client
86 G4PhysicsVector* width = 0;
87 std::size_t n = 0;
88 std::size_t entries = widths.size();
89 for (std::size_t i=0; i<entries; ++i)
90 {
91 if ( (daughter1[i] == name1 && daughter2[i] == name2) ||
92 (daughter2[i] == name1 && daughter1[i] == name2) )
93 {
94 width = (G4PhysicsVector*) (widths[i]);
95 ++n;
96 }
97 }
98 if (n > 1) throw G4HadronicException(__FILE__, __LINE__, "G4PartialWidthTable::Width - ambiguity");
99
100 return width;
101}

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