Import Geant4 6.1.0 source tree
This commit is contained in:
@@ -50,9 +50,11 @@
|
||||
#include "G4VRestProcess.hh"
|
||||
#include "G4VParticleChange.hh"
|
||||
#include "G4ParticleDefinition.hh"
|
||||
#include "G4GHEKinematicsVector.hh"
|
||||
#include "G4StopElementSelector.hh"
|
||||
#include "G4MuMinusCaptureCascade.hh"
|
||||
#include "G4ReactionProductVector.hh"
|
||||
#include "G4Fancy3DNucleus.hh"
|
||||
#include "G4ExcitationHandler.hh"
|
||||
|
||||
class G4MuonMinusCaptureAtRest : public G4VRestProcess
|
||||
|
||||
@@ -65,140 +67,39 @@ class G4MuonMinusCaptureAtRest : public G4VRestProcess
|
||||
public:
|
||||
|
||||
G4MuonMinusCaptureAtRest(const G4String& processName ="MuonMinusCaptureAtRest");
|
||||
|
||||
~G4MuonMinusCaptureAtRest();
|
||||
|
||||
G4bool IsApplicable(const G4ParticleDefinition&);
|
||||
|
||||
// null physics table
|
||||
void BuildPhysicsTable(const G4ParticleDefinition&){}
|
||||
|
||||
G4double AtRestGetPhysicalInteractionLength(const G4Track&,
|
||||
G4ForceCondition*);
|
||||
|
||||
G4double GetMeanLifeTime(const G4Track&, G4ForceCondition*);
|
||||
// G4double GetMeanLifeTime(const G4Track&, G4ForceCondition*);
|
||||
|
||||
G4VParticleChange* AtRestDoIt(const G4Track&, const G4Step&);
|
||||
|
||||
// return number of secondaries produced
|
||||
G4int GetNumberOfSecondaries();
|
||||
virtual G4double GetMeanLifeTime(const G4Track&, G4ForceCondition*)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
private:
|
||||
|
||||
// pointer to array containg kinematics of secondaries
|
||||
G4GHEKinematicsVector* GetSecondaryKinematics();
|
||||
// void GetCaptureIsotope(const G4Track& track);
|
||||
G4double GetTargetMass(G4double, G4double);
|
||||
G4ReactionProductVector * DoMuCapture(G4double aEkin);
|
||||
|
||||
private:
|
||||
|
||||
void CascadeCorrection(G4double, G4double);
|
||||
G4double CoulombBarrier(G4int, G4double);
|
||||
void ExcitationEnergyLevel(G4int, G4int, G4double*, G4double*, G4double*);
|
||||
G4double CalculateIsotopicMass(G4double, G4double);
|
||||
void EvaporationDeexcitation();
|
||||
void FermiMotion(G4int);
|
||||
void ResidualNucleusCascade(G4int, G4int, G4double, G4double*,
|
||||
G4double*, G4bool*);
|
||||
G4double GetIsotopicMass(G4double, G4double);
|
||||
void Erup();
|
||||
void InitializeMuCapture();
|
||||
G4double LevelDensity(G4int, G4int, G4double*, G4double*);
|
||||
void GetCaptureIsotope(const G4Track&);
|
||||
void NuclearExcitation(G4double, G4double, G4double, G4double*,
|
||||
G4double*, G4double, G4double);
|
||||
void DoMuCapture();
|
||||
void MuEvaporation();
|
||||
void RanPolarAng(G4double*, G4double*);
|
||||
G4double NuclearBindingEnergy(G4double, G4double, G4double, G4double);
|
||||
void RanDirCos(G4double*, G4double*, G4double*);
|
||||
void RanAzimuthalAng(G4double*, G4double*);
|
||||
|
||||
private:
|
||||
|
||||
// relative time-of-flight of stopped hadron
|
||||
G4double tDelay;
|
||||
|
||||
// atomic mass of target nucleus
|
||||
G4double targetAtomicMass;
|
||||
|
||||
// charge of target nucleus
|
||||
G4double targetCharge;
|
||||
|
||||
// effective charge squared of target nucleus
|
||||
G4double zeff2;
|
||||
|
||||
// nuclear isotopica data
|
||||
G4double isotopicData[11][250];
|
||||
|
||||
// residual nuclear masses
|
||||
G4double residualNuclearMasses[297];
|
||||
|
||||
G4GHEKinematicsVector* Fragments;
|
||||
G4GHEKinematicsVector* Secondaries;
|
||||
G4GHEKinematicsVector* Evaporates;
|
||||
G4GHEKinematicsVector* Gkin;
|
||||
G4GHEKinematicsVector* Cascade;
|
||||
|
||||
G4int nGkine;
|
||||
G4int nCascade;
|
||||
|
||||
G4int nSecPart;
|
||||
G4int nallFragm;
|
||||
G4int nVariousFragm[6];
|
||||
|
||||
G4double nucleonMass[2];
|
||||
G4double nucleonMassSquared[2];
|
||||
G4double nucleonBindingEn[2];
|
||||
G4double nucleonPotWell[2];
|
||||
G4double nucleonMaxFermiEn[2];
|
||||
|
||||
G4double atMassCurrent;
|
||||
G4double chargeCurrent;
|
||||
|
||||
G4double massTarget;
|
||||
G4int atMassTarget;
|
||||
G4int chargeTarget;
|
||||
|
||||
G4double pairCorrFlag;
|
||||
|
||||
G4double nucleonFermiEn;
|
||||
G4double nucleonFermiMomX;
|
||||
G4double nucleonFermiMomY;
|
||||
G4double nucleonFermiMomZ;
|
||||
|
||||
G4double atMassEvapNucl;
|
||||
G4double chargeEvapNucl;
|
||||
G4double iniExcitEnEvapNucl;
|
||||
G4double finExcitEnEvapNucl;
|
||||
G4double recoilEnEvapNucl;
|
||||
|
||||
// residual nucleus kinematical quantities
|
||||
G4double totMomResidNucl;
|
||||
G4double momXResidNucl;
|
||||
G4double momYResidNucl;
|
||||
G4double momZResidNucl;
|
||||
G4double dirCosXResidNucl;
|
||||
G4double dirCosYResidNucl;
|
||||
G4double dirCosZResidNucl;
|
||||
G4double massResidNucl;
|
||||
G4double totEnResidNucl;
|
||||
G4double kinEnResidNucl;
|
||||
G4double excitEnResidNucl;
|
||||
G4double recoilEnResidNucl;
|
||||
G4int atMassResidNucl;
|
||||
G4int chargeResidNucl;
|
||||
|
||||
G4double massGamma;
|
||||
G4double massNeutrinoMu;
|
||||
G4double massProton;
|
||||
G4double massNeutron;
|
||||
G4double massFragm[6];
|
||||
|
||||
G4ParticleDefinition* pdefGamma;
|
||||
G4ParticleDefinition* pdefNeutrinoMu;
|
||||
G4ParticleDefinition* pdefMuonMinus;
|
||||
G4ParticleDefinition* pdefNeutron;
|
||||
G4ParticleDefinition* pdefFragm[6];
|
||||
|
||||
G4int nCascade;
|
||||
G4double targetCharge;
|
||||
G4double targetAtomicMass;
|
||||
// G4double tDelay;
|
||||
G4StopElementSelector* pSelector;
|
||||
G4MuMinusCaptureCascade* pEMCascade;
|
||||
G4GHEKinematicsVector* Cascade;
|
||||
G4Fancy3DNucleus theN;
|
||||
G4ExcitationHandler theHandler;
|
||||
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user