source: trunk/source/materials/include/G4ExtDEDXTable.hh@ 1159

Last change on this file since 1159 was 1059, checked in by garnier, 17 years ago

file release beta

File size: 6.2 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//
27//
28// ===========================================================================
29// GEANT4 class header file
30//
31// Class: G4ExtDEDXTable
32//
33// Base class: G4VIonDEDXTable
34//
35// Author: Anton Lechner (Anton.Lechner@cern.ch)
36//
37// First implementation: 29. 02. 2009
38//
39// Modifications:
40//
41//
42// Class description:
43// Utility class for users to add their own electronic stopping powers
44// for ions. This class is dedicated for use with G4IonParametrisedLossModel
45// of the low-energy electromagnetic package.
46//
47// Comments:
48//
49// ===========================================================================
50//
51
52#ifndef G4EXTDEDXTABLE_HH
53#define G4EXTDEDXTABLE_HH
54
55#include "globals.hh"
56#include "G4VIonDEDXTable.hh"
57#include <utility>
58#include <vector>
59#include <map>
60
61
62class G4ExtDEDXTable : public G4VIonDEDXTable {
63
64 public:
65 G4ExtDEDXTable();
66 virtual ~G4ExtDEDXTable();
67
68 // Function for checking the availability of stopping power tables
69 // for a given ion-material couple, where the material consists of
70 // a single element only.
71 G4bool IsApplicable(
72 G4int atomicNumberIon, // Atomic number of ion
73 G4int atomicNumberElem // Atomic number of elemental material
74 );
75
76 // Function for checking the availability of stopping power tables
77 // for given ion-material couples.
78 G4bool IsApplicable(
79 G4int atomicNumberIon, // Atomic number of ion
80 const G4String& matIdentifier // Name or chemical formula of material
81 );
82
83 // Function returning the stopping power vector for given ion-material
84 // couples, where the material consists of a single element only.
85 G4PhysicsVector* GetPhysicsVector(
86 G4int atomicNumberIon, // Atomic number of ion
87 G4int atomicNumberElem // Atomic number of elemental material
88 );
89
90 // Function returning the stopping power vector for given ion-material
91 // couples.
92 G4PhysicsVector* GetPhysicsVector(
93 G4int atomicNumberIon, // Atomic number of ion
94 const G4String& matIdenfier // Name or chemical formula of material
95 );
96
97 // Function returning the stopping power value for given ion-material
98 // couples, where the material consists of a single element only, and
99 // given energy.
100 G4double GetDEDX(
101 G4double kinEnergyPerNucleon, // Kinetic energy per nucleon
102 G4int atomicNumberIon, // Atomic number of ion
103 G4int atomicNumberElem // Atomic number of elemental material
104 );
105
106 // Function returning the stopping power value for given ion-material
107 // couples and given energy.
108 G4double GetDEDX(
109 G4double kinEnergyPerNucleon, // Kinetic energy per nucleon
110 G4int atomicNumberIon, // Atomic number of ion
111 const G4String& matIdenfier // Name or chemical formula of material
112 );
113
114 // Function for adding dE/dx vector for an elemental materials. The last
115 // argument only applies to elemental materials.
116 G4bool AddPhysicsVector(
117 G4PhysicsVector* physicsVector, // Physics vector
118 G4int atomicNumberIon, // Atomic number of ion
119 const G4String& matIdenfier, // Name or chemical formula of material
120 G4int atomicNumberElem = 0 // Atomic number of elemental material
121 );
122
123 // Function for removing dE/dx vector for a compound materials
124 G4bool RemovePhysicsVector(
125 G4int atomicNumberIon, // Atomic number of ion
126 const G4String& matIdentifier // Name or chemical formula of material
127 );
128
129 // Function writing all stopping power vectors to file
130 G4bool StorePhysicsTable(
131 const G4String& fileName // File name
132 );
133
134 // Function retrieving all stopping power vectors from file
135 G4bool RetrievePhysicsTable(
136 const G4String& fileName // File name
137 );
138
139 // Function deleting all physics vectors and clearing the maps
140 void ClearTable();
141
142 // Function printing the ion-material pairs of available vectors to stdout
143 void DumpMap();
144
145 private:
146 G4PhysicsVector* CreatePhysicsVector(G4int vectorType);
147
148 G4int FindAtomicNumberElement(G4PhysicsVector* physicsVector);
149
150 typedef std::pair<G4int, G4int> G4IonDEDXKeyElem;
151 typedef std::pair<G4int, G4String> G4IonDEDXKeyMat;
152
153 typedef std::map<G4IonDEDXKeyElem, G4PhysicsVector*> G4IonDEDXMapElem;
154 typedef std::map<G4IonDEDXKeyMat, G4PhysicsVector*> G4IonDEDXMapMat;
155
156 G4IonDEDXMapElem dedxMapElements;
157 G4IonDEDXMapMat dedxMapMaterials;
158};
159
160#endif // G4EXTDEDXTABLE_HH
Note: See TracBrowser for help on using the repository browser.