source: trunk/source/processes/electromagnetic/standard/src/G4PhotoElectricEffect.cc @ 1340

Last change on this file since 1340 was 1337, checked in by garnier, 14 years ago

tag geant4.9.4 beta 1 + modifs locales

File size: 5.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// $Id: G4PhotoElectricEffect.cc,v 1.42 2009/02/20 12:06:37 vnivanch Exp $
27// GEANT4 tag $Name: geant4-09-04-beta-01 $
28//
29//
30//------------------ G4PhotoElectricEffect physics process ---------------------
31//                   by Michel Maire, 24 May 1996
32//
33// 12-06-96, Added SelectRandomAtom() method, by M.Maire
34// 21-06-96, SetCuts implementation, M.Maire
35// 17-09-96, PartialSumSigma(i)
36//           split of ComputeBindingEnergy, M.Maire
37// 08-01-97, crossection table + meanfreepath table, M.Maire
38// 13-03-97, adapted for the new physics scheme, M.Maire
39// 28-03-97, protection in BuildPhysicsTable, M.Maire
40// 04-06-98, in DoIt, secondary production condition:
41//                        range > std::min(threshold,safety)
42// 13-08-98, new methods SetBining() PrintInfo()
43// 17-11-98, use table of Atomic shells in PostStepDoIt
44// 06-01-99, use Sandia crossSection below 50 keV, V.Grichine mma
45// 20-05-99, protection against very low energy photons ,L.Urban
46// 08-06-99, removed this above protection from the DoIt. mma
47// 21-06-00, in DoIt, killing photon: aParticleChange.SetEnergyChange(0.); mma
48// 22-06-00, in DoIt, absorbe very low energy photon (back to 20-05-99); mma
49// 22-02-01, back to 08-06-99 after correc in SandiaTable (materials-V03-00-05)
50// 28-05-01, V.Ivanchenko minor changes to provide ANSI -wall compilation
51// 13-07-01, DoIt: suppression of production cut of the electron (mma)
52// 06-08-01, new methods Store/Retrieve PhysicsTable (mma)
53// 06-08-01, BuildThePhysicsTable() called from constructor (mma)
54// 17-09-01, migration of Materials to pure STL (mma)
55// 20-09-01, DoIt: fminimalEnergy of generated electron = 1*eV (mma)
56// 01-10-01, come back to BuildPhysicsTable(const G4ParticleDefinition&)
57// 10-01-02, moved few function from icc to cc
58// 17-04-02, Keep only Sandia crossSections. Remove BuildPhysicsTables.
59//           Simplify public interface (mma)
60// 29-04-02, Generate theta angle of the photoelectron from Sauter-Gavrila
61//           distribution (mma)
62// 15-01-03, photoelectron theta ditribution : return costeta=1 if gamma>5
63//           (helmut burkhardt)
64// 21-04-05  Migrate to model interface and inherit
65//           from G4VEmProcess (V.Ivanchenko)
66// 04-05-05, Make class to be default (V.Ivanchenko)
67// 09-08-06, add SetModel(G4VEmModel*) (mma)
68// 12-09-06, move SetModel(G4VEmModel*) in G4VEmProcess (mma)
69// -----------------------------------------------------------------------------
70
71#include "G4PhotoElectricEffect.hh"
72#include "G4PEEffectModel.hh"
73#include "G4Electron.hh"
74
75//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
76
77using namespace std;
78
79G4PhotoElectricEffect::G4PhotoElectricEffect(const G4String& processName,
80  G4ProcessType type):G4VEmProcess (processName, type),
81    isInitialised(false)
82{
83  SetProcessSubType(fPhotoElectricEffect);
84}
85
86//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
87
88G4PhotoElectricEffect::~G4PhotoElectricEffect()
89{}
90
91//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
92
93G4bool G4PhotoElectricEffect::IsApplicable(const G4ParticleDefinition& p)
94{
95  return (&p == G4Gamma::Gamma());
96}
97
98//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
99
100void G4PhotoElectricEffect::InitialiseProcess(const G4ParticleDefinition*)
101{
102  if(!isInitialised) {
103    isInitialised = true;
104    SetBuildTableFlag(false);
105    SetSecondaryParticle(G4Electron::Electron());
106    if(!Model()) SetModel(new G4PEEffectModel());
107    Model()->SetLowEnergyLimit(MinKinEnergy());
108    Model()->SetHighEnergyLimit(MaxKinEnergy());
109    AddEmModel(1, Model());
110  }
111}
112
113//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
114
115void G4PhotoElectricEffect::PrintInfo()
116{}
117
118//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
Note: See TracBrowser for help on using the repository browser.