Geant4 10.7.0
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 105 of file G4PartialWidthTable.cc.

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

◆ Dump()

void G4PartialWidthTable::Dump ( ) const

Definition at line 125 of file G4PartialWidthTable.cc.

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

◆ NumberOfChannels()

G4int G4PartialWidthTable::NumberOfChannels ( ) const

Definition at line 77 of file G4PartialWidthTable.cc.

78{
79 return 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 G4int i;
87 G4PhysicsVector* width = 0;
88 G4int n = 0;
89 G4int entries = widths.size();
90 for (i=0; i<entries; i++)
91 {
92 if ( (daughter1[i] == name1 && daughter2[i] == name2) ||
93 (daughter2[i] == name1 && daughter1[i] == name2) )
94 {
95 width = (G4PhysicsVector*) (widths[i]);
96 n++;
97 }
98 }
99 if (n > 1) throw G4HadronicException(__FILE__, __LINE__, "G4PartialWidthTable::Width - ambiguity");
100
101 return width;
102}

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