Import Geant4 11.0.0.beta source tree

This commit is contained in:
Gabriele Cosmo
2021-06-25 16:12:29 +02:00
parent c968e26a39
commit 6399a014b6
4200 changed files with 207479 additions and 237366 deletions
@@ -23,114 +23,81 @@
// * acceptance of all terms of the Geant4 Software license. *
// ********************************************************************
//
//
/////////////////////////////////////////////////////////////////////////////////
// Class: G4AdjointAlongStepWeightCorrection
// Author: L. Desorgher
// Organisation: SpaceIT GmbH
// Contract: ESA contract 21435/08/NL/AT
// Customer: ESA/ESTEC
// Class: G4AdjointAlongStepWeightCorrection
// Author: L. Desorgher
// Organisation: SpaceIT GmbH
/////////////////////////////////////////////////////////////////////////////////
//
// CHANGE HISTORY
// --------------
// ChangeHistory:
// 10 May 2007 creation by L. Desorgher
// October 2009 implementation of the mode where the total adjoint and forward cross sections are equivalent. L. Desorgher
// Documentation:
//
// Continuous processes act on adjoint particles to continuously correct their
// weight during the adjoint reverse tracking. This process is needed when
// the adjoint cross sections are not scaled such that the total adjoint cross
// section matches the total forward cross section. By default the mode where
// the total adjoint cross section is equal to the total forward cross section
// is used and therefore this along step weightcorrection factor is 1. However
// in some cases (some energy ranges) the total forward cross section or the
// total adjoint cross section can be zero. In this case the along step weight
// correction is needed and is given by exp(-(Sigma_tot_adj-Sigma_tot_fwd).dx)
//
//-------------------------------------------------------------
// Documentation:
// Continuous processes acting on adjoint particles to correct continuously their weight during the adjoint reverse tracking.
// Thi process is needed whene the adjoint cross section are not scaled such that the total adjoint cross section match the total forward cross section.
// By default the mode where the total adjoint cross section is equal to the total forward cross section is used an therefore this along step weight
// correction factor is 1.
// However in some cases (some energy ranges) the total forward cross section or the total adjoint cross section can be null, in this case the along step
// weight correction is neede and is given by exp(-(Sigma_tot_adj-Sigma_tot_fwd).dx)
//
//
//
#ifndef G4AdjointAlongStepWeightCorrection_h
#define G4AdjointAlongStepWeightCorrection_h 1
#include "G4VContinuousProcess.hh"
#include "globals.hh"
#include "G4Material.hh"
#include "G4MaterialCutsCouple.hh"
#include "G4Track.hh"
#include "G4ParticleChange.hh"
#include "G4VContinuousProcess.hh"
class G4Step;
class G4AdjointCSManager;
class G4MaterialCutsCouple;
class G4ParticleDefinition;
class G4ParticleChange;
class G4Step;
class G4Track;
class G4AdjointAlongStepWeightCorrection : public G4VContinuousProcess
{
public:
public:
explicit G4AdjointAlongStepWeightCorrection(
const G4String& name = "ContinuousWeightCorrection",
G4ProcessType type = fElectromagnetic);
G4AdjointAlongStepWeightCorrection(const G4String& name = "ContinuousWeightCorrection",
G4ProcessType type = fElectromagnetic);
~G4AdjointAlongStepWeightCorrection() override;
virtual ~G4AdjointAlongStepWeightCorrection();
G4VParticleChange* AlongStepDoIt(const G4Track&, const G4Step&) override;
void ProcessDescription(std::ostream&) const override;
void DumpInfo() const override { ProcessDescription(G4cout); };
protected:
virtual G4double GetContinuousStepLimit(const G4Track& track,
G4double previousStepSize,
G4double currentMinimumStep,
G4double& currentSafety);
G4AdjointAlongStepWeightCorrection(G4AdjointAlongStepWeightCorrection&) =
delete;
G4AdjointAlongStepWeightCorrection& operator=(
const G4AdjointAlongStepWeightCorrection& right) = delete;
//------------------------------------------------------------------------
// Generic methods common to all processes
//------------------------------------------------------------------------
public:
void PreparePhysicsTable(const G4ParticleDefinition&);
void BuildPhysicsTable(const G4ParticleDefinition&);
G4VParticleChange* AlongStepDoIt(const G4Track&, const G4Step&);
private:
protected:
G4double GetContinuousStepLimit(const G4Track& track,
G4double previousStepSize,
G4double currentMinimumStep,
G4double& currentSafety) override;
private:
void DefineMaterial(const G4MaterialCutsCouple* couple);
G4AdjointAlongStepWeightCorrection(G4AdjointAlongStepWeightCorrection &);
G4AdjointAlongStepWeightCorrection & operator=(const G4AdjointAlongStepWeightCorrection &right);
protected:
const G4MaterialCutsCouple* fCurrentCouple = nullptr;
G4AdjointCSManager* fCSManager = nullptr;
G4ParticleChange* fParticleChange;
private:
const G4Material* currentMaterial;
const G4MaterialCutsCouple* currentCouple;
size_t currentMaterialIndex;
G4double preStepKinEnergy;
G4double fPreStepKinEnergy = 1.;
};
inline void G4AdjointAlongStepWeightCorrection::DefineMaterial(
const G4MaterialCutsCouple* couple)
const G4MaterialCutsCouple* couple)
{
if(couple != currentCouple) {
currentCouple = couple;
currentMaterial = couple->GetMaterial();
currentMaterialIndex = couple->GetIndex();
if(couple != fCurrentCouple)
{
fCurrentCouple = couple;
}
}
#endif