Geant4-11
Public Member Functions | Private Member Functions | Private Attributes
G4PartialWidthTable Class Reference

#include <G4PartialWidthTable.hh>

Public Member Functions

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

Private Member Functions

 G4PartialWidthTable (const G4PartialWidthTable &right)
 
const G4PartialWidthTableoperator= (const G4PartialWidthTable &right)
 

Private Attributes

std::vector< G4Stringdaughter1
 
std::vector< G4Stringdaughter2
 
std::vector< G4doubleenergy
 
G4int nEnergies
 
std::vector< G4PhysicsFreeVector * > widths
 

Detailed Description

Definition at line 50 of file G4PartialWidthTable.hh.

Constructor & Destructor Documentation

◆ G4PartialWidthTable() [1/2]

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}
static constexpr double GeV
Definition: G4SIunits.hh:203
double G4double
Definition: G4Types.hh:83
int G4int
Definition: G4Types.hh:85
std::vector< G4double > energy

References energy, and GeV.

◆ ~G4PartialWidthTable()

G4PartialWidthTable::~G4PartialWidthTable ( )
virtual

Definition at line 61 of file G4PartialWidthTable.cc.

62{ }

◆ G4PartialWidthTable() [2/2]

G4PartialWidthTable::G4PartialWidthTable ( const G4PartialWidthTable right)
private

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{
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}
std::vector< G4String > daughter2
std::vector< G4String > daughter1
std::vector< G4PhysicsFreeVector * > widths
void PutValue(const std::size_t index, const G4double e, const G4double value)

References daughter1, daughter2, energy, GeV, nEnergies, G4PhysicsFreeVector::PutValue(), and widths.

◆ 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(const G4double energy, G4bool &isOutRange) const

References daughter1, daughter2, energy, G4cout, G4endl, G4PhysicsVector::GetValue(), nEnergies, and widths.

◆ NumberOfChannels()

G4int G4PartialWidthTable::NumberOfChannels ( ) const

Definition at line 77 of file G4PartialWidthTable.cc.

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

References widths.

◆ operator!=()

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

Definition at line 71 of file G4PartialWidthTable.cc.

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

◆ operator=()

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

◆ 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}

References daughter1, daughter2, CLHEP::detail::n, and widths.

Field Documentation

◆ daughter1

std::vector<G4String> G4PartialWidthTable::daughter1
private

Definition at line 82 of file G4PartialWidthTable.hh.

Referenced by AddWidths(), Dump(), and Width().

◆ daughter2

std::vector<G4String> G4PartialWidthTable::daughter2
private

Definition at line 83 of file G4PartialWidthTable.hh.

Referenced by AddWidths(), Dump(), and Width().

◆ energy

std::vector<G4double> G4PartialWidthTable::energy
private

Definition at line 80 of file G4PartialWidthTable.hh.

Referenced by AddWidths(), Dump(), and G4PartialWidthTable().

◆ nEnergies

G4int G4PartialWidthTable::nEnergies
private

Definition at line 79 of file G4PartialWidthTable.hh.

Referenced by AddWidths(), and Dump().

◆ widths

std::vector<G4PhysicsFreeVector*> G4PartialWidthTable::widths
private

Definition at line 81 of file G4PartialWidthTable.hh.

Referenced by AddWidths(), Dump(), NumberOfChannels(), and Width().


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