89{
90#ifdef CHAMPION_VERBOSE
91 if (verboseLevel > 3)
92 {
93 G4cout <<
"Calling G4DNAChampionElasticModel::Initialise()" <<
G4endl;
94 }
95#endif
96
98 {
99 G4Exception(
"G4DNAChampionElasticModel::Initialise",
100 "em0002",
102 "Model not applicable to particle type.");
103 }
104
105
106
108 {
109 G4cout <<
"G4DNAChampionElasticModel: low energy limit increased from "
113 }
114
116 {
117 G4cout <<
"G4DNAChampionElasticModel: high energy limit decreased from "
121 }
122
123 if (isInitialised) { return; }
124
125
126
127
128
130
131 G4String fileElectron("dna/sigma_elastic_e_champion");
132
133 fpData = new G4DNACrossSectionDataSet(new G4LogLogInterpolation(),
134 eV,
135 scaleFactor );
136 fpData->LoadData(fileElectron);
137
138
139
141
142 if (path == nullptr)
143 {
145 "em0006",
147 "G4LEDATA environment variable not set.");
148 return;
149 }
150
151 std::ostringstream eFullFileName;
152 eFullFileName << path << "/dna/sigmadiff_cumulated_elastic_e_champion_hp.dat";
153 std::ifstream eDiffCrossSection(eFullFileName.str().c_str());
154
155 if (!eDiffCrossSection)
156 {
158 errMsg << "Missing data file:/dna/sigmadiff_cumulated_elastic_e_champion_hp.dat; "
159 << "please use G4EMLOW6.36 and above.";
160
161 G4Exception(
"G4DNAChampionElasticModel::Initialise",
162 "em0003",
164 errMsg);
165 }
166
167
168
169
170 eTdummyVec.clear();
171 eVecm.clear();
172 eDiffCrossSectionData.clear();
173
174
175
176 eTdummyVec.push_back(0.);
177
178 while(!eDiffCrossSection.eof())
179 {
182 eDiffCrossSection >> tDummy >> eDummy;
183
184
185
186 if (tDummy != eTdummyVec.back())
187 {
188 eTdummyVec.push_back(tDummy);
189 eVecm[tDummy].push_back(0.);
190 }
191
192 eDiffCrossSection >> eDiffCrossSectionData[tDummy][eDummy];
193
194 if (eDummy != eVecm[tDummy].back()) eVecm[tDummy].push_back(eDummy);
195 }
196
197
198
199#ifdef CHAMPION_VERBOSE
200 if (verboseLevel>0)
201 {
202 if (verboseLevel > 2)
203 {
204 G4cout <<
"Loaded cross section files for Champion Elastic model" <<
G4endl;
205 }
206
207 G4cout <<
"Champion Elastic model is initialized " <<
G4endl
208 << "Energy range: "
212 }
213#endif
214
215
217
220
222 isInitialised = true;
223
224}
const char * G4FindDataDir(const char *)
static G4DNAMolecularMaterial * Instance()
static G4Material * GetMaterial(const G4String &name, G4bool warning=true)
G4ParticleChangeForGamma * GetParticleChangeForGamma()