source: trunk/source/processes/electromagnetic/lowenergy/src/G4PenelopeCrossSectionHandler.cc@ 1014

Last change on this file since 1014 was 819, checked in by garnier, 17 years ago

import all except CVS

File size: 5.3 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// GEANT4 Class file
27//
28//
29// File name: G4PenelopeCrossSectionHandler
30//
31// Author: Luciano Pandola
32//
33// Creation date: 04 Jul 2003
34//
35// -------------------------------------------------------------------
36#include "G4PenelopeCrossSectionHandler.hh"
37#include "G4PenelopeIonisation.hh"
38#include "G4DataVector.hh"
39#include "G4CompositeEMDataSet.hh"
40#include "G4VDataSetAlgorithm.hh"
41#include "G4LinLogLogInterpolation.hh"
42#include "G4SemiLogInterpolation.hh"
43#include "G4VEMDataSet.hh"
44#include "G4EMDataSet.hh"
45#include "G4Material.hh"
46#include "G4ProductionCutsTable.hh"
47#include "G4ParticleDefinition.hh"
48
49G4PenelopeCrossSectionHandler::G4PenelopeCrossSectionHandler(G4PenelopeIonisation* theProcess,
50 const G4ParticleDefinition& aParticleType,
51 G4VDataSetAlgorithm* alg,
52 G4double emin,
53 G4double emax,
54 G4int nbin)
55 : G4VCrossSectionHandler(),
56 process(theProcess),
57 particle(aParticleType)
58{
59 G4VCrossSectionHandler::Initialise(alg, emin, emax, nbin);
60 interp = new G4LinLogLogInterpolation();
61}
62
63
64G4PenelopeCrossSectionHandler::~G4PenelopeCrossSectionHandler()
65{
66 delete interp;
67}
68
69
70std::vector<G4VEMDataSet*>* G4PenelopeCrossSectionHandler::BuildCrossSectionsForMaterials(
71 const G4DataVector& energyVector,
72 const G4DataVector* energyCuts)
73{
74 G4int verbose = 0;
75 std::vector<G4VEMDataSet*>* set = new std::vector<G4VEMDataSet*>;
76
77 G4DataVector* energies;
78 G4DataVector* cs;
79 G4int nOfBins = energyVector.size();
80
81
82 const G4ProductionCutsTable* theCoupleTable=
83 G4ProductionCutsTable::GetProductionCutsTable();
84 size_t numOfCouples = theCoupleTable->GetTableSize();
85
86 for (size_t m=0; m<numOfCouples; m++) {
87
88 const G4MaterialCutsCouple* couple = theCoupleTable->GetMaterialCutsCouple(m);
89 const G4Material* material= couple->GetMaterial();
90 const G4ElementVector* elementVector = material->GetElementVector();
91 const G4double* nAtomsPerVolume = material->GetAtomicNumDensityVector();
92 G4double electronVolumeDensity =
93 material->GetTotNbOfElectPerVolume(); //electron density
94 G4int nElements = material->GetNumberOfElements();
95
96 if(verbose > 0) {
97 G4cout << "Penelope CS for " << m << "th material "
98 << material->GetName()
99 << " eEl= " << nElements << G4endl;
100 }
101
102 G4double tcut = (*energyCuts)[m];
103
104 G4VDataSetAlgorithm* algo = interp->Clone();
105 G4VEMDataSet* setForMat = new G4CompositeEMDataSet(algo,1.,1.);
106
107 for (G4int i=0; i<nElements; i++) {
108
109 G4int Z = (G4int) (*elementVector)[i]->GetZ();
110 energies = new G4DataVector;
111 cs = new G4DataVector;
112 G4double density = nAtomsPerVolume[i];
113
114 for (G4int bin=0; bin<nOfBins; bin++) {
115
116 G4double e = energyVector[bin];
117 energies->push_back(e);
118 G4double value = 0.0;
119
120 if(e > tcut) {
121 G4double cross = FindValue(Z, e);
122 G4double p = process->CalculateCrossSectionsRatio(e,tcut,Z,electronVolumeDensity,
123 particle);
124 value += cross * p * density;
125
126 if(verbose>0 && m == 0 && e>=1. && e<=0.) {
127 G4cout << "G4PenIonCrossSH: e(MeV)= " << e/MeV
128 << " cross= " << cross
129 << " p= " << p
130 << " value= " << value
131 << " tcut(MeV)= " << tcut/MeV
132 << " rho= " << density
133 << " Z= " << Z
134 << G4endl;
135 }
136
137 }
138 cs->push_back(value);
139 }
140
141 G4VDataSetAlgorithm* algo = interp->Clone();
142 G4VEMDataSet* elSet = new G4EMDataSet(i,energies,cs,algo,1.,1.);
143 setForMat->AddComponent(elSet);
144 }
145 set->push_back(setForMat);
146 }
147 return set;
148}
149
150
Note: See TracBrowser for help on using the repository browser.