Geant4 11.1.1
Toolkit for the simulation of the passage of particles through matter
Loading...
Searching...
No Matches
G4ProtonDecay Class Reference

#include <G4ProtonDecay.hh>

+ Inheritance diagram for G4ProtonDecay:

Public Member Functions

 G4ProtonDecay (const G4ParticleDefinition *theParentNucleus, const G4double &theBR, const G4double &Qvalue, const G4double &excitation, const G4Ions::G4FloatLevelBase &flb)
 
virtual ~G4ProtonDecay ()
 
virtual G4DecayProductsDecayIt (G4double)
 
virtual void DumpNuclearInfo ()
 
- Public Member Functions inherited from G4NuclearDecay
 G4NuclearDecay (const G4String &channelName, const G4RadioactiveDecayMode &mode, const G4double &excitation, const G4Ions::G4FloatLevelBase &floatingLevel)
 
virtual ~G4NuclearDecay ()
 
G4RadioactiveDecayMode GetDecayMode ()
 
G4double GetDaughterExcitation ()
 
G4Ions::G4FloatLevelBase GetFloatingLevel ()
 
G4ParticleDefinitionGetDaughterNucleus ()
 
void SetHLThreshold (G4double HLT)
 
G4double GetHLThreshold ()
 
virtual void DumpNuclearInfo ()=0
 
- Public Member Functions inherited from G4VDecayChannel
 G4VDecayChannel (const G4String &aName, G4int Verbose=1)
 
 G4VDecayChannel (const G4String &aName, const G4String &theParentName, G4double theBR, G4int theNumberOfDaughters, const G4String &theDaughterName1, const G4String &theDaughterName2="", const G4String &theDaughterName3="", const G4String &theDaughterName4="", const G4String &theDaughterName5="")
 
virtual ~G4VDecayChannel ()
 
G4bool operator== (const G4VDecayChannel &r) const
 
G4bool operator!= (const G4VDecayChannel &r) const
 
G4bool operator< (const G4VDecayChannel &right) const
 
virtual G4DecayProductsDecayIt (G4double parentMass=-1.0)=0
 
const G4StringGetKinematicsName () const
 
G4double GetBR () const
 
G4int GetNumberOfDaughters () const
 
G4ParticleDefinitionGetParent ()
 
G4ParticleDefinitionGetDaughter (G4int anIndex)
 
G4int GetAngularMomentum ()
 
const G4StringGetParentName () const
 
const G4StringGetDaughterName (G4int anIndex) const
 
G4double GetParentMass () const
 
G4double GetDaughterMass (G4int anIndex) const
 
void SetParent (const G4ParticleDefinition *particle_type)
 
void SetParent (const G4String &particle_name)
 
void SetBR (G4double value)
 
void SetNumberOfDaughters (G4int value)
 
void SetDaughter (G4int anIndex, const G4ParticleDefinition *particle_type)
 
void SetDaughter (G4int anIndex, const G4String &particle_name)
 
void SetVerboseLevel (G4int value)
 
G4int GetVerboseLevel () const
 
void DumpInfo ()
 
G4double GetRangeMass () const
 
void SetRangeMass (G4double val)
 
virtual G4bool IsOKWithParentMass (G4double parentMass)
 
void SetPolarization (const G4ThreeVector &)
 
const G4ThreeVectorGetPolarization () const
 

Additional Inherited Members

- Protected Member Functions inherited from G4VDecayChannel
void ClearDaughtersName ()
 
void CheckAndFillDaughters ()
 
void CheckAndFillParent ()
 
G4double DynamicalMass (G4double massPDG, G4double width, G4double maxDev=1.0) const
 
 G4VDecayChannel ()
 
 G4VDecayChannel (const G4VDecayChannel &)
 
G4VDecayChanneloperator= (const G4VDecayChannel &)
 
- Protected Attributes inherited from G4NuclearDecay
const G4RadioactiveDecayMode theMode
 
- Protected Attributes inherited from G4VDecayChannel
G4String kinematics_name = ""
 
G4double rbranch = 0.0
 
G4Stringparent_name = nullptr
 
G4String ** daughters_name = nullptr
 
G4double rangeMass = 2.5
 
G4ThreeVector parent_polarization
 
G4ParticleTableparticletable = nullptr
 
G4ParticleDefinitionG4MT_parent = nullptr
 
G4ParticleDefinition ** G4MT_daughters = nullptr
 
G4double G4MT_parent_mass = 0.0
 
G4doubleG4MT_daughters_mass = nullptr
 
G4doubleG4MT_daughters_width = nullptr
 
G4Mutex daughtersMutex
 
G4Mutex parentMutex
 
G4int numberOfDaughters = 0
 
G4int verboseLevel = 1
 
- Static Protected Attributes inherited from G4VDecayChannel
static const G4String noName = " "
 

Detailed Description

Definition at line 44 of file G4ProtonDecay.hh.

Constructor & Destructor Documentation

◆ G4ProtonDecay()

G4ProtonDecay::G4ProtonDecay ( const G4ParticleDefinition theParentNucleus,
const G4double theBR,
const G4double Qvalue,
const G4double excitation,
const G4Ions::G4FloatLevelBase flb 
)

Definition at line 45 of file G4ProtonDecay.cc.

49 : G4NuclearDecay("proton decay", Proton, excitationE, flb), transitionQ(Qvalue)
50{
51 SetParent(theParentNucleus); // Store name of parent nucleus, delete G4MT_parent
52 SetBR(branch);
53
55 G4IonTable* theIonTable =
57 G4int daughterZ = theParentNucleus->GetAtomicNumber() - 1;
58 G4int daughterA = theParentNucleus->GetAtomicMass() - 1;
59 SetDaughter(0, theIonTable->GetIon(daughterZ, daughterA, excitationE, flb) );
60 SetDaughter(1, "proton");
61}
int G4int
Definition: G4Types.hh:85
G4ParticleDefinition * GetIon(G4int Z, G4int A, G4int lvl=0)
Definition: G4IonTable.cc:522
G4int GetAtomicNumber() const
G4int GetAtomicMass() const
G4IonTable * GetIonTable() const
static G4ParticleTable * GetParticleTable()
void SetBR(G4double value)
void SetNumberOfDaughters(G4int value)
void SetDaughter(G4int anIndex, const G4ParticleDefinition *particle_type)
void SetParent(const G4ParticleDefinition *particle_type)

◆ ~G4ProtonDecay()

G4ProtonDecay::~G4ProtonDecay ( )
virtual

Definition at line 64 of file G4ProtonDecay.cc.

65{}

Member Function Documentation

◆ DecayIt()

G4DecayProducts * G4ProtonDecay::DecayIt ( G4double  )
virtual

Implements G4VDecayChannel.

Definition at line 68 of file G4ProtonDecay.cc.

69{
70 // Fill G4MT_parent with theParentNucleus (stored by SetParent in ctor)
72
73 // Fill G4MT_daughters with proton and residual nucleus (stored by SetDaughter)
75
76 G4double protonMass = G4MT_daughters[1]->GetPDGMass();
77 // Excitation energy included in PDG mass
78 G4double nucleusMass = G4MT_daughters[0]->GetPDGMass();
79
80 // Q value was calculated from atomic masses.
81 // Use it to get correct proton energy.
82 G4double cmMomentum = std::sqrt(transitionQ*(transitionQ + 2.*protonMass)*
83 (transitionQ + 2.*nucleusMass)*
84 (transitionQ + 2.*protonMass + 2.*nucleusMass) )/
85 (transitionQ + protonMass + nucleusMass)/2.;
86
87 // Set up final state
88 // parentParticle is set at rest here because boost with correct momentum
89 // is done later
90 G4DynamicParticle parentParticle(G4MT_parent, G4ThreeVector(0,0,0), 0.0);
91 G4DecayProducts* products = new G4DecayProducts(parentParticle);
92
93 G4double costheta = 2.*G4UniformRand()-1.0;
94 G4double sintheta = std::sqrt(1.0 - costheta*costheta);
95 G4double phi = twopi*G4UniformRand()*rad;
96 G4ThreeVector direction(sintheta*std::cos(phi),sintheta*std::sin(phi),
97 costheta);
98
99 G4double KE = std::sqrt(cmMomentum*cmMomentum + protonMass*protonMass)
100 - protonMass;
101 G4DynamicParticle* daughterparticle =
102 new G4DynamicParticle(G4MT_daughters[1], direction, KE, protonMass);
103 products->PushProducts(daughterparticle);
104
105 KE = std::sqrt(cmMomentum*cmMomentum + nucleusMass*nucleusMass) - nucleusMass;
106 daughterparticle =
107 new G4DynamicParticle(G4MT_daughters[0], -1.0*direction, KE, nucleusMass);
108 products->PushProducts(daughterparticle);
109
110 // Energy conservation check
111 // For proton decays, do final energy check against reaction Q value
112 // which is well-measured using atomic mass differences. Nuclear masses
113 // should not be used since they are not usually directly measured and we
114 // always decay atoms and not fully stripped nuclei.
115 /*
116 G4int nProd = products->entries();
117 G4DynamicParticle* temp = 0;
118 G4double Esum = 0.0;
119 for (G4int i = 0; i < nProd; i++) {
120 temp = products->operator[](i);
121 Esum += temp->GetKineticEnergy();
122 }
123 G4double eCons = (transitionQ - Esum)/keV;
124 if (eCons > 1.e-07) G4cout << " Proton decay check: Ediff (keV) = " << eCons << G4endl;
125 */
126 return products;
127}
CLHEP::Hep3Vector G4ThreeVector
double G4double
Definition: G4Types.hh:83
#define G4UniformRand()
Definition: Randomize.hh:52
G4int PushProducts(G4DynamicParticle *aParticle)
G4ParticleDefinition ** G4MT_daughters
G4ParticleDefinition * G4MT_parent
void CheckAndFillDaughters()

◆ DumpNuclearInfo()

void G4ProtonDecay::DumpNuclearInfo ( )
virtual

Implements G4NuclearDecay.

Definition at line 130 of file G4ProtonDecay.cc.

131{
132 G4cout << " G4ProtonDecay for parent nucleus " << GetParentName() << G4endl;
133 G4cout << " decays to " << GetDaughterName(0) << " + " << GetDaughterName(1)
134 << " with branching ratio " << GetBR() << "% and Q value "
135 << transitionQ << G4endl;
136}
#define G4endl
Definition: G4ios.hh:57
G4GLOB_DLL std::ostream G4cout
G4double GetBR() const
const G4String & GetParentName() const
const G4String & GetDaughterName(G4int anIndex) const

The documentation for this class was generated from the following files: