Geant4.10
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
Public Member Functions
G4AdjointCSMatrix Class Reference

#include <G4AdjointCSMatrix.hh>

Public Member Functions

 G4AdjointCSMatrix (G4bool aBool)
 
 ~G4AdjointCSMatrix ()
 
void Clear ()
 
void AddData (G4double aPrimEnergy, G4double aCS, std::vector< double > *aLogSecondEnergyVector, std::vector< double > *aLogProbVector, size_t n_pro_decade=0)
 
G4bool GetData (unsigned int i, G4double &aPrimEnergy, G4double &aCS, G4double &log0, std::vector< double > *&aLogSecondEnergyVector, std::vector< double > *&aLogProbVector, std::vector< size_t > *&aLogProbVectorIndex)
 
std::vector< double > * GetLogPrimEnergyVector ()
 
std::vector< double > * GetLogCrossSectionvector ()
 
G4double GetDlog ()
 
G4bool IsScatProjToProjCase ()
 
void Write (G4String file_name)
 
void Read (G4String file_name)
 

Detailed Description

Definition at line 60 of file G4AdjointCSMatrix.hh.

Constructor & Destructor Documentation

G4AdjointCSMatrix::G4AdjointCSMatrix ( G4bool  aBool)

Definition at line 38 of file G4AdjointCSMatrix.cc.

38  {
39  theLogPrimEnergyVector.clear();
40  theLogCrossSectionVector.clear();
41  theLogSecondEnergyMatrix.clear();
42  theLogProbMatrix.clear();
43  theLogProbMatrixIndex.clear();
44  log0Vector.clear();
45  nb_of_PrimEnergy=0;
46  is_scat_proj_to_proj_case =aBool;
47  dlog =0;
48 }
G4AdjointCSMatrix::~G4AdjointCSMatrix ( )

Definition at line 51 of file G4AdjointCSMatrix.cc.

51  {
52  theLogPrimEnergyVector.clear();
53  theLogCrossSectionVector.clear();
54  theLogSecondEnergyMatrix.clear();
55  theLogProbMatrix.clear();
56 }

Member Function Documentation

void G4AdjointCSMatrix::AddData ( G4double  aPrimEnergy,
G4double  aCS,
std::vector< double > *  aLogSecondEnergyVector,
std::vector< double > *  aLogProbVector,
size_t  n_pro_decade = 0 
)

Definition at line 71 of file G4AdjointCSMatrix.cc.

References G4AdjointInterpolator::FindPosition(), G4AdjointInterpolator::GetInstance(), int(), and G4INCL::Math::min().

72  {
73 
75 
76  //At this time we consider that the energy is increasing monotically
77  theLogPrimEnergyVector.push_back(aLogPrimEnergy);
78  theLogCrossSectionVector.push_back(aLogCS);
79  theLogSecondEnergyMatrix.push_back(aLogSecondEnergyVector);
80  theLogProbMatrix.push_back(aLogProbVector);
81 
82  std::vector< size_t>* aLogProbVectorIndex = 0;
83  dlog =0;
84 
85  if (n_pro_decade > 0 && aLogProbVector->size()>0) {
86  aLogProbVectorIndex = new std::vector< size_t>();
87  dlog=std::log(10.)/n_pro_decade;
88  G4double log_val = int(std::min((*aLogProbVector)[0],aLogProbVector->back())/dlog)*dlog;
89  log0Vector.push_back(log_val);
90 
91  while(log_val<0.) {
92  aLogProbVectorIndex->push_back(theInterpolator->FindPosition(log_val,(*aLogProbVector)));
93  log_val+=dlog;
94  }
95  }
96  else {
97  log0Vector.push_back(0.);
98  }
99  theLogProbMatrixIndex.push_back(aLogProbVectorIndex);
100 
101 
102  nb_of_PrimEnergy++;
103 
104 
105 }
typedef int(XMLCALL *XML_NotStandaloneHandler)(void *userData)
size_t FindPosition(G4double &x, std::vector< G4double > &x_vec, size_t ind_min=0, size_t ind_max=0)
T min(const T t1, const T t2)
brief Return the smallest of the two arguments
static G4AdjointInterpolator * GetInstance()
double G4double
Definition: G4Types.hh:76
void G4AdjointCSMatrix::Clear ( )

Definition at line 59 of file G4AdjointCSMatrix.cc.

60 {
61  theLogPrimEnergyVector.clear();
62  theLogCrossSectionVector.clear();
63  theLogSecondEnergyMatrix.clear();
64  theLogProbMatrix.clear();
65  theLogProbMatrixIndex.clear();
66  log0Vector.clear();
67  nb_of_PrimEnergy=0;
68 }
G4bool G4AdjointCSMatrix::GetData ( unsigned int  i,
G4double aPrimEnergy,
G4double aCS,
G4double log0,
std::vector< double > *&  aLogSecondEnergyVector,
std::vector< double > *&  aLogProbVector,
std::vector< size_t > *&  aLogProbVectorIndex 
)

Definition at line 108 of file G4AdjointCSMatrix.cc.

Referenced by G4VEmAdjointModel::SampleAdjSecEnergyFromCSMatrix().

110 { if (i>= nb_of_PrimEnergy) return false;
111  //G4cout<<"Test Get Data "<<G4endl;
112  aLogPrimEnergy = theLogPrimEnergyVector[i];
113  aLogCS = theLogCrossSectionVector[i];
114  aLogSecondEnergyVector = theLogSecondEnergyMatrix[i];
115  aLogProbVector = theLogProbMatrix[i];
116  aLogProbVectorIndex = theLogProbMatrixIndex[i];
117  log0=log0Vector[i];
118  return true;
119 
120 }
G4double G4AdjointCSMatrix::GetDlog ( )
inline

Definition at line 82 of file G4AdjointCSMatrix.hh.

82 {return dlog;}
std::vector< double>* G4AdjointCSMatrix::GetLogCrossSectionvector ( )
inline

Definition at line 81 of file G4AdjointCSMatrix.hh.

81 {return &theLogCrossSectionVector;}
std::vector< double>* G4AdjointCSMatrix::GetLogPrimEnergyVector ( )
inline

Definition at line 80 of file G4AdjointCSMatrix.hh.

Referenced by G4VEmAdjointModel::SampleAdjSecEnergyFromCSMatrix().

80 {return &theLogPrimEnergyVector;}
G4bool G4AdjointCSMatrix::IsScatProjToProjCase ( )
inline

Definition at line 83 of file G4AdjointCSMatrix.hh.

Referenced by G4VEmAdjointModel::SampleAdjSecEnergyFromCSMatrix().

83 {return is_scat_proj_to_proj_case;}
void G4AdjointCSMatrix::Read ( G4String  file_name)

Definition at line 161 of file G4AdjointCSMatrix.cc.

162 { std::fstream FileOutput(file_name, std::ios::in);
163  size_t n1,n2;
164 
165 
166  theLogPrimEnergyVector.clear();
167  theLogCrossSectionVector.clear();
168  theLogSecondEnergyMatrix.clear();
169  theLogProbMatrix.clear();
170  FileOutput>>n1;
171  for (size_t i=0; i<n1;i++){
172  G4double E,CS;
173  FileOutput>>E>>CS;
174  theLogPrimEnergyVector.push_back(E);
175  theLogCrossSectionVector.push_back(CS);
176  FileOutput>>n2;
177  theLogSecondEnergyMatrix.push_back(new std::vector<G4double>());
178  theLogProbMatrix.push_back(new std::vector<G4double>());
179 
180  for (size_t j=0; j<n2;j++){
181  G4double E1;
182  FileOutput>>E1;
183  theLogSecondEnergyMatrix[i]->push_back(E1);
184  }
185  FileOutput>>n2;
186  for (size_t j=0; j<n2;j++){
187  G4double prob;
188  FileOutput>>prob;
189  theLogProbMatrix[i]->push_back(prob);
190  }
191 
192 
193 
194  }
195 
196 
197 
198 
199 }
double G4double
Definition: G4Types.hh:76
void G4AdjointCSMatrix::Write ( G4String  file_name)

Definition at line 123 of file G4AdjointCSMatrix.cc.

References G4endl, and python.hepunit::MeV.

124 { std::fstream FileOutput(file_name, std::ios::out);
125  FileOutput<<std::setiosflags(std::ios::scientific);
126  FileOutput<<std::setprecision(6);
127  FileOutput<<theLogPrimEnergyVector.size()<<G4endl;
128  for (size_t i=0;i<theLogPrimEnergyVector.size();i++){
129  FileOutput<<std::exp(theLogPrimEnergyVector[i])/MeV<<'\t'<<std::exp(theLogCrossSectionVector[i])<<G4endl;
130  size_t j1=0;
131  FileOutput<<theLogSecondEnergyMatrix[i]->size()<<G4endl;
132  for (size_t j=0;j<theLogSecondEnergyMatrix[i]->size();j++){
133  FileOutput<<std::exp((*theLogSecondEnergyMatrix[i])[j]);
134  j1++;
135  if (j1<10) FileOutput<<'\t';
136  else {
137  FileOutput<<G4endl;
138  j1=0;
139  }
140  }
141  if (j1>0) FileOutput<<G4endl;
142  j1=0;
143  FileOutput<<theLogProbMatrix[i]->size()<<G4endl;
144  for (size_t j=0;j<theLogProbMatrix[i]->size();j++){
145  FileOutput<<std::exp((*theLogProbMatrix[i])[j]);
146  j1++;
147  if (j1<10) FileOutput<<'\t';
148  else {
149  FileOutput<<G4endl;
150  j1=0;
151  }
152  }
153  if (j1>0) FileOutput<<G4endl;
154 
155 
156  }
157 
158 }
#define G4endl
Definition: G4ios.hh:61

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