Geant4.10
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
Public Member Functions
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 ( const G4double energies,
G4int  entries 
)

Definition at line 49 of file G4PartialWidthTable.cc.

References python.hepunit::GeV.

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 }
int G4int
Definition: G4Types.hh:78
double G4double
Definition: G4Types.hh:76
G4PartialWidthTable::~G4PartialWidthTable ( )
virtual

Definition at line 61 of file G4PartialWidthTable.cc.

62 { }

Member Function Documentation

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

Definition at line 105 of file G4PartialWidthTable.cc.

References python.hepunit::GeV, G4PhysicsFreeVector::PutValue(), and width.

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)
#define width
int G4int
Definition: G4Types.hh:78
const XML_Char int const XML_Char * value
double G4double
Definition: G4Types.hh:76
void G4PartialWidthTable::Dump ( ) const

Definition at line 125 of file G4PartialWidthTable.cc.

References G4cout, G4endl, G4PhysicsVector::GetValue(), and width.

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 }
G4double GetValue(G4double theEnergy, G4bool &isOutRange) const
#define width
int G4int
Definition: G4Types.hh:78
G4GLOB_DLL std::ostream G4cout
bool G4bool
Definition: G4Types.hh:79
#define G4endl
Definition: G4ios.hh:61
double G4double
Definition: G4Types.hh:76
G4int G4PartialWidthTable::NumberOfChannels ( ) const

Definition at line 77 of file G4PartialWidthTable.cc.

78 {
79  return widths.size();
80 }
G4bool G4PartialWidthTable::operator!= ( const G4PartialWidthTable right) const

Definition at line 71 of file G4PartialWidthTable.cc.

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

Definition at line 65 of file G4PartialWidthTable.cc.

66 {
67  return (this == (G4PartialWidthTable *) &right);
68 }
const G4PhysicsVector * G4PartialWidthTable::Width ( const G4String name1,
const G4String name2 
) const

Definition at line 83 of file G4PartialWidthTable.cc.

References n, and width.

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 }
#define width
int G4int
Definition: G4Types.hh:78
const G4int n

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