112 lines
4.2 KiB
C++
112 lines
4.2 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. *
|
|
// ********************************************************************
|
|
//
|
|
//
|
|
// -------------------------------------------------------------------
|
|
//
|
|
// GEANT4 Class header file
|
|
//
|
|
//
|
|
// File name: G4BetheHeitler5DModel
|
|
//
|
|
// Authors:
|
|
// Igor Semeniouk and Denis Bernard,
|
|
// LLR, Ecole polytechnique & CNRS/IN2P3, 91128 Palaiseau, France
|
|
//
|
|
// Modifications:
|
|
// 27-10-17 New class (IgS)
|
|
// 19-01-18 version that calculates the pdf in the same way as in the fortran
|
|
// version (Denis Bernard)
|
|
// 04-06-18 Performance optimization of the final state sampling (M. Novak)
|
|
// 10-04-19 CLHEP for boost and rotation, remove local functions (IgS)
|
|
// 02-09-19 Set base class to be G4PairProductionRelModel that can provide
|
|
// accurate sections now from threshold to very high energies
|
|
// including the LPM effect. (M. Novak)
|
|
// 14-10-19 Muon's pair genaration in SampleSecondaries
|
|
//
|
|
// Class Description:
|
|
//
|
|
// Implementation of gamma conversion to e+e- in the field of a nucleus
|
|
//
|
|
|
|
// -------------------------------------------------------------------
|
|
//
|
|
|
|
#ifndef G4BetheHeitler5DModel_h
|
|
#define G4BetheHeitler5DModel_h 1
|
|
|
|
#include "G4PairProductionRelModel.hh"
|
|
|
|
class G4IonTable;
|
|
|
|
class G4BetheHeitler5DModel : public G4PairProductionRelModel
|
|
{
|
|
|
|
public:
|
|
|
|
explicit G4BetheHeitler5DModel(const G4ParticleDefinition* p = nullptr,
|
|
const G4String& nam = "BetheHeitler5D");
|
|
|
|
~G4BetheHeitler5DModel() override;
|
|
|
|
void Initialise(const G4ParticleDefinition*, const G4DataVector&) override;
|
|
|
|
void SampleSecondaries(std::vector<G4DynamicParticle*>* fvect,
|
|
const G4MaterialCutsCouple* couple,
|
|
const G4DynamicParticle* aDynamicGamma,
|
|
G4double, G4double) override;
|
|
|
|
inline void SetVerbose(G4int val) { fVerbose = val; }
|
|
|
|
// Only e+, e+ or mu+, mu- pairs supported
|
|
void SetLeptonPair(const G4ParticleDefinition* p1,
|
|
const G4ParticleDefinition* p2);
|
|
|
|
// hide assignment operator
|
|
G4BetheHeitler5DModel& operator=(const G4BetheHeitler5DModel& right) = delete;
|
|
G4BetheHeitler5DModel(const G4BetheHeitler5DModel&) = delete;
|
|
|
|
private:
|
|
|
|
G4double MaxDiffCrossSection(const G4double* par, G4double eZ,
|
|
G4double e, G4double loge) const;
|
|
|
|
inline void SetConversionMode(G4int to) { fConvMode = to; }
|
|
|
|
G4IonTable* theIonTable;
|
|
|
|
const G4ParticleDefinition* fLepton1;
|
|
const G4ParticleDefinition* fLepton2;
|
|
|
|
const G4ParticleDefinition* fTheMuPlus;
|
|
const G4ParticleDefinition* fTheMuMinus;
|
|
|
|
G4int fVerbose;
|
|
G4int fConversionType;
|
|
G4int fConvMode;
|
|
G4bool iraw;
|
|
};
|
|
#endif
|