source: trunk/source/processes/electromagnetic/lowenergy/include/G4hShellCrossSectionExp.hh@ 1141

Last change on this file since 1141 was 1055, checked in by garnier, 17 years ago

maj sur la beta de geant 4.9.3

File size: 3.5 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// -------------------------------------------------------------------
27//
28// GEANT4 Class file
29//
30//
31// File name: G4hShellCrossSectionExp
32//
33// Author: Simona Saliceti (simona.saliceti@ge.infn.it)
34//
35// History:
36// -----------
37// From 23 Oct 2001 A. Mantero G4hShellCrossSection
38// 30/03/2004 Simona Saliceti 1st implementation
39// -------------------------------------------------------------------
40// Class Description:
41// Empiric Model for shell cross sections in proton ionisation
42// Based on Fitted empirical Reference Cross Sections for K-Shell Ionization
43// by Protons by H.Paul and J.Sacher, At. Data Nucl. Data Tables 42 (1989) 105
44
45// -------------------------------------------------------------------
46// $Id: G4hShellCrossSectionExp.hh,v 1.3 2006/06/29 19:38:16 gunter Exp $
[1055]47// GEANT4 tag $Name: geant4-09-03-beta-cand-00 $
[819]48
49#ifndef G4HSHELLCROSSSECTIONEXP_HH
50#define G4HSHELLCROSSSECTIONEXP_HH 1
51
52#include "globals.hh"
53#include "G4VhShellCrossSection.hh"
54#include "G4hShellCrossSectionExpData.hh"
55
56class G4hShellCrossSectionExp : public G4VhShellCrossSection
57{
58public:
59
60 G4hShellCrossSectionExp();
61
62 virtual ~G4hShellCrossSectionExp();
63
64 virtual std::vector<G4double> GetCrossSection(G4int Z,
65 G4double incidentEnergy,
66 G4double mass,
67 G4double deltaEnergy,
68 G4bool testFlag = false) const;
69
70 void SetTotalCS(G4double);
71
72protected:
73
74 virtual std::vector<G4double> Probabilities(G4int Z,
75 G4double incidentEnergy,
76 G4double mass,
77 G4double deltaEnergy) const;
78
79
80private:
81
82 G4double GetCrossSectionExp(G4int Z,
83 G4double incidentEnergy) const;
84
85 // Hide copy constructor and assignment operator
86 G4hShellCrossSectionExp(const G4hShellCrossSectionExp&);
87 G4hShellCrossSectionExp & operator = (const G4hShellCrossSectionExp &right);
88 G4hShellCrossSectionExpData* kShellData;
89
90 G4double atomTotalCrossSection;
91};
92
93#endif
Note: See TracBrowser for help on using the repository browser.