Geant4-11
source
particles
hadrons
ions
src
G4HyperHe5.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: 2021 Alberto Ribon
27
//
28
//----------------------------------------------------------------------------
29
30
#include "
G4HyperHe5.hh
"
31
#include "
G4PhysicalConstants.hh
"
32
#include "
G4SystemOfUnits.hh
"
33
#include "
G4ParticleTable.hh
"
34
35
#include "
G4PhaseSpaceDecayChannel.hh
"
36
#include "
G4DecayTable.hh
"
37
38
// ###################################################################
39
// ### HYPERHE5 ###
40
// ###################################################################
41
42
G4HyperHe5
*
G4HyperHe5::theInstance
=
nullptr
;
43
44
45
G4HyperHe5
*
G4HyperHe5::Definition
() {
46
if
(
theInstance
!=
nullptr
)
return
theInstance
;
47
const
G4String
name
=
"hyperHe5"
;
48
// search in particle table
49
G4ParticleTable
* pTable =
G4ParticleTable::GetParticleTable
();
50
G4Ions
* anInstance =
reinterpret_cast<
G4Ions
*
>
( pTable->
FindParticle
(
name
) );
51
if
( anInstance ==
nullptr
) {
52
// create particle
53
//
54
// Arguments for constructor are as follows
55
// name mass width charge
56
// 2*spin parity C-conjugation
57
// 2*Isospin 2*Isospin3 G-parity
58
// type lepton number baryon number PDG encoding
59
// stable lifetime decay table
60
// shortlived subType anti_encoding
61
// excitation
62
anInstance =
new
G4Ions
(
name
, 4840.00*
MeV
, 2.501e-12*
MeV
, +2.0*
eplus
,
63
3, +1, 0,
64
0, 0, 0,
65
"nucleus"
, 0, +5, 1010020050,
66
false
, 0.2631*
ns
,
nullptr
,
67
false
,
"static"
, -1010020050,
68
0.0, 0 );
69
// Magnetic Moment
70
G4double
mN =
eplus
*
hbar_Planck
/2.0/(
proton_mass_c2
/
c_squared
);
71
anInstance->
SetPDGMagneticMoment
( 2.97896248 * mN );
72
73
// create Decay Table
74
G4DecayTable
* table =
new
G4DecayTable
;
75
// create decay channels
76
/*
77
// The decays "mode[1]" and "mode[3]" produce the secondaries "Li5" and "He5",
78
// respectively, whose corresponding anti-particles are not existing in Geant4:
79
// we therefore skip them for the time being, to keep the symmetry with the decays
80
// of anti_hyperHe5.
81
const G4double half_br_lambda_to_p_pim = 0.5*0.639;
82
const G4double half_br_lambda_to_n_piz = 0.5*0.358;
83
G4VDecayChannel** mode = new G4VDecayChannel*[4];
84
// lambda -> proton + pi- , with 50% probability of capturing the proton
85
mode[0] = new G4PhaseSpaceDecayChannel( "hyperHe5", half_br_lambda_to_p_pim, 3,
86
"alpha", "proton", "pi-" );
87
mode[1] = new G4PhaseSpaceDecayChannel( "hyperHe5", half_br_lambda_to_p_pim, 2,
88
"Li5", "pi-" );
89
// lambda -> neutron + pi0 , with 50% probability of capturing the neutron
90
mode[2] = new G4PhaseSpaceDecayChannel( "hyperHe5", half_br_lambda_to_n_piz, 3,
91
"alpha", "neutron", "pi0" );
92
mode[3] = new G4PhaseSpaceDecayChannel( "hyperHe5", half_br_lambda_to_n_piz, 2,
93
"He5", "pi0" );
94
for ( G4int index = 0; index < 4; ++index ) table->Insert( mode[index] );
95
*/
96
// Replacement decay for the time being
97
const
G4double
br_lambda_to_p_pim = 0.639;
98
const
G4double
br_lambda_to_n_piz = 0.358;
99
G4VDecayChannel
** mode =
new
G4VDecayChannel
*[2];
100
// lambda -> proton + pi- , with 0% probability of capturing the proton
101
mode[0] =
new
G4PhaseSpaceDecayChannel
(
"hyperHe5"
, br_lambda_to_p_pim, 3,
102
"alpha"
,
"proton"
,
"pi-"
);
103
// lambda -> neutron + pi0 , with 0% probability of capturing the neutron
104
mode[1] =
new
G4PhaseSpaceDecayChannel
(
"hyperHe5"
, br_lambda_to_n_piz, 3,
105
"alpha"
,
"neutron"
,
"pi0"
);
106
for
(
G4int
index = 0; index < 2; ++index ) table->
Insert
( mode[index] );
107
//---
108
delete
[] mode;
109
anInstance->
SetDecayTable
( table );
110
}
111
theInstance
=
reinterpret_cast<
G4HyperHe5
*
>
( anInstance );
112
return
theInstance
;
113
}
114
115
116
G4HyperHe5
*
G4HyperHe5::HyperHe5Definition
() {
117
return
Definition
();
118
}
119
120
121
G4HyperHe5
*
G4HyperHe5::HyperHe5
() {
122
return
Definition
();
123
}
G4DecayTable.hh
G4HyperHe5.hh
G4ParticleTable.hh
G4PhaseSpaceDecayChannel.hh
G4PhysicalConstants.hh
eplus
static constexpr double eplus
Definition:
G4SIunits.hh:184
MeV
static constexpr double MeV
Definition:
G4SIunits.hh:200
G4SystemOfUnits.hh
G4double
double G4double
Definition:
G4Types.hh:83
G4int
int G4int
Definition:
G4Types.hh:85
G4DecayTable
Definition:
G4DecayTable.hh:46
G4DecayTable::Insert
void Insert(G4VDecayChannel *aChannel)
Definition:
G4DecayTable.cc:53
G4HyperHe5
Definition:
G4HyperHe5.hh:42
G4HyperHe5::theInstance
static G4HyperHe5 * theInstance
Definition:
G4HyperHe5.hh:48
G4HyperHe5::HyperHe5
static G4HyperHe5 * HyperHe5()
Definition:
G4HyperHe5.cc:121
G4HyperHe5::Definition
static G4HyperHe5 * Definition()
Definition:
G4HyperHe5.cc:45
G4HyperHe5::HyperHe5Definition
static G4HyperHe5 * HyperHe5Definition()
Definition:
G4HyperHe5.cc:116
G4Ions
Definition:
G4Ions.hh:52
G4Ions::G4Ions
G4Ions()
Definition:
G4Ions.cc:95
G4ParticleDefinition::SetPDGMagneticMoment
void SetPDGMagneticMoment(G4double mageticMoment)
G4ParticleDefinition::SetDecayTable
void SetDecayTable(G4DecayTable *aDecayTable)
G4ParticleTable
Definition:
G4ParticleTable.hh:60
G4ParticleTable::FindParticle
G4ParticleDefinition * FindParticle(G4int PDGEncoding)
Definition:
G4ParticleTable.cc:586
G4ParticleTable::GetParticleTable
static G4ParticleTable * GetParticleTable()
Definition:
G4ParticleTable.cc:87
G4PhaseSpaceDecayChannel
Definition:
G4PhaseSpaceDecayChannel.hh:43
G4String
Definition:
G4String.hh:62
G4VDecayChannel
Definition:
G4VDecayChannel.hh:50
G4InuclParticleNames::name
const char * name(G4int ptype)
Definition:
G4InuclParticleNames.hh:76
source.hepunit.proton_mass_c2
float proton_mass_c2
Definition:
hepunit.py:274
source.hepunit.hbar_Planck
float hbar_Planck
Definition:
hepunit.py:263
source.hepunit.c_squared
float c_squared
Definition:
hepunit.py:257
ns
#define ns
Definition:
xmlparse.cc:614
Generated by
1.9.3