source: trunk/source/processes/electromagnetic/lowenergy/include/G4hShellCrossSectionDoubleExpData.hh @ 1315

Last change on this file since 1315 was 1315, checked in by garnier, 14 years ago

update geant4-09-04-beta-cand-01 interfaces-V09-03-09 vis-V09-03-08

File size: 12.8 KB
Line 
1//
2// ********************************************************************
3// * License and Disclaimer                                           *
4// *                                                                  *
5// * The  Geant4 software  is  copyright of the Copyright Holders  of *
6// * the Geant4 Collaboration.  It is provided  under  the terms  and *
7// * conditions of the Geant4 Software License,  included in the file *
8// * LICENSE and available at  http://cern.ch/geant4/license .  These *
9// * include a list of copyright holders.                             *
10// *                                                                  *
11// * Neither the authors of this software system, nor their employing *
12// * institutes,nor the agencies providing financial support for this *
13// * work  make  any representation or  warranty, express or implied, *
14// * regarding  this  software system or assume any liability for its *
15// * use.  Please see the license in the file  LICENSE  and URL above *
16// * for the full disclaimer and the limitation of liability.         *
17// *                                                                  *
18// * This  code  implementation is the result of  the  scientific and *
19// * technical work of the GEANT4 collaboration.                      *
20// * By using,  copying,  modifying or  distributing the software (or *
21// * any work based  on the software)  you  agree  to acknowledge its *
22// * use  in  resulting  scientific  publications,  and indicate your *
23// * acceptance of all terms of the Geant4 Software license.          *
24// ********************************************************************
25//
26// Author: Simona Saliceti (Simona.Saliceti@ge.infn.it)
27//
28// History:
29// -----------
30// 22 Apr 2004 First committed to cvs
31//
32// -------------------------------------------------------------------
33// Class description:
34// Low Energy Electromagnetic Physics
35// Parameterisation of cross sections for proton ionisation, K shell
36// 2nd iteration (refined model at low energy)
37// Based on Paul & Sacher database:
38
39// Further documentation available from http://www.ge.infn.it/geant4/lowE
40// -------------------------------------------------------------------
41// $Id: G4hShellCrossSectionDoubleExpData.hh,v 1.3 2006/06/29 19:38:14 gunter Exp $
42// GEANT4 tag $Name: geant4-09-04-beta-cand-01 $
43
44#ifndef G4hShellCrossSectionDoubleExpData_HH
45#define G4hShellCrossSectionDoubleExpData_HH 1
46
47#include "globals.hh"
48#include <vector>
49#include <map>
50
51class G4hShellCrossSectionDoubleExpData
52{
53public:
54
55  G4hShellCrossSectionDoubleExpData();
56
57  ~G4hShellCrossSectionDoubleExpData();
58 
59  std::vector<std::vector<G4double>*> GetParam(G4int);
60
61private:
62  void FillVectorValuesEnergy();
63  void FillVectorValuesPar1();
64  void FillVectorValuesPar2(); 
65  void FillParameterMapEnergy();
66  void FillParameterMapPar1(); 
67  void FillParameterMapPar2();
68
69  inline void InitializeVectorEnergy(std::vector<G4double> &vectEnergy, G4double value) const;
70
71  inline void InitializeVectorPar1(std::vector<G4double> &vect, G4double value1, G4double value2, G4double value3) const;
72
73  inline void InitializeVectorPar2(std::vector<G4double> &vect, G4double value1, G4double value2, G4double value3, G4double value4, G4double value5) const;
74
75  std::map<G4int,std::vector<G4double>*,std::less<G4int> > parameterMapEnergy;
76
77  std::map<G4int,std::vector<G4double>*,std::less<G4int> > parameterMapPar1;
78
79  std::map<G4int,std::vector<G4double>*,std::less<G4int> > parameterMapPar2;
80
81
82
83  // Vector conteining energy
84  std::vector<G4double> energy6C;
85  std::vector<G4double> energy7N ;
86  std::vector<G4double> energy8O ;
87  std::vector<G4double> energy9F ;
88  std::vector<G4double> energy10Ne;
89  std::vector<G4double> energy11Na;
90  std::vector<G4double> energy12Mg;
91  std::vector<G4double> energy13Al;
92  std::vector<G4double> energy14Si;
93  std::vector<G4double> energy15P ;
94  std::vector<G4double> energy16S ;
95  std::vector<G4double> energy17Cl;
96  std::vector<G4double> energy18Ar;
97  std::vector<G4double> energy19K ;
98  std::vector<G4double> energy20Ca;
99  std::vector<G4double> energy21Sc;
100  std::vector<G4double> energy22Ti;
101  std::vector<G4double> energy23V ;
102  std::vector<G4double> energy24Cr;
103  std::vector<G4double> energy25Mn;
104  std::vector<G4double> energy26Fe;
105  std::vector<G4double> energy27Co;
106  std::vector<G4double> energy28Ni;
107  std::vector<G4double> energy29Cu;
108  std::vector<G4double> energy30Zn;
109  std::vector<G4double> energy31Ga;
110  std::vector<G4double> energy32Ge;
111  std::vector<G4double> energy33As;
112  std::vector<G4double> energy34Se;
113  std::vector<G4double> energy35Br;
114  std::vector<G4double> energy36Kr;
115  std::vector<G4double> energy37Rb;
116  std::vector<G4double> energy38Sr;
117  std::vector<G4double> energy39Y ;
118  std::vector<G4double> energy40Zr;
119  std::vector<G4double> energy41Nb;
120  std::vector<G4double> energy42Mo;
121  std::vector<G4double> energy43Tc;
122  std::vector<G4double> energy44Ru;
123  std::vector<G4double> energy45Rh;
124  std::vector<G4double> energy46Pd;
125  std::vector<G4double> energy47Ag;
126  std::vector<G4double> energy48Cd;
127  std::vector<G4double> energy49In;
128  std::vector<G4double> energy50Sn;
129  std::vector<G4double> energy51Sb;
130  std::vector<G4double> energy52Te;
131  std::vector<G4double> energy53I ;
132  std::vector<G4double> energy54Xe;
133  std::vector<G4double> energy55Cs;
134  std::vector<G4double> energy56Ba;
135  std::vector<G4double> energy57La;
136  std::vector<G4double> energy58Ce;
137  std::vector<G4double> energy59Pr;
138  std::vector<G4double> energy60Nd;
139  std::vector<G4double> energy61Pm;
140  std::vector<G4double> energy62Sm;
141  std::vector<G4double> energy63Eu;
142  std::vector<G4double> energy64Gd;
143  std::vector<G4double> energy65Tb;
144  std::vector<G4double> energy66Dy;
145  std::vector<G4double> energy67Ho;
146  std::vector<G4double> energy68Er;
147  std::vector<G4double> energy69Tm;
148  std::vector<G4double> energy70Yb;
149  std::vector<G4double> energy71Lu;
150  std::vector<G4double> energy72Hf;
151  std::vector<G4double> energy73Ta;
152  std::vector<G4double> energy74W ;
153  std::vector<G4double> energy75Re;
154  std::vector<G4double> energy76Os;
155  std::vector<G4double> energy77Ir;
156  std::vector<G4double> energy78Pt;
157  std::vector<G4double> energy79Au;
158  std::vector<G4double> energy80Hg;
159  std::vector<G4double> energy81Tl;
160  std::vector<G4double> energy82Pb;
161  std::vector<G4double> energy83Bi;
162  std::vector<G4double> energy84Po;
163  std::vector<G4double> energy85At;
164  std::vector<G4double> energy86Rn;
165  std::vector<G4double> energy87Fr;
166  std::vector<G4double> energy88Ra;
167  std::vector<G4double> energy89Ac;
168  std::vector<G4double> energy90Th;
169  std::vector<G4double> energy91Pa;
170  std::vector<G4double> energy92U ;
171
172  // Vector conteining parameters for low energy
173  std::vector<G4double> parlow6C;
174  std::vector<G4double> parlow7N ;
175  std::vector<G4double> parlow8O ;
176  std::vector<G4double> parlow9F ;
177  std::vector<G4double> parlow10Ne;
178  std::vector<G4double> parlow11Na;
179  std::vector<G4double> parlow12Mg;
180  std::vector<G4double> parlow13Al;
181  std::vector<G4double> parlow14Si;
182  std::vector<G4double> parlow15P ;
183  std::vector<G4double> parlow16S ;
184  std::vector<G4double> parlow17Cl;
185  std::vector<G4double> parlow18Ar;
186  std::vector<G4double> parlow19K ;
187  std::vector<G4double> parlow20Ca;
188  std::vector<G4double> parlow21Sc;
189  std::vector<G4double> parlow22Ti;
190  std::vector<G4double> parlow23V ;
191  std::vector<G4double> parlow24Cr;
192  std::vector<G4double> parlow25Mn;
193  std::vector<G4double> parlow26Fe;
194  std::vector<G4double> parlow27Co;
195  std::vector<G4double> parlow28Ni;
196  std::vector<G4double> parlow29Cu;
197  std::vector<G4double> parlow30Zn;
198  std::vector<G4double> parlow31Ga;
199  std::vector<G4double> parlow32Ge;
200  std::vector<G4double> parlow33As;
201  std::vector<G4double> parlow34Se;
202  std::vector<G4double> parlow35Br;
203  std::vector<G4double> parlow36Kr;
204  std::vector<G4double> parlow37Rb;
205  std::vector<G4double> parlow38Sr;
206  std::vector<G4double> parlow39Y ;
207  std::vector<G4double> parlow40Zr;
208  std::vector<G4double> parlow41Nb;
209  std::vector<G4double> parlow42Mo;
210  std::vector<G4double> parlow43Tc;
211  std::vector<G4double> parlow44Ru;
212  std::vector<G4double> parlow45Rh;
213  std::vector<G4double> parlow46Pd;
214  std::vector<G4double> parlow47Ag;
215  std::vector<G4double> parlow48Cd;
216  std::vector<G4double> parlow49In;
217  std::vector<G4double> parlow50Sn;
218  std::vector<G4double> parlow51Sb;
219  std::vector<G4double> parlow52Te;
220  std::vector<G4double> parlow53I ;
221  std::vector<G4double> parlow54Xe;
222  std::vector<G4double> parlow55Cs;
223  std::vector<G4double> parlow56Ba;
224  std::vector<G4double> parlow57La;
225  std::vector<G4double> parlow58Ce;
226  std::vector<G4double> parlow59Pr;
227  std::vector<G4double> parlow60Nd;
228  std::vector<G4double> parlow61Pm;
229  std::vector<G4double> parlow62Sm;
230  std::vector<G4double> parlow63Eu;
231  std::vector<G4double> parlow64Gd;
232  std::vector<G4double> parlow65Tb;
233  std::vector<G4double> parlow66Dy;
234  std::vector<G4double> parlow67Ho;
235  std::vector<G4double> parlow68Er;
236  std::vector<G4double> parlow69Tm;
237  std::vector<G4double> parlow70Yb;
238  std::vector<G4double> parlow71Lu;
239  std::vector<G4double> parlow72Hf;
240  std::vector<G4double> parlow73Ta;
241  std::vector<G4double> parlow74W ;
242  std::vector<G4double> parlow75Re;
243  std::vector<G4double> parlow76Os;
244  std::vector<G4double> parlow77Ir;
245  std::vector<G4double> parlow78Pt;
246  std::vector<G4double> parlow79Au;
247  std::vector<G4double> parlow80Hg;
248  std::vector<G4double> parlow81Tl;
249  std::vector<G4double> parlow82Pb;
250  std::vector<G4double> parlow83Bi;
251  std::vector<G4double> parlow84Po;
252  std::vector<G4double> parlow85At;
253  std::vector<G4double> parlow86Rn;
254  std::vector<G4double> parlow87Fr;
255  std::vector<G4double> parlow88Ra;
256  std::vector<G4double> parlow89Ac;
257  std::vector<G4double> parlow90Th;
258  std::vector<G4double> parlow91Pa;
259  std::vector<G4double> parlow92U ;
260
261  // Vector conteining parameters for high energy
262  std::vector<G4double> parhigh6C;
263  std::vector<G4double> parhigh7N ;
264  std::vector<G4double> parhigh8O ;
265  std::vector<G4double> parhigh9F ;
266  std::vector<G4double> parhigh10Ne;
267  std::vector<G4double> parhigh11Na;
268  std::vector<G4double> parhigh12Mg;
269  std::vector<G4double> parhigh13Al;
270  std::vector<G4double> parhigh14Si;
271  std::vector<G4double> parhigh15P ;
272  std::vector<G4double> parhigh16S ;
273  std::vector<G4double> parhigh17Cl;
274  std::vector<G4double> parhigh18Ar;
275  std::vector<G4double> parhigh19K ;
276  std::vector<G4double> parhigh20Ca;
277  std::vector<G4double> parhigh21Sc;
278  std::vector<G4double> parhigh22Ti;
279  std::vector<G4double> parhigh23V ;
280  std::vector<G4double> parhigh24Cr;
281  std::vector<G4double> parhigh25Mn;
282  std::vector<G4double> parhigh26Fe;
283  std::vector<G4double> parhigh27Co;
284  std::vector<G4double> parhigh28Ni;
285  std::vector<G4double> parhigh29Cu;
286  std::vector<G4double> parhigh30Zn;
287  std::vector<G4double> parhigh31Ga;
288  std::vector<G4double> parhigh32Ge;
289  std::vector<G4double> parhigh33As;
290  std::vector<G4double> parhigh34Se;
291  std::vector<G4double> parhigh35Br;
292  std::vector<G4double> parhigh36Kr;
293  std::vector<G4double> parhigh37Rb;
294  std::vector<G4double> parhigh38Sr;
295  std::vector<G4double> parhigh39Y ;
296  std::vector<G4double> parhigh40Zr;
297  std::vector<G4double> parhigh41Nb;
298  std::vector<G4double> parhigh42Mo;
299  std::vector<G4double> parhigh43Tc;
300  std::vector<G4double> parhigh44Ru;
301  std::vector<G4double> parhigh45Rh;
302  std::vector<G4double> parhigh46Pd;
303  std::vector<G4double> parhigh47Ag;
304  std::vector<G4double> parhigh48Cd;
305  std::vector<G4double> parhigh49In;
306  std::vector<G4double> parhigh50Sn;
307  std::vector<G4double> parhigh51Sb;
308  std::vector<G4double> parhigh52Te;
309  std::vector<G4double> parhigh53I ;
310  std::vector<G4double> parhigh54Xe;
311  std::vector<G4double> parhigh55Cs;
312  std::vector<G4double> parhigh56Ba;
313  std::vector<G4double> parhigh57La;
314  std::vector<G4double> parhigh58Ce;
315  std::vector<G4double> parhigh59Pr;
316  std::vector<G4double> parhigh60Nd;
317  std::vector<G4double> parhigh61Pm;
318  std::vector<G4double> parhigh62Sm;
319  std::vector<G4double> parhigh63Eu;
320  std::vector<G4double> parhigh64Gd;
321  std::vector<G4double> parhigh65Tb;
322  std::vector<G4double> parhigh66Dy;
323  std::vector<G4double> parhigh67Ho;
324  std::vector<G4double> parhigh68Er;
325  std::vector<G4double> parhigh69Tm;
326  std::vector<G4double> parhigh70Yb;
327  std::vector<G4double> parhigh71Lu;
328  std::vector<G4double> parhigh72Hf;
329  std::vector<G4double> parhigh73Ta;
330  std::vector<G4double> parhigh74W ;
331  std::vector<G4double> parhigh75Re;
332  std::vector<G4double> parhigh76Os;
333  std::vector<G4double> parhigh77Ir;
334  std::vector<G4double> parhigh78Pt;
335  std::vector<G4double> parhigh79Au;
336  std::vector<G4double> parhigh80Hg;
337  std::vector<G4double> parhigh81Tl;
338  std::vector<G4double> parhigh82Pb;
339  std::vector<G4double> parhigh83Bi;
340  std::vector<G4double> parhigh84Po;
341  std::vector<G4double> parhigh85At;
342  std::vector<G4double> parhigh86Rn;
343  std::vector<G4double> parhigh87Fr;
344  std::vector<G4double> parhigh88Ra;
345  std::vector<G4double> parhigh89Ac;
346  std::vector<G4double> parhigh90Th;
347  std::vector<G4double> parhigh91Pa;
348  std::vector<G4double> parhigh92U ;
349};
350
351#endif
Note: See TracBrowser for help on using the repository browser.