source: trunk/source/materials/include/G4MaterialStoppingICRU73.hh @ 1337

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

tag geant4.9.4 beta 1 + modifs locales

File size: 4.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// $Id: G4MaterialStoppingICRU73.hh,v 1.8 2009/11/09 16:51:07 vnivanch Exp $
27// GEANT4 tag $Name: geant4-09-04-beta-01 $
28
29#ifndef G4MaterialStoppingICRU73_h
30#define G4MaterialStoppingICRU73_h 1
31
32//---------------------------------------------------------------------------
33//
34// ClassName:   G4MaterialStoppingICRU73
35//
36// Description: Data on stopping powers for light ions in compounds
37//
38// Author:      Ivantchenko 10.07.2008
39//
40// in the framework of the ESA Technology Research Programme
41// (ESA contract 21435/08/NL/AT)
42//
43// Modifications:
44// 03.11.2009 A. Lechner:  Added new methods BuildPhysicsVector according
45//            to interface changes in base class G4VIonDEDXTable.
46//
47//----------------------------------------------------------------------------
48//
49// Class Description:
50//
51// Data on Stopping Powers from the ICRU73 report
52//
53
54//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
55
56
57#include "globals.hh"
58#include "G4VIonDEDXTable.hh"
59#include "G4LPhysicsFreeVector.hh"
60#include <vector>
61
62
63class G4MaterialStoppingICRU73 : public G4VIonDEDXTable
64{
65public:
66
67  G4MaterialStoppingICRU73(G4bool splineFlag = true);
68
69  ~G4MaterialStoppingICRU73();
70
71  G4bool BuildPhysicsVector(G4int ionZ, 
72                            const G4String& matName);
73
74  G4bool BuildPhysicsVector(G4int ionZ, 
75                            G4int matZ);
76
77  G4bool IsApplicable(G4int ionZ, 
78                      const G4String& matName);
79
80  G4bool IsApplicable(G4int ionZ, 
81                      G4int matZ);
82
83  G4PhysicsVector* GetPhysicsVector(G4int ionZ, 
84                                    const G4String& matName);
85
86  G4PhysicsVector* GetPhysicsVector(G4int ionZ, 
87                                    G4int matZ);
88
89  G4double GetDEDX(G4double kinEnergyPerNucleon,
90                   G4int ionZ,
91                   const G4String& matName);
92
93  G4double GetDEDX(G4double kinEnergyPerNucleon,
94                   G4int ionZ,
95                   G4int matZ);
96
97private:
98  // Function for creating a physics vector
99  G4PhysicsVector* CreatePhysicsVector(G4double* energy, 
100                                       G4double* stoppower, 
101                                       G4double factor);
102
103  // Function for creating a physics vector (full range up to 1 GeV/u)
104  G4PhysicsVector* CreatePhysicsVectorFullRange(G4double* energy, 
105                                                G4double* stoppower, 
106                                                G4double factor);
107
108  // Assignment operator and copy constructor
109  G4MaterialStoppingICRU73 & 
110                       operator=(const G4MaterialStoppingICRU73 &right);
111  G4MaterialStoppingICRU73(const G4MaterialStoppingICRU73&);
112
113  // Flag indicating the use of spline interpolation for dE/dx vectors
114  G4bool spline;
115
116  // Minimum and maximum atomic number
117  G4int minIonAtomicNmb;
118  G4int maxIonAtomicNmb;
119
120  // Vector containing the names of the materials
121  std::vector<G4String> namesMat;
122
123  // Keys (ion atomic number and material names) corresponding to created
124  // dE/dx vectors
125  typedef std::pair<G4int, G4String> DEDXKey;
126  std::vector<DEDXKey> dedxKeys;
127
128  // Vector of dE/dx vectors
129  std::vector<G4PhysicsVector*> dedx;
130};
131
132
133//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
134
135#endif
Note: See TracBrowser for help on using the repository browser.