Geant4  10.02.p03
G4PartialWidthTable Class Reference

#include <G4PartialWidthTable.hh>

Collaboration diagram for G4PartialWidthTable:

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
 

Private Member Functions

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

Private Attributes

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

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 }
std::vector< G4double > energy
int G4int
Definition: G4Types.hh:78
static const double GeV
Definition: G4SIunits.hh:214
double G4double
Definition: G4Types.hh:76

◆ ~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 }
void PutValue(size_t binNumber, G4double binValue, G4double dataValue)
std::vector< G4double > energy
std::vector< G4String > daughter1
#define width
int G4int
Definition: G4Types.hh:78
std::vector< G4PhysicsFreeVector * > widths
static const double GeV
Definition: G4SIunits.hh:214
std::vector< G4String > daughter2
double G4double
Definition: G4Types.hh:76
Here is the call graph for this function:

◆ 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;
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 }
std::vector< G4double > energy
std::vector< G4String > daughter1
#define width
int G4int
Definition: G4Types.hh:78
G4GLOB_DLL std::ostream G4cout
bool G4bool
Definition: G4Types.hh:79
std::vector< G4PhysicsFreeVector * > widths
G4double GetValue(G4double theEnergy, G4bool &isOutRange) const
#define G4endl
Definition: G4ios.hh:61
std::vector< G4String > daughter2
double G4double
Definition: G4Types.hh:76
Here is the call graph for this function:

◆ NumberOfChannels()

G4int G4PartialWidthTable::NumberOfChannels ( ) const

Definition at line 77 of file G4PartialWidthTable.cc.

78 {
79  return widths.size();
80 }
std::vector< G4PhysicsFreeVector * > 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;
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 }
std::vector< G4String > daughter1
#define width
int G4int
Definition: G4Types.hh:78
Char_t n[5]
std::vector< G4PhysicsFreeVector * > widths
std::vector< G4String > daughter2

Member Data Documentation

◆ daughter1

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

Definition at line 82 of file G4PartialWidthTable.hh.

◆ daughter2

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

Definition at line 83 of file G4PartialWidthTable.hh.

◆ energy

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

Definition at line 80 of file G4PartialWidthTable.hh.

◆ nEnergies

G4int G4PartialWidthTable::nEnergies
private

Definition at line 79 of file G4PartialWidthTable.hh.

◆ widths

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

Definition at line 81 of file G4PartialWidthTable.hh.


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