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

Last change on this file since 960 was 819, checked in by garnier, 17 years ago

import all except CVS

File size: 4.1 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// $Id: G4CoulombScatteringModel.hh,v 1.11 2007/10/09 08:16:29 vnivanch Exp $
27// GEANT4 tag $Name: geant4-09-01-patch-02 $
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//
47// Class Description:
48//
49// Implementation of CoulombScattering of pointlike charge particle
50// on Atomic Nucleus for interval of scattering anles in CM system
51// thetaMin - ThetaMax
52// The model based on analysis of J.M.Fernandez-Varea et al.
53// NIM B73(1993)447 originated from G.Wentzel Z.Phys. 40(1927)590 with
54// screening parameter from H.A.Bethe Phys. Rev. 89 (1953) 1256.
55//
56
57// -------------------------------------------------------------------
58//
59
60#ifndef G4CoulombScatteringModel_h
61#define G4CoulombScatteringModel_h 1
62
63#include "G4eCoulombScatteringModel.hh"
64#include "globals.hh"
65
66class G4ParticleTable;
67class G4NistManager;
68
69class G4CoulombScatteringModel : public G4eCoulombScatteringModel
70{
71
72public:
73
74 G4CoulombScatteringModel(G4double thetaMin = 0.0, G4double thetaMax = pi,
75 G4bool build = false, G4double tlim = TeV*TeV,
76 const G4String& nam = "CoulombScattering");
77
78 virtual ~G4CoulombScatteringModel();
79
80 virtual G4double ComputeCrossSectionPerAtom(
81 const G4ParticleDefinition*,
82 G4double kinEnergy,
83 G4double Z,
84 G4double A,
85 G4double cut,
86 G4double emax);
87
88 virtual void SampleSecondaries(std::vector<G4DynamicParticle*>*,
89 const G4MaterialCutsCouple*,
90 const G4DynamicParticle*,
91 G4double tmin,
92 G4double maxEnergy);
93
94private:
95
96 G4double SelectIsotope(const G4Element*);
97
98 // hide assignment operator
99 G4CoulombScatteringModel & operator=(const G4CoulombScatteringModel &right);
100 G4CoulombScatteringModel(const G4CoulombScatteringModel&);
101
102 G4ParticleTable* theParticleTable;
103 const G4NistManager* theMatManager;
104};
105
106//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
107
108#endif
Note: See TracBrowser for help on using the repository browser.