source: trunk/source/materials/test/testStoppingPower.cc @ 1347

Last change on this file since 1347 was 1347, checked in by garnier, 13 years ago

geant4 tag 9.4

File size: 4.4 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// GEANT4 tag $Name: geant4-09-04-ref-00 $
28//
29//
30// History: Test for calculation Stopping Power of ions
31//          G4Stopping classes are in $G4INSTALL/source/materials/
32//
33//
34// 11.08.08 A.Ivantchenko
35//
36// in the framework of the ESA Technology Research Programme
37// (ESA contract 21435/08/NL/AT)
38//
39// $TESTTARGET should be gived, please look GNUmakefile
40//
41
42#include "G4MaterialStoppingICRU73.hh"
43#include "G4SimpleMaterialStoppingICRU73.hh"
44#include "G4IronStoppingICRU73.hh"
45
46int main(){ 
47G4double E[31] = {.025,.03,.04,.05,.06,.07,.08,.09,.1,.15,.2,.25,.3,.4,.5,.6,.7,.8,.9,1,1.5,2,2.5,3,4,5,6,7,8,9,10};
48G4int Z_Ion[16] = {3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18};
49G4double A_Ion[16] = {6.941,9.0122,10.811,12.011,14.007,15.999,18.998,20.180,22.990,24.305,26.982,28.086,30.974,32.065,35.453,39.948};
50G4int AA_Ion[16] = {7,9,11,12,14,16,19,20,23,24,27,28,31,32,35,40};
51G4String NameMaterial[31]={"G4_A-150_TISSUE","G4_ADIPOSE_TISSUE_ICRP","G4_AIR","G4_ALUMINUM_OXIDE","G4_BONE_COMPACT_ICRU","G4_BONE_CORTICAL_ICRP","G4_C-552","G4_CALCIUM_FLUORIDE","G4_CARBON_DIOXIDE","G4_Pyrex_Glass","G4_KAPTON","G4_LITHIUM_FLUORIDE","G4_LITHIUM_TETRABORATE","G4_METHANE","G4_MUSCLE_STRIATED_ICRU","G4_NYLON-6/6","G4_PHOTO_EMULSION","G4_PLASTIC_SC_VINYLTOLUENE","G4_POLYCARBONATE","G4_POLYETHYLENE","G4_MYLAR","G4_LUCITE","G4_POLYSTYRENE","G4_TEFLON","G4_PROPANE","G4_SILICON_DIOXIDE","G4_SODIUM_IODIDE","G4_TISSUE-METHANE","G4_TISSUE-PROPANE","G4_WATER","G4_WATER_VAPOR"};
52
53//G4double G4MaterialStoppingICRU73::GetDEDX(G4int ionZ, G4int idxMaterial,G4double kinEnergy)
54//G4double G4SimpleMaterialStoppingICRU73::GetDEDX(G4int ionZ, G4int idxMaterial, G4double kinEnergy)
55//G4double G4IronStoppingICRU73::GetDEDX(G4int idxMaterial, G4double kinEnergy)
56
57  G4String matN = "G4_NYLON-6/6";
58  G4int ionZ = 14; 
59  G4double Energy = .5;
60  G4MaterialStoppingICRU73 mS;
61  G4double dedx = mS.GetDEDX(Energy,ionZ, matN);
62  G4cout << "Z=" << ionZ << " in " << matN << " at E = " << Energy << "MeV, DEDX is "<< dedx*gram/(1000*MeV*cm2) << G4endl;
63  matN = "G4_NYLON-6/6";
64  dedx = mS.GetDEDX(Energy, 3, matN);
65  G4cout << "Z=" << ionZ << " in " << matN << " at E = " << Energy << "MeV, DEDX is "<< dedx*gram/(1000*MeV*cm2) << G4endl;
66
67  matN = "G4_Cu";
68  ionZ = 5; 
69  Energy = 5.;
70  G4SimpleMaterialStoppingICRU73 mS1;
71  G4double dedx1 = mS1.GetDEDX(Energy,ionZ, matN);
72  G4cout << "Z=" << ionZ << " in " << matN << " at E = " << Energy << "MeV, DEDX is "<< dedx1*gram/(1000*MeV*cm2) << G4endl;
73     
74  matN = "G4_WATER";
75  ionZ = 26; 
76  Energy = 10.;
77  G4IronStoppingICRU73 mS2;
78  G4double dedx2 = mS2.GetDEDX(Energy,ionZ, matN);
79  G4cout << "Z=26 in " << matN << " at E = " << Energy << "MeV, DEDX =" << dedx2*gram/(1000*MeV*cm2)<< " MeV" << G4endl;
80  G4cout << "### End ###" << G4endl; 
81 
82   return 0;
83} 
84
Note: See TracBrowser for help on using the repository browser.