Geant4 9.6.0
Toolkit for the simulation of the passage of particles through matter
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
G4VhShellCrossSection.hh
Go to the documentation of this file.
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: G4UAtomicDeexcitation.cc,v 1.11
27// GEANT4 tag $Name: not supported by cvs2svn $
28//
29// -------------------------------------------------------------------
30//
31// GEANT4 Class file
32//
33//
34// File name: G4VhShellCrossSection
35//
36// Author: S. Dussoni and A. Mantero (Alfonso.Mantero@ge.infn.it)
37//
38// History:
39// -----------
40// 23 Oct 2001 A. Mantero 1st implementation
41// 24 Oct 2001 MGP Cleaned up
42// 29 Oct 2001 VI Add delta energy
43// 15 Mar 2011 ALF Introduced the usage of G4AtomicShellEnumerator
44// 09 Mar 2012 LP Added const G4Material* to the signature of virtual
45// methods.
46//
47// -------------------------------------------------------------------
48
49// Class Description:
50//
51// Abstract class for models of shell cross sections in proton ionisation
52// -------------------------------------------------------------------
53//
54
55#ifndef G4VHSHELLCROSSSECTION_HH
56#define G4VHSHELLCROSSSECTION_HH 1
57
58#include "globals.hh"
59#include <vector>
61#include "G4Material.hh"
62
63
65{
66
67public:
68
69 G4VhShellCrossSection(const G4String& xname = "");
70
71 virtual ~G4VhShellCrossSection();
72
74 G4double incidentEnergy,
75 G4double mass,
76 G4double deltaEnergy,
77 const G4Material* mat);
78
79 virtual std::vector<G4double> GetCrossSection(G4int Z,
80 G4double incidentEnergy,
81 G4double mass,
82 G4double deltaEnergy,
83 const G4Material* mat) = 0;
84
85
88 G4double incidentEnergy,
89 G4double mass,
90 const G4Material* mat) =0;
91
92 //protected:
93
94 virtual std::vector<G4double> Probabilities(G4int Z,
95 G4double incidentEnergy,
96 G4double mass,
97 G4double deltaEnergy,
98 const G4Material* mat) = 0;
99
100
101 virtual void SetTotalCS(G4double);
102
103 inline const G4String& GetName() const;
104
105private:
106
107 // Hide copy constructor and assignment operator
109 G4VhShellCrossSection & operator=(const G4VhShellCrossSection &right);
110
111 G4String name;
112
113};
114
116{
117 return name;
118}
119
120#endif
121
G4AtomicShellEnumerator
double G4double
Definition: G4Types.hh:64
int G4int
Definition: G4Types.hh:66
virtual void SetTotalCS(G4double)
virtual std::vector< G4double > Probabilities(G4int Z, G4double incidentEnergy, G4double mass, G4double deltaEnergy, const G4Material *mat)=0
virtual G4double CrossSection(G4int Z, G4AtomicShellEnumerator shell, G4double incidentEnergy, G4double mass, const G4Material *mat)=0
virtual std::vector< G4double > GetCrossSection(G4int Z, G4double incidentEnergy, G4double mass, G4double deltaEnergy, const G4Material *mat)=0
const G4String & GetName() const
G4int SelectRandomShell(G4int Z, G4double incidentEnergy, G4double mass, G4double deltaEnergy, const G4Material *mat)