Geant4-11
G4VAdjointReverseReaction.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
28
29#include "G4AdjointCSManager.hh"
30#include "G4ParticleChange.hh"
31#include "G4VEmAdjointModel.hh"
32
34 G4bool whichScatCase)
35 : G4VDiscreteProcess(process_name)
36{
38 fIsScatProjToProj = whichScatCase;
40}
41
44{
46 delete fParticleChange;
47}
48
51{
52 fCSManager->BuildCrossSectionMatrices(); // it will be done just once
54}
55
58 const G4Step&)
59{
62
64 return fParticleChange;
65}
66
71{
73 G4double preStepKinEnergy = track.GetKineticEnergy();
74
75 if(track.GetTrackID() != fTrackId)
76 {
77 fTrackId = track.GetTrackID();
78 }
80 track.GetMaterialCutsCouple(), preStepKinEnergy, fIsScatProjToProj);
81
83 track.GetDefinition(), preStepKinEnergy, track.GetMaterialCutsCouple(),
85
86 if(std::fabs(corr) > 100.)
87 {
88 sigma = 0.0;
89 }
90 else
91 {
92 sigma *= corr;
93 }
94
95 G4double mean_free_path = 1.e60;
96 if(sigma > 0.)
97 mean_free_path = 1. / sigma;
98
99 return mean_free_path;
100}
G4double condition(const G4ErrorSymMatrix &m)
G4ForceCondition
@ NotForced
double G4double
Definition: G4Types.hh:83
bool G4bool
Definition: G4Types.hh:86
G4double GetCrossSectionCorrection(G4ParticleDefinition *aPartDef, G4double PreStepEkin, const G4MaterialCutsCouple *aCouple, G4bool &fwd_is_used)
static G4AdjointCSManager * GetAdjointCSManager()
virtual void Initialize(const G4Track &)
Definition: G4Step.hh:62
G4int GetTrackID() const
G4ParticleDefinition * GetDefinition() const
G4double GetKineticEnergy() const
const G4MaterialCutsCouple * GetMaterialCutsCouple() const
G4VAdjointReverseReaction(G4String process_name, G4bool whichScatCase)
G4VParticleChange * PostStepDoIt(const G4Track &, const G4Step &) override
G4double GetMeanFreePath(const G4Track &track, G4double previousStepSize, G4ForceCondition *condition) override
void BuildPhysicsTable(const G4ParticleDefinition &) override
virtual void SampleSecondaries(const G4Track &aTrack, G4bool isScatProjToProj, G4ParticleChange *fParticleChange)=0
virtual G4double AdjointCrossSection(const G4MaterialCutsCouple *aCouple, G4double primEnergy, G4bool isScatProjToProj)
void ClearNumberOfInteractionLengthLeft()
Definition: G4VProcess.hh:424