| 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.15 2008/07/31 13:11:34 vnivanch Exp $
|
|---|
| 27 | // GEANT4 tag $Name: geant4-09-03-cand-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 | //
|
|---|
| 48 | // Class Description:
|
|---|
| 49 | //
|
|---|
| 50 | // Implementation of CoulombScattering of pointlike charge particle
|
|---|
| 51 | // on Atomic Nucleus for interval of scattering anles in CM system
|
|---|
| 52 | // thetaMin - ThetaMax
|
|---|
| 53 | // The model based on analysis of J.M.Fernandez-Varea et al.
|
|---|
| 54 | // NIM B73(1993)447 originated from G.Wentzel Z.Phys. 40(1927)590 with
|
|---|
| 55 | // screening parameter from H.A.Bethe Phys. Rev. 89 (1953) 1256.
|
|---|
| 56 | //
|
|---|
| 57 |
|
|---|
| 58 | // -------------------------------------------------------------------
|
|---|
| 59 | //
|
|---|
| 60 |
|
|---|
| 61 | #ifndef G4CoulombScatteringModel_h
|
|---|
| 62 | #define G4CoulombScatteringModel_h 1
|
|---|
| 63 |
|
|---|
| 64 | #include "G4eCoulombScatteringModel.hh"
|
|---|
| 65 | #include "globals.hh"
|
|---|
| 66 |
|
|---|
| 67 | class G4CoulombScatteringModel : public G4eCoulombScatteringModel
|
|---|
| 68 | {
|
|---|
| 69 |
|
|---|
| 70 | public:
|
|---|
| 71 |
|
|---|
| 72 | G4CoulombScatteringModel(const G4String& nam = "CoulombScattering");
|
|---|
| 73 |
|
|---|
| 74 | virtual ~G4CoulombScatteringModel();
|
|---|
| 75 |
|
|---|
| 76 | virtual G4double ComputeCrossSectionPerAtom(
|
|---|
| 77 | const G4ParticleDefinition*,
|
|---|
| 78 | G4double kinEnergy,
|
|---|
| 79 | G4double Z,
|
|---|
| 80 | G4double A,
|
|---|
| 81 | G4double cut,
|
|---|
| 82 | G4double emax);
|
|---|
| 83 |
|
|---|
| 84 | virtual void SampleSecondaries(std::vector<G4DynamicParticle*>*,
|
|---|
| 85 | const G4MaterialCutsCouple*,
|
|---|
| 86 | const G4DynamicParticle*,
|
|---|
| 87 | G4double tmin,
|
|---|
| 88 | G4double maxEnergy);
|
|---|
| 89 |
|
|---|
| 90 | private:
|
|---|
| 91 |
|
|---|
| 92 | // hide assignment operator
|
|---|
| 93 | G4CoulombScatteringModel & operator=(const G4CoulombScatteringModel &right);
|
|---|
| 94 | G4CoulombScatteringModel(const G4CoulombScatteringModel&);
|
|---|
| 95 |
|
|---|
| 96 | };
|
|---|
| 97 |
|
|---|
| 98 | //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
|
|---|
| 99 |
|
|---|
| 100 | #endif
|
|---|