source: trunk/source/processes/electromagnetic/lowenergy/include/G4VCrossSectionHandler.hh@ 1201

Last change on this file since 1201 was 1196, checked in by garnier, 16 years ago

update CVS release candidate geant4.9.3.01

File size: 5.0 KB
RevLine 
[819]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//
[1192]27// $Id: G4VCrossSectionHandler.hh,v 1.15 2009/09/25 07:41:34 sincerti Exp $
[1196]28// GEANT4 tag $Name: geant4-09-03-cand-01 $
[819]29//
30// Author: Maria Grazia Pia (Maria.Grazia.Pia@cern.ch)
31//
32// History:
33// -----------
[1192]34// 16 Sep 2001 MGP Created
35// 26 Sep 2001 V.Ivanchenko Hide copy constructor and assignement operator
36// 18 Apr 2002 V.Ivanchenko Move member function ValueForMaterial to public
37// 21 Jan 2003 V.Ivanchenko Cut per region
38// 15 Jul 2009 N.A.Karakatsanis New methods added for loading logarithmic data
39// to enhance computing performance of interpolation
[819]40//
41// -------------------------------------------------------------------
42
43// Class description:
44// Low Energy Electromagnetic Physics
45// Base class for cross section manager for an electromagnetic physics process
46// Further documentation available from http://www.ge.infn.it/geant4/lowE
47
48// -------------------------------------------------------------------
49
50#ifndef G4VCROSSSECTIONHANDLER_HH
51#define G4VCROSSSECTIONHANDLER_HH 1
52
53#include "globals.hh"
54#include "G4DataVector.hh"
55#include <map>
56#include <vector>
57#include "G4MaterialCutsCouple.hh"
58
59class G4VDataSetAlgorithm;
60class G4VEMDataSet;
61class G4Material;
62class G4Element;
63
64class G4VCrossSectionHandler {
65
66public:
67
68 G4VCrossSectionHandler();
69
70 G4VCrossSectionHandler(G4VDataSetAlgorithm* interpolation,
71 G4double minE = 250*eV, G4double maxE = 100*GeV,
72 G4int nBins = 200,
73 G4double unitE = MeV, G4double unitData = barn,
74 G4int minZ = 1, G4int maxZ = 99);
75
76 virtual ~G4VCrossSectionHandler();
77
78 void Initialise(G4VDataSetAlgorithm* interpolation = 0,
79 G4double minE = 250*eV, G4double maxE = 100*GeV,
80 G4int numberOfBins = 200,
81 G4double unitE = MeV, G4double unitData = barn,
82 G4int minZ = 1, G4int maxZ = 99);
83
84 G4int SelectRandomAtom(const G4MaterialCutsCouple* couple, G4double e) const;
85
86 const G4Element* SelectRandomElement(const G4MaterialCutsCouple* material,
87 G4double e) const;
88
89 G4int SelectRandomShell(G4int Z, G4double e) const;
90
91 G4VEMDataSet* BuildMeanFreePathForMaterials(const G4DataVector* energyCuts = 0);
92
93 G4double FindValue(G4int Z, G4double e) const;
94
95 G4double FindValue(G4int Z, G4double e, G4int shellIndex) const;
96
97 G4double ValueForMaterial(const G4Material* material, G4double e) const;
98
99 void LoadData(const G4String& dataFile);
100
[1192]101 void LoadNonLogData(const G4String& dataFile);
102
[819]103 void LoadShellData(const G4String& dataFile);
104
105 void PrintData() const;
106
107 void Clear();
108
109protected:
110
111 G4int NumberOfComponents(G4int Z) const;
112
113 void ActiveElements();
114
115 // Factory method
116 virtual std::vector<G4VEMDataSet*>* BuildCrossSectionsForMaterials(const G4DataVector& energyVector,
117 const G4DataVector* energyCuts = 0) = 0;
118
119 // Factory method
120 virtual G4VDataSetAlgorithm* CreateInterpolation();
121
122 const G4VDataSetAlgorithm* GetInterpolation() const { return interpolation; }
123
124
125private:
126
127 // Hide copy constructor and assignment operator
128 G4VCrossSectionHandler(const G4VCrossSectionHandler&);
129 G4VCrossSectionHandler & operator=(const G4VCrossSectionHandler &right);
130
131 G4VDataSetAlgorithm* interpolation;
132
133 G4double eMin;
134 G4double eMax;
135 G4int nBins;
136
137 G4double unit1;
138 G4double unit2;
139
140 G4int zMin;
141 G4int zMax;
142
143 G4DataVector activeZ;
144
145 std::map<G4int,G4VEMDataSet*,std::less<G4int> > dataMap;
146
147 std::vector<G4VEMDataSet*>* crossSections;
148};
149
150#endif
151
152
153
154
155
156
157
158
159
160
161
Note: See TracBrowser for help on using the repository browser.