109 lines
4.1 KiB
C++
109 lines
4.1 KiB
C++
//
|
|
// ********************************************************************
|
|
// * License and Disclaimer *
|
|
// * *
|
|
// * The Geant4 software is copyright of the Copyright Holders of *
|
|
// * the Geant4 Collaboration. It is provided under the terms and *
|
|
// * conditions of the Geant4 Software License, included in the file *
|
|
// * LICENSE and available at http://cern.ch/geant4/license . These *
|
|
// * include a list of copyright holders. *
|
|
// * *
|
|
// * Neither the authors of this software system, nor their employing *
|
|
// * institutes,nor the agencies providing financial support for this *
|
|
// * work make any representation or warranty, express or implied, *
|
|
// * regarding this software system or assume any liability for its *
|
|
// * use. Please see the license in the file LICENSE and URL above *
|
|
// * for the full disclaimer and the limitation of liability. *
|
|
// * *
|
|
// * This code implementation is the result of the scientific and *
|
|
// * technical work of the GEANT4 collaboration. *
|
|
// * By using, copying, modifying or distributing the software (or *
|
|
// * any work based on the software) you agree to acknowledge its *
|
|
// * use in resulting scientific publications, and indicate your *
|
|
// * acceptance of all terms of the Geant4 Software license. *
|
|
// ********************************************************************
|
|
//
|
|
// $Id: G4CoulombScatteringModel.hh,v 1.11 2007/10/09 08:16:29 vnivanch Exp $
|
|
// GEANT4 tag $Name: geant4-09-01 $
|
|
//
|
|
// -------------------------------------------------------------------
|
|
//
|
|
// GEANT4 Class header file
|
|
//
|
|
//
|
|
// File name: G4CoulombScatteringModel
|
|
//
|
|
// Author: Vladimir Ivanchenko
|
|
//
|
|
// Creation date: 19.02.2006
|
|
//
|
|
// Modifications:
|
|
// 01.08.06 V.Ivanchenko extend upper limit of table to TeV and review the
|
|
// logic of building - only elements from G4ElementTable
|
|
// 08.08.06 V.Ivanchenko build internal table in ekin scale, introduce faclim
|
|
// 19.10.06 V.Ivanchenko use inheritance from G4eCoulombScatteringModel
|
|
// 09.10.07 V.Ivanchenko reorganized methods, add cut dependence in scattering off e-
|
|
//
|
|
// Class Description:
|
|
//
|
|
// Implementation of CoulombScattering of pointlike charge particle
|
|
// on Atomic Nucleus for interval of scattering anles in CM system
|
|
// thetaMin - ThetaMax
|
|
// The model based on analysis of J.M.Fernandez-Varea et al.
|
|
// NIM B73(1993)447 originated from G.Wentzel Z.Phys. 40(1927)590 with
|
|
// screening parameter from H.A.Bethe Phys. Rev. 89 (1953) 1256.
|
|
//
|
|
|
|
// -------------------------------------------------------------------
|
|
//
|
|
|
|
#ifndef G4CoulombScatteringModel_h
|
|
#define G4CoulombScatteringModel_h 1
|
|
|
|
#include "G4eCoulombScatteringModel.hh"
|
|
#include "globals.hh"
|
|
|
|
class G4ParticleTable;
|
|
class G4NistManager;
|
|
|
|
class G4CoulombScatteringModel : public G4eCoulombScatteringModel
|
|
{
|
|
|
|
public:
|
|
|
|
G4CoulombScatteringModel(G4double thetaMin = 0.0, G4double thetaMax = pi,
|
|
G4bool build = false, G4double tlim = TeV*TeV,
|
|
const G4String& nam = "CoulombScattering");
|
|
|
|
virtual ~G4CoulombScatteringModel();
|
|
|
|
virtual G4double ComputeCrossSectionPerAtom(
|
|
const G4ParticleDefinition*,
|
|
G4double kinEnergy,
|
|
G4double Z,
|
|
G4double A,
|
|
G4double cut,
|
|
G4double emax);
|
|
|
|
virtual void SampleSecondaries(std::vector<G4DynamicParticle*>*,
|
|
const G4MaterialCutsCouple*,
|
|
const G4DynamicParticle*,
|
|
G4double tmin,
|
|
G4double maxEnergy);
|
|
|
|
private:
|
|
|
|
G4double SelectIsotope(const G4Element*);
|
|
|
|
// hide assignment operator
|
|
G4CoulombScatteringModel & operator=(const G4CoulombScatteringModel &right);
|
|
G4CoulombScatteringModel(const G4CoulombScatteringModel&);
|
|
|
|
G4ParticleTable* theParticleTable;
|
|
const G4NistManager* theMatManager;
|
|
};
|
|
|
|
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
|
|
|
|
#endif
|