Import Geant4 10.7.1 source tree
This commit is contained in:
@@ -13,6 +13,19 @@ introduced in the code and keeptrack of all tags.
|
||||
* Reverse chronological order (last date on top), please *
|
||||
----------------------------------------------------------
|
||||
|
||||
07-January-2021 Alberto Ribon (phys-builders-V10-06-15)
|
||||
- G4HadronicBuilder : replaced 2-body decays of bottom mesons into
|
||||
charmed mesons and charged rho resonance, with 3-body decays into
|
||||
the same charmed mesons and charged pion and neutral pion.
|
||||
This allows to get a more precise numerical treatment of the decay
|
||||
kinematics in the rest frame, avoiding spurious energy-momentum
|
||||
violations reported by G4DecayProducts::IsChecked.
|
||||
|
||||
07-December-2020 Vladimir Ivanchenko (phys-builders-V10-06-14)
|
||||
- OrderingParameterTable - added forgotten processes (general
|
||||
positron, surface reflection, DNA) coherently with
|
||||
G4PhysicsListHelper
|
||||
|
||||
19-October-2020 Vladimir Ivanchenko (phys-builders-V10-06-13)
|
||||
- G4HadronicBuilder - added methods for FTFQGSP_BERT physics
|
||||
|
||||
|
||||
@@ -16,10 +16,12 @@ Compton 2 13 -1 -1 1000 0
|
||||
Conv 2 14 -1 -1 1000 0
|
||||
ConvToMuMu 2 15 -1 -1 1000 0
|
||||
GammaSuper 2 16 -1 -1 1000 0
|
||||
PositronSuper 2 17 1 1 1 0
|
||||
Cerenkov 2 21 -1 -1 1000 0
|
||||
Scintillation 2 22 9999 -1 9999 0
|
||||
SynchRad 2 23 -1 -1 1000 0
|
||||
TransRad 2 24 -1 -1 1000 0
|
||||
SurfaceRefl 2 25 -1 -1 1000 0
|
||||
OpAbsorp 3 31 -1 -1 1000 0
|
||||
OpBoundary 3 32 -1 -1 1000 0
|
||||
OpRayleigh 3 33 -1 -1 1000 0
|
||||
@@ -33,9 +35,17 @@ DNAVibExcit 2 54 -1 -1 1000 0
|
||||
DNAAttachment 2 55 -1 -1 1000 0
|
||||
DNAChargeDec 2 56 -1 -1 1000 0
|
||||
DNAChargeInc 2 57 -1 -1 1000 0
|
||||
DNAElecSolv 2 58 -1 -1 1000 0
|
||||
DNAMolecDecay 2 59 1000 -1 -1 0
|
||||
ITTransport 1 60 -1 0 0 0
|
||||
DNABrownTrans 1 61 -1 0 0 0
|
||||
DNADoubleIoni 2 62 -1 -1 1000 0
|
||||
DNADoubleCap 2 63 -1 -1 1000 0
|
||||
DNAIoniTransfer 2 64 -1 -1 1000 0
|
||||
HadElastic 4 111 -1 -1 1000 0
|
||||
HadInElastic 4 121 -1 -1 1000 0
|
||||
HadCaptue 4 131 -1 -1 1000 0
|
||||
HadInelastic 4 121 -1 -1 1000 0
|
||||
HadCapture 4 131 -1 -1 1000 0
|
||||
MuAtomCapture 4 132 -1 -1 1000 0
|
||||
HadFission 4 141 -1 -1 1000 0
|
||||
HadAtRest 4 151 1000 -1 -1 0
|
||||
HadCEX 4 161 -1 -1 1000 0
|
||||
@@ -44,9 +54,11 @@ DecayWSpin 6 202 1000 -1 1000 0
|
||||
DecayPiWSpin 6 203 1000 -1 1000 0
|
||||
DecayRadio 6 210 1000 -1 1000 0
|
||||
DecayUnKnown 6 211 1000 -1 1000 0
|
||||
DecayMuAtom 6 221 1000 -1 1000 0
|
||||
DecayExt 6 231 1000 -1 1000 0
|
||||
StepLimiter 7 401 -1 -1 1000 0
|
||||
UsrSpecCuts 7 402 -1 -1 1000 0
|
||||
NeutronKiller 7 403 -1 -1 1000 0
|
||||
ParallelWorld 10 491 9900 1 9900 1
|
||||
|
||||
|
||||
|
||||
@@ -373,22 +373,22 @@ void G4HadronicBuilder::BuildDecayTableForBCHadrons() {
|
||||
break;
|
||||
// Bottom mesons
|
||||
case 521 : // B+
|
||||
mode[0] = new G4PhaseSpaceDecayChannel( "B+", 1.0, 2, "anti_D0", "rho+" );
|
||||
mode[0] = new G4PhaseSpaceDecayChannel( "B+", 1.0, 3, "anti_D0", "pi+", "pi0" );
|
||||
break;
|
||||
case -521 : // B-
|
||||
mode[0] = new G4PhaseSpaceDecayChannel( "B-", 1.0, 2, "D0", "rho-" );
|
||||
mode[0] = new G4PhaseSpaceDecayChannel( "B-", 1.0, 3, "D0", "pi-", "pi0" );
|
||||
break;
|
||||
case 511 : // B0
|
||||
mode[0] = new G4PhaseSpaceDecayChannel( "B0", 1.0, 2, "D-", "rho+" );
|
||||
mode[0] = new G4PhaseSpaceDecayChannel( "B0", 1.0, 3, "D-", "pi+", "pi0" );
|
||||
break;
|
||||
case -511 : // anti_B0
|
||||
mode[0] = new G4PhaseSpaceDecayChannel( "anti_B0", 1.0, 2, "D+", "rho-" );
|
||||
mode[0] = new G4PhaseSpaceDecayChannel( "anti_B0", 1.0, 3, "D+", "pi-", "pi0" );
|
||||
break;
|
||||
case 531 : // Bs0
|
||||
mode[0] = new G4PhaseSpaceDecayChannel( "Bs0", 1.0, 2, "Ds-", "rho+" );
|
||||
mode[0] = new G4PhaseSpaceDecayChannel( "Bs0", 1.0, 3, "Ds-", "pi+", "pi0" );
|
||||
break;
|
||||
case -531 : // anti_Bs0
|
||||
mode[0] = new G4PhaseSpaceDecayChannel( "anti_Bs0", 1.0, 2, "Ds+", "rho-" );
|
||||
mode[0] = new G4PhaseSpaceDecayChannel( "anti_Bs0", 1.0, 3, "Ds+", "pi-", "pi0" );
|
||||
break;
|
||||
case 541 : // Bc+
|
||||
mode[0] = new G4PhaseSpaceDecayChannel( "Bc+", 1.0, 2, "J/psi", "pi+" );
|
||||
|
||||
Reference in New Issue
Block a user