Geant4 11.3.0
Toolkit for the simulation of the passage of particles through matter
Loading...
Searching...
No Matches
G4CoherentPairProductionPhysics.cc
Go to the documentation of this file.
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// Author: Alexei Sytov
27
29#include "G4Gamma.hh"
30#include "G4ProcessManager.hh"
33#include "G4RegionStore.hh"
35
36//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
37
41
42//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
43
45{
46 G4Gamma::GammaDefinition(); // Define the gamma particle
47}
48
49//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
50
52{
53 //create the gamma process
55
56 if(verboseLevel > 0) {
57 G4cout << "G4CoherentPairProductionPhysics::ConstructProcess" << G4endl;
58 }
59
61 G4Region* RegionCh = regionStore->GetRegion(fNameRegion);
62
63 //if the region is not found
64 if(RegionCh==0)
65 {
66 G4Exception("GetRegion",// Origin of the exception
67 "001", // Unique error code
68 FatalException, // Terminate the program
69 "Region is not found! The program will terminate.");
70 }
71 else
72 {
73 //get channeling model
74 G4bool someflag=false;
75 G4ChannelingFastSimModel* Channeling =
76 static_cast<G4ChannelingFastSimModel*>
77 (RegionCh->GetFastSimulationManager()->
78 GetFastSimulationModel(fNameChannelingModel,0,someflag));
79
80 //if channeling model is not found
81 if(Channeling==0)
82 {
83 G4Exception("GetFastSimulationModel",// Origin of the exception
84 "001", // Unique error code
85 FatalException, // Terminate the program
86 "Input channeling model is not found! The program will terminate."
87 );
88 }
89 else
90 {
91 gammaProcess->Input(Channeling->GetCrystalData());
92 }
93 }
94
95 //set functions
96 if(fIncoherentScattering){gammaProcess->ActivateIncoherentScattering();}
97 gammaProcess->SetLowEnergyLimit(fLowEnergyLimit);
98 gammaProcess->SetHighAngleLimit(fHighAngleLimit);
99 gammaProcess->SetPPKineticEnergyCut(fPPKineticEnergyCut);
100 gammaProcess->SetSamplingPairsNumber(fNMCPairs);
101 gammaProcess->SetChargeParticleAngleFactor(fChargeParticleAngleFactor);
102 gammaProcess->SetNTrajectorySteps(fNTrajectorySteps);
103
104 //set the name of G4Region in which the model is applicable
105 gammaProcess->SetG4RegionName(fNameRegion);
106
107 //get process manager for gamma
109
110 //register the G4CoherentPairProduction process
111 pManager->AddDiscreteProcess(gammaProcess);
112}
Definition of the G4ChannelingFastSimModel class FastSimulation Channeling model: calculates charge p...
@ FatalException
void G4Exception(const char *originOfException, const char *exceptionCode, G4ExceptionSeverity severity, const char *description)
bool G4bool
Definition G4Types.hh:86
#define G4endl
Definition G4ios.hh:67
G4GLOB_DLL std::ostream G4cout
G4ChannelingFastSimCrystalData * GetCrystalData()
G4CoherentPairProductionPhysics(const G4String &name="Coherent Pair Production Physics")
void SetPPKineticEnergyCut(G4double kineticEnergyCut)
void SetLowEnergyLimit(G4double energy)
set cuts
void SetG4RegionName(const G4String &nameG4Region)
set the name of G4Region in which the model is applicable
void Input(const G4Material *crystal, const G4String &lattice)
special functions
void SetNTrajectorySteps(G4int nTrajectorySteps)
set number of trajectory steps of a single particle (e- or e+)
void SetChargeParticleAngleFactor(G4double chargeParticleAngleFactor)
static G4Gamma * GammaDefinition()
Definition G4Gamma.cc:76
static G4Gamma * Gamma()
Definition G4Gamma.cc:81
G4ProcessManager * GetProcessManager() const
G4int AddDiscreteProcess(G4VProcess *aProcess, G4int ord=ordDefault)
static G4RegionStore * GetInstance()
G4Region * GetRegion(const G4String &name, G4bool verbose=true) const
G4FastSimulationManager * GetFastSimulationManager() const
Definition G4Region.cc:140
G4VPhysicsConstructor(const G4String &="")