source: trunk/source/processes/electromagnetic/standard/include/G4CoulombScatteringModel.hh

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

tag geant4.9.4 beta 1 + modifs locales

File size: 4.0 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: G4CoulombScatteringModel.hh,v 1.17 2010/05/27 14:22:05 vnivanch Exp $
27// GEANT4 tag $Name: geant4-09-04-beta-01 $
28//
29// -------------------------------------------------------------------
30//
31// GEANT4 Class header file
32//
33//
34// File name:     G4CoulombScatteringModel
35//
36// Author:        Vladimir Ivanchenko
37//
38// Creation date: 19.02.2006
39//
40// Modifications:
41// 01.08.06 V.Ivanchenko extend upper limit of table to TeV and review the
42//          logic of building - only elements from G4ElementTable
43// 08.08.06 V.Ivanchenko build internal table in ekin scale, introduce faclim
44// 19.10.06 V.Ivanchenko use inheritance from G4eCoulombScatteringModel
45// 09.10.07 V.Ivanchenko reorganized methods, add cut dependence in scattering off e-
46// 09.06.08 V.Ivanchenko SelectIsotope is moved to the base class
47// 27.05.10 V.Ivanchenko added G4WentzelOKandVIxSection class to
48//              compute cross sections and sample scattering angle
49//
50// Class Description:
51//
52// Implementation of CoulombScattering of pointlike charge particle
53// on Atomic Nucleus for interval of scattering anles in CM system
54// thetaMin - ThetaMax
55//   The model based on analysis of J.M.Fernandez-Varea et al.
56// NIM B73(1993)447 originated from G.Wentzel Z.Phys. 40(1927)590 with
57// screening parameter from H.A.Bethe Phys. Rev. 89 (1953) 1256.
58//
59
60// -------------------------------------------------------------------
61//
62
63#ifndef G4CoulombScatteringModel_h
64#define G4CoulombScatteringModel_h 1
65
66#include "G4eCoulombScatteringModel.hh"
67#include "globals.hh"
68
69class G4CoulombScatteringModel : public G4eCoulombScatteringModel
70{
71
72public:
73
74  G4CoulombScatteringModel(const G4String& nam = "CoulombScattering");
75 
76  virtual ~G4CoulombScatteringModel();
77
78  virtual G4double ComputeCrossSectionPerAtom(
79                                const G4ParticleDefinition*,
80                                G4double kinEnergy, 
81                                G4double Z, 
82                                G4double A, 
83                                G4double cut,
84                                G4double emax);
85
86  virtual void SampleSecondaries(std::vector<G4DynamicParticle*>*,
87                                 const G4MaterialCutsCouple*,
88                                 const G4DynamicParticle*,
89                                 G4double tmin,
90                                 G4double maxEnergy);
91
92private:
93
94  // hide assignment operator
95  G4CoulombScatteringModel & operator=(const G4CoulombScatteringModel &right);
96  G4CoulombScatteringModel(const  G4CoulombScatteringModel&);
97
98};
99
100//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
101
102#endif
Note: See TracBrowser for help on using the repository browser.