Import Geant4 11.4.0 source tree

This commit is contained in:
Gabriele Cosmo
2025-12-05 08:54:02 +01:00
parent a499fb82e9
commit b4a16de652
6484 changed files with 232674 additions and 221097 deletions
+17 -1
View File
@@ -5,6 +5,22 @@ which **must** added in reverse chronological order (newest at the top).
It must **not** be used as a substitute for writing good git commit messages!
-------------------------------------------------------------------------------
## 2025-11-4 Shogo Okada (particles-V11-03-01)
- Scanned all mesons and baryons, including their resonances, to compare their
particle properties with PDG-2025. Then, updated mass, decay width, and
lifetime for particles below:
- messons: G4AntiBsMesonZero.cc, G4BsMesonZero.cc, G4Eta.cc, G4Etac.cc
G4JPsi.cc, G4Upsilon.cc
- Baryons: G4AntiSigmabMinus, G4AntiSigmabPlus, G4LambdacPlus,
G4OmegacZero, G4XicZero,
- Resonances: G4ExcitedLambdaConstructor, G4ExcitedNucleonConstructor,
G4ExcitedSigmaConstructor, G4ExcitedMessonConstructor,
mesons and baryons implemened in G4ShortLivedConstructor
## 2025-07-11 Soon Yung Jun (particles-V11-03-00)
- Add G4QuasiOpticalPhoton that is a non-physical particle definition designed
to encapsulate the conditions for generating a burst of optical photons in
processes such as scintillation or Cerenkov radiation.
## 2024-10-28 Ben Morgan (particles-V11-02-01)
- Apply [GitHub PR 74](https://github.com/Geant4/geant4/pull/74), fixing bug in
@@ -14,7 +30,7 @@ It must **not** be used as a substitute for writing good git commit messages!
## 2024-08-01 Alberto Ribon (particles-V11-02-00)
- G4ChargedUnknownParticle : new class, similar to G4UnknownParticle for
charged unknown particles.
( This is part of ATLAS and LHCb request to assign automatically
( This is part of ATLAS and LHCb request to assign automatically
ionisation and multiple scattering processes to charged primary particles
with valid PDG code but not known to Geant4. )
@@ -0,0 +1,58 @@
//
// ********************************************************************
// * License and Disclaimer *
// * *
// * The Geant4 software is copyright of the Copyright Holders of *
// * the Geant4 Collaboration. It is provided under the terms and *
// * conditions of the Geant4 Software License, included in the file *
// * LICENSE and available at http://cern.ch/geant4/license . These *
// * include a list of copyright holders. *
// * *
// * Neither the authors of this software system, nor their employing *
// * institutes,nor the agencies providing financial support for this *
// * work make any representation or warranty, express or implied, *
// * regarding this software system or assume any liability for its *
// * use. Please see the license in the file LICENSE and URL above *
// * for the full disclaimer and the limitation of liability. *
// * *
// * This code implementation is the result of the scientific and *
// * technical work of the GEANT4 collaboration. *
// * By using, copying, modifying or distributing the software (or *
// * any work based on the software) you agree to acknowledge its *
// * use in resulting scientific publications, and indicate your *
// * acceptance of all terms of the Geant4 Software license. *
// ********************************************************************
//
// Class Description:
// G4QuasiOpticalPhoton is a non-physical particle definition designed to
// encapsulate the conditions for generating a burst of optical photons in
// processes such as scintillation or Cerenkov radiation. Its role is to serve
// as a compact carrier of optical emission metadata—stored via
// G4VUserTrackInformation—including the number of photons to generate, parent
// particle charge, information about the step and track state, and associated
// material properties. This enables deferred or offloaded optical photon
// production and propagation, particularly for hybrid or heterogeneous
// workflows. The term *quasi* (suggested by Daren Sawkey) refers to the
// particles representation as a collective distribution of optical photons-
// a synthetic construct used to manage secondary particle generation in the
// Geant4 tracking and optical processes.
#ifndef G4QuasiOpticalPhoton_h
#define G4QuasiOpticalPhoton_h 1
#include "G4ParticleDefinition.hh"
class G4QuasiOpticalPhoton : public G4ParticleDefinition
{
public:
static G4QuasiOpticalPhoton* Definition();
static G4QuasiOpticalPhoton* QuasiOpticalPhotonDefinition();
static G4QuasiOpticalPhoton* QuasiOpticalPhoton();
private:
G4QuasiOpticalPhoton() {}
~G4QuasiOpticalPhoton() override = default;
static G4QuasiOpticalPhoton* theInstance;
};
#endif
+2
View File
@@ -12,6 +12,7 @@ geant4_add_module(G4bosons
G4PhononLong.hh
G4PhononTransFast.hh
G4PhononTransSlow.hh
G4QuasiOpticalPhoton.hh
G4UnknownParticle.hh
SOURCES
G4BosonConstructor.cc
@@ -23,6 +24,7 @@ geant4_add_module(G4bosons
G4PhononLong.cc
G4PhononTransFast.cc
G4PhononTransSlow.cc
G4QuasiOpticalPhoton.cc
G4UnknownParticle.cc)
geant4_module_link_libraries(G4bosons PUBLIC G4partman PRIVATE G4globman)
@@ -0,0 +1,75 @@
//
// ********************************************************************
// * License and Disclaimer *
// * *
// * The Geant4 software is copyright of the Copyright Holders of *
// * the Geant4 Collaboration. It is provided under the terms and *
// * conditions of the Geant4 Software License, included in the file *
// * LICENSE and available at http://cern.ch/geant4/license . These *
// * include a list of copyright holders. *
// * *
// * Neither the authors of this software system, nor their employing *
// * institutes,nor the agencies providing financial support for this *
// * work make any representation or warranty, express or implied, *
// * regarding this software system or assume any liability for its *
// * use. Please see the license in the file LICENSE and URL above *
// * for the full disclaimer and the limitation of liability. *
// * *
// * This code implementation is the result of the scientific and *
// * technical work of the GEANT4 collaboration. *
// * By using, copying, modifying or distributing the software (or *
// * any work based on the software) you agree to acknowledge its *
// * use in resulting scientific publications, and indicate your *
// * acceptance of all terms of the Geant4 Software license. *
// ********************************************************************
#include "G4QuasiOpticalPhoton.hh"
#include "G4ParticleTable.hh"
#include "G4String.hh"
#include "G4SystemOfUnits.hh"
G4QuasiOpticalPhoton* G4QuasiOpticalPhoton::theInstance = nullptr;
G4QuasiOpticalPhoton* G4QuasiOpticalPhoton::Definition()
{
if (theInstance != nullptr) return theInstance;
const G4String name = "quasi_opticalphoton";
// search in particle table
G4ParticleTable* pTable = G4ParticleTable::GetParticleTable();
G4ParticleDefinition* anInstance = pTable->FindParticle(name);
if (anInstance == nullptr) {
// create particle
//
// Arguments for constructor are as follows
// name mass width charge
// 2*spin parity C-conjugation
// 2*Isospin 2*Isospin3 G-parity
// type lepton number baryon number PDG encoding
// stable lifetime decay table
// shortlived subType anti_encoding
// clang-format off
anInstance = new G4ParticleDefinition(
name, 0.0*MeV, 0.0*MeV, 0.0,
2, -1, -1,
0, 0, 0,
"qusai", 0, 0, -20000022,
true, 0.0, nullptr,
false, "opticalphoton", -20000022
);
// clang-format on
}
theInstance = static_cast<G4QuasiOpticalPhoton*>(anInstance);
return theInstance;
}
G4QuasiOpticalPhoton*
G4QuasiOpticalPhoton::QuasiOpticalPhotonDefinition()
{
return Definition();
}
G4QuasiOpticalPhoton* G4QuasiOpticalPhoton::QuasiOpticalPhoton()
{
return Definition();
}
@@ -32,6 +32,8 @@
// - Created Hisaya Kurashige, 11 Aug. 2011
// - Update mass and width
// following PDG 2023 Shogo Okada, 5 Nov. 2023
// - Update mass and width
// following PDG 2025 Shogo Okada, 4 Nov. 2025
// **********************************************************************
//
@@ -67,7 +69,7 @@ G4AntiSigmabMinus* G4AntiSigmabMinus::Definition()
// clang-format off
anInstance = new G4ParticleDefinition(
name, 5.81564*GeV, 5.3*MeV, +1.0*eplus,
name, 5.81056*GeV, 4.95*MeV, +1.0*eplus,
1, +1, 0,
2, +2, 0,
"baryon", 0, -1, -5112,
@@ -32,6 +32,8 @@
// - Created Hisaya Kurashige, 11 Aug. 2011
// - Update mass and width
// following PDG 2023 Shogo Okada, 5 Nov. 2023
// - Update width
// following PDG 2025 Shogo Okada, 4 Nov. 2025
// **********************************************************************
//
@@ -67,7 +69,7 @@ G4AntiSigmabPlus* G4AntiSigmabPlus::Definition()
// clang-format off
anInstance = new G4ParticleDefinition(
name, 5.81056*GeV, 5.0*MeV, -1.0*eplus,
name, 5.81056*GeV, 4.95*MeV, -1.0*eplus,
1, +1, 0,
2, -2, 0,
"baryon", 0, -1, -5222,
@@ -61,11 +61,11 @@ G4LambdacPlus* G4LambdacPlus::Definition()
// clang-format off
anInstance = new G4ParticleDefinition(
name, 2.28646*GeV, 3.27e-9*MeV, +1.*eplus,
name, 2.28646*GeV, 3.25e-9*MeV, +1.*eplus,
1, +1, 0,
0, 0, 0,
"baryon", 0, +1, 4122,
false, 0.2015e-3*ns, nullptr,
false, 0.2026e-3*ns, nullptr,
false, "lambda_c");
// clang-format on
}
@@ -31,6 +31,8 @@
// **********************************************************************
// New impelemenataion as an utility class M.Asai, 26 July 2004
// Updated width and lifetime following PDG 2023 S.Okada, 5 November 2023
// Updated mass, width and lifetime
// following PDG 2025 S.Okada, 4 November 2025
// ----------------------------------------------------------------------
#include "G4OmegacZero.hh"
@@ -61,11 +63,11 @@ G4OmegacZero* G4OmegacZero::Definition()
// clang-format off
anInstance = new G4ParticleDefinition(
name, 2.6952*GeV, 2.46e-9*MeV, 0.*eplus,
name, 2.6953*GeV, 2.41e-9*MeV, 0.*eplus,
1, +1, 0,
0, 0, 0,
"baryon", 0, +1, 4332,
false, 2.68e-4*ns, nullptr,
false, 2.73e-4*ns, nullptr,
false, "omega_c");
// clang-format on
}
@@ -31,6 +31,7 @@
// **********************************************************************
// New impelemenataion as an utility class M.Asai, 26 July 2004
// Updated mass, width and lifetime following PDG 2023 S.Okada, 5 November 2023
// Updated width and lifetime following PDG 2025 S.Okada, 4 November 2025
// ----------------------------------------------------------------------
#include "G4XicZero.hh"
@@ -61,11 +62,11 @@ G4XicZero* G4XicZero::Definition()
// clang-format off
anInstance = new G4ParticleDefinition(
name, 2.47044*GeV, 4.33e-9*MeV, 0.0,
name, 2.47044*GeV, 4.38e-9*MeV, 0.0,
1, +1, 0,
1, -1, 0,
"baryon", 0, +1, 4132,
false, 1.52e-4*ns, nullptr,
false, 1.50e-4*ns, nullptr,
false, "xi_c");
// clang-format on
}
@@ -31,6 +31,8 @@
// - New impelemenataion as an utility class M.Asai, 26 July 2004
// - Updated mass, width, and lifetime
// following PDG 2023 S.Okada, 5 November 2023
// - Updated mass, width, and lifetime
// following PDG 2025 S.Okada, 4 November 2025
// ----------------------------------------------------------------------
#include "G4AntiBsMesonZero.hh"
@@ -61,11 +63,11 @@ G4AntiBsMesonZero* G4AntiBsMesonZero::Definition()
// clang-format off
anInstance = new G4ParticleDefinition(
name, 5.36692*GeV, 4.327e-10*MeV, 0.,
name, 5.36693*GeV, 4.342e-10*MeV, 0.,
0, -1, 0,
0, 0, 0,
"meson", 0, 0, -531,
false, 1.521e-3*ns, nullptr,
false, 1.516e-3*ns, nullptr,
false, "Bs");
// clang-format on
}
@@ -29,6 +29,8 @@
// - Created Hisaya Kurashige, 16 June 1997
// - Updated mass, width, and
// lifetime following PDG 2023 Shogo Okada, 5 November 2023
// - Updated mass, width, and
// lifetime following PDG 2025 Shogo Okada, 4 November 2025
// **********************************************************************
//
@@ -60,11 +62,11 @@ G4BsMesonZero* G4BsMesonZero::Definition()
// clang-format off
anInstance = new G4ParticleDefinition(
name, 5.36692*GeV, 4.327e-10*MeV, 0.,
name, 5.36693*GeV, 4.342e-10*MeV, 0.,
0, -1, 0,
0, 0, 0,
"meson", 0, 0, 531,
false, 1.521e-3*ns, nullptr,
false, 1.516e-3*ns, nullptr,
false, "Bs");
// clang-format on
}
+2 -1
View File
@@ -33,6 +33,7 @@
// New impelemenataion as an utility class M.Asai, 26 July 2004
// ----------------------------------------------------------------------
// Update mass (PDG2006) Oct. 11 2006 H.Kurashige
// Update width(PDG2025) Nov. 4 2025 S.Okada
//
#include "G4Eta.hh"
@@ -67,7 +68,7 @@ G4Eta* G4Eta::Definition()
// clang-format off
anInstance = new G4ParticleDefinition(
name, 0.547862*GeV, 1.31*keV, 0.0,
name, 0.547862*GeV, 1.308*keV, 0.0,
0, -1, +1,
0, 0, +1,
"meson", 0, 0, 221,
@@ -29,9 +29,9 @@
// History: first implementation, based on object model of
// 4th April 1996, G.Cosmo
//
// Created, Hisaya Kurashige, 11, Aug. 2011
// Created, Hisaya Kurashige, 11, Aug. 2011
// **********************************************************************
//
// Updated mass and width (PDG2023), Shogo Okada, 4, Nov. 2025
#include "G4Etac.hh"
@@ -61,7 +61,7 @@ G4Etac* G4Etac::Definition()
// clang-format off
anInstance = new G4ParticleDefinition(
name, 2.9834*GeV, 31.8*MeV, 0.0,
name, 2.9841*GeV, 30.5*MeV, 0.0,
0, -1, +1,
0, 0, +1,
"meson", 0, 0, 441,
@@ -30,6 +30,7 @@
// **********************************************************************
// New impelemenataion as an utility class M.Asai, 26 July 2004
// ----------------------------------------------------------------------
// Update mass and width (PDG2025) S.Okada, 4 Nov. 2025
#include "G4JPsi.hh"
@@ -59,7 +60,7 @@ G4JPsi* G4JPsi::Definition()
// clang-format off
anInstance = new G4ParticleDefinition(
name, 3.096916*GeV, 0.0929*MeV, 0.,
name, 3.096900*GeV, 0.0926*MeV, 0.,
2, -1, -1,
0, 0, -1,
"meson", 0, 0, 443,
@@ -28,7 +28,7 @@
//
// Created Hisaya Kurashige, 16 June 1997
// **********************************************************************
//
// Update mass and width (PDG2023), Shogo Okada, 4, Nov. 2025
#include "G4Upsilon.hh"
@@ -58,7 +58,7 @@ G4Upsilon* G4Upsilon::Definition()
// clang-format off
anInstance = new G4ParticleDefinition(
name, 9.46030*GeV, 54.00*keV, 0.,
name, 9.4604*GeV, 54.02*keV, 0.,
2, -1, -1,
0, 0, -1,
"meson", 0, 0, 553,
@@ -30,6 +30,9 @@
//
// Update mass and width following PDG 2023
// 4 nov 2023 S.Okada
//
// Update mass and width for lambda(1520) following PDG 2025
// 4 nov 2025 S.Okada
// ---------------------------------------------------------------
#include "G4ExcitedLambdaConstructor.hh"
@@ -335,14 +338,14 @@ const char* G4ExcitedLambdaConstructor::name[] = {
};
const G4double G4ExcitedLambdaConstructor::mass[] = {
1.4051*GeV,1.5194*GeV, 1.600*GeV, 1.674*GeV, 1.690*GeV,
1.4051*GeV,1.5190*GeV, 1.600*GeV, 1.674*GeV, 1.690*GeV,
1.800*GeV, 1.790*GeV, 1.820*GeV, 1.825*GeV, 1.890*GeV,
2.100*GeV, 2.090*GeV
};
const G4double G4ExcitedLambdaConstructor::width[] = {
50.5*MeV, 15.7*MeV, 2000.0*MeV, 30.0*MeV, 70.0*MeV,
200.0*MeV, 110.0*MeV, 80.0*MeV, 90.0*MeV, 120.0*MeV,
50.5*MeV, 16.0*MeV, 2000.0*MeV, 30.0*MeV, 70.0*MeV,
200.0*MeV, 110.0*MeV, 80.0*MeV, 90.0*MeV, 120.0*MeV,
200.0*MeV, 250.0*MeV
};
@@ -31,6 +31,8 @@
// 01 Oct. 02 Fixed PDG codes for a0(1450), f0(1370), k0_star(1430)
//
// Update mass and width following PDG 2023 5 Nov. 2023 S.Okada
// Update mass and width for excited messons following PDG 2025
// 4 Nov. 2025 S.Okada
#include "G4ExcitedMesonConstructor.hh"
@@ -1370,16 +1372,16 @@ const char* G4ExcitedMesonConstructor::name[G4ExcitedMesonConstructor::NMultiple
const G4double G4ExcitedMesonConstructor::mass[G4ExcitedMesonConstructor::NMultiplets ][ G4ExcitedMesonConstructor::NMesonTypes ] =
{
{ 1.2295*GeV, 1.166*GeV, 1.409*GeV, 1.253*GeV, 1.253*GeV },
{ 1.439*GeV, 1.350*GeV, 0.0, 1.425*GeV, 1.425*GeV },
{ 1.230*GeV,1.2819*GeV,1.4263*GeV, 1.403*GeV, 1.403*GeV },
{ 1.3182*GeV,1.2750*GeV,1.5174*GeV,1.4273*GeV, 1.4273*GeV },
{ 1.6706*GeV, 1.617*GeV, 1.842*GeV, 1.773*GeV, 1.773*GeV },
{ 1.729*GeV, 1.670*GeV, 0.0, 1.718*GeV, 1.718*GeV },
{ 1.6888*GeV, 1.667*GeV, 1.854*GeV, 1.779*GeV, 1.779*GeV },
{ 1.300*GeV, 1.294*GeV, 1.475*GeV, 1.482*GeV, 1.482*GeV },
{ 1.465*GeV, 1.410*GeV, 1.680*GeV, 1.414*GeV, 1.414*GeV },
{ 0.0, 1.815*GeV, 2.011*GeV, 1.994*GeV, 1.994*GeV }
{ 1.2295*GeV, 1.166*GeV, 1.4091*GeV, 1.2531*GeV, 1.2531*GeV },
{ 1.4387*GeV, 1.350*GeV, 0.0, 1.425*GeV, 1.425*GeV },
{ 1.230*GeV, 1.2818*GeV, 1.4025*GeV, 1.403*GeV, 1.403*GeV },
{ 1.3182*GeV, 1.2754*GeV, 1.5173*GeV, 1.4324*GeV, 1.4324*GeV },
{ 1.6706*GeV, 1.6173*GeV, 1.8417*GeV, 1.773*GeV, 1.773*GeV },
{ 1.720*GeV, 1.670*GeV, 0.0, 1.7176*GeV, 1.7176*GeV },
{ 1.6888*GeV, 1.6672*GeV, 1.8543*GeV, 1.7789*GeV, 1.7789*GeV },
{ 1.300*GeV, 1.2937*GeV, 1.4755*GeV, 1.482*GeV, 1.482*GeV },
{ 1.465*GeV, 1.410*GeV, 1.680*GeV, 1.4137*GeV, 1.4137*GeV },
{ 0.0, 1.8149*GeV, 2.011*GeV, 1.9945*GeV, 1.9945*GeV }
};
const G4double G4ExcitedMesonConstructor::massKdiff[ G4ExcitedMesonConstructor::NMultiplets ] = {
@@ -1394,16 +1396,16 @@ const G4double G4ExcitedMesonConstructor::widthKdiff[ G4ExcitedMesonConstructor
const G4double G4ExcitedMesonConstructor::width[G4ExcitedMesonConstructor::NMultiplets ][ G4ExcitedMesonConstructor::NMesonTypes ] =
{
{ 142.0*MeV, 375.0*MeV, 78.0*MeV, 90.0*MeV, 90.0*MeV },
{ 142.4*MeV, 375.0*MeV, 78.0*MeV, 90.0*MeV, 90.0*MeV },
{ 258.0*MeV, 350.0*MeV, 0.0, 270.0*MeV, 270.0*MeV },
{ 420.0*MeV, 22.7*MeV, 54.5*MeV, 174.0*MeV, 174.0*MeV },
{ 107.0*MeV, 186.6*MeV, 86.0*MeV, 100.0*MeV, 100.0*MeV },
{ 258.0*MeV, 181.0*MeV, 225.0*MeV, 186.0*MeV, 186.0*MeV },
{ 250.0*MeV, 315.0*MeV, 0.0, 322.0*MeV, 322.0*MeV },
{ 161.0*MeV, 168.0*MeV, 87.0*MeV, 161.0*MeV, 161.0*MeV },
{ 400.0*MeV, 55.0*MeV, 90.0*MeV, 335.0*MeV, 335.0*MeV },
{ 400.0*MeV, 290.0*MeV, 150.0*MeV, 232.0*MeV, 232.0*MeV },
{ 0.0, 197.0*MeV, 202.0*MeV, 348.0*MeV, 348.0*MeV }
{ 425.0*MeV, 23.0*MeV, 173.9*MeV, 174.0*MeV, 174.0*MeV },
{ 107.0*MeV, 186.6*MeV, 71.9*MeV, 108.9*MeV, 108.9*MeV },
{ 257.5*MeV, 180.9*MeV, 225.2*MeV, 186.1*MeV, 186.1*MeV },
{ 250.0*MeV, 315.0*MeV, 0.0, 322.4*MeV, 322.4*MeV },
{ 160.5*MeV, 167.5*MeV, 86.8*MeV, 161.2*MeV, 161.2*MeV },
{ 400.0*MeV, 55.3*MeV, 95.7*MeV, 335.0*MeV, 335.0*MeV },
{ 400.0*MeV, 290.0*MeV, 150.0*MeV, 231.8*MeV, 231.8*MeV },
{ 0.0, 197.4*MeV, 202.0*MeV, 348.0*MeV, 348.0*MeV }
};
@@ -30,6 +30,9 @@
//
// Update mass and width following PDG 2023
// 4 nov 2023 S.Okada
//
// Update mass for N(1535) following PDG 2025
// 4 nov 2025 S.Okada
// ---------------------------------------------------------------
#include "G4ExcitedNucleonConstructor.hh"
@@ -559,7 +562,7 @@ const char* G4ExcitedNucleonConstructor::name[] = {
};
const G4double G4ExcitedNucleonConstructor::mass[] = {
1.440*GeV, 1.515*GeV, 1.535*GeV, 1.650*GeV, 1.675*GeV,
1.440*GeV, 1.515*GeV, 1.530*GeV, 1.650*GeV, 1.675*GeV,
1.685*GeV, 1.720*GeV, 1.710*GeV, 1.720*GeV, 1.920*GeV,
2.020*GeV, 2.080*GeV, 2.180*GeV, 2.250*GeV, 2.280*GeV
};
@@ -31,6 +31,9 @@
//
// Update mass and width following PDG 2023
// 4 nov 2023 S.Okada
//
// Update mass and width following PDG 2025
// 4 nov 2025 S.Okada
// ---------------------------------------------------------------
#include "G4ExcitedSigmaConstructor.hh"
@@ -578,9 +581,9 @@ G4double G4ExcitedSigmaConstructor::GetMass(G4int iState, G4int iso3)
G4double fmass = mass[iState];
if (iState == 0) {
if (iso3 == +2)
fmass -= 0.9 * MeV; // sigma+
fmass -= 0.9 * MeV; // sigma+ (1.3828 GeV from PDG 2025)
else if (iso3 == -2)
fmass += 3.5 * MeV; // sigma-
fmass -= 0.9 * MeV; // sigma- (1.3828 GeV from PDG 2025)
}
return fmass;
}
@@ -590,9 +593,9 @@ G4double G4ExcitedSigmaConstructor::GetWidth(G4int iState, G4int iso3)
G4double fw = width[iState];
if (iState == 0) {
if (iso3 == +2)
fw = 36.0 * MeV; // sigma+
fw = 36.2 * MeV; // sigma+ (modified based on PDG 2025)
else if (iso3 == -2)
fw = 39.4 * MeV; // sigma-
fw = 36.2 * MeV; // sigma- (modified based on PDG 2025)
}
return fw;
}
@@ -33,6 +33,8 @@
// - Added charm and bottom diquarks 09 Oct. 2019 V.Uzhinsky
// - Update mass and width for excited mesons
// and excited baryons following PDG 2023 05 Nov. 2023 S.Okada
// - Update mass and width for excited mesons
// and excited baryons following PDG 2025 04 Nov. 2025 S.Okada
#include "G4ShortLivedConstructor.hh"
@@ -627,11 +629,11 @@ void G4ShortLivedConstructor::ConstructBaryons()
// delta(1232)++
// clang-format off
particle = new G4ExcitedBaryons(
"delta++", 1.232*GeV, 117.0*MeV, +2.0*eplus,
3, +1, 0,
3, +3, 0,
"baryon", 0, +1, 2224,
false, 0.0, nullptr);
"delta++", 1.232*GeV, 117.0*MeV, +2.0*eplus,
3, +1, 0,
3, +3, 0,
"baryon", 0, +1, 2224,
false, 0.0, nullptr);
// clang-format on
// set sub type
@@ -648,11 +650,11 @@ void G4ShortLivedConstructor::ConstructBaryons()
// delta(1232)+
// clang-format off
particle = new G4ExcitedBaryons(
"delta+", 1.232*GeV, 117.0*MeV, +1.0*eplus,
3, +1, 0,
3, +1, 0,
"baryon", 0, +1, 2214,
false, 0.0, nullptr);
"delta+", 1.232*GeV, 117.0*MeV, +1.0*eplus,
3, +1, 0,
3, +1, 0,
"baryon", 0, +1, 2214,
false, 0.0, nullptr);
// clang-format on
// set sub type
@@ -678,11 +680,11 @@ void G4ShortLivedConstructor::ConstructBaryons()
// delta(1232)0
// clang-format off
particle = new G4ExcitedBaryons(
"delta0", 1.232*GeV, 117.0*MeV, +0.0*eplus,
3, +1, 0,
3, -1, 0,
"baryon", 0, +1, 2114,
false, 0.0, nullptr);
"delta0", 1.232*GeV, 117.0*MeV, +0.0*eplus,
3, +1, 0,
3, -1, 0,
"baryon", 0, +1, 2114,
false, 0.0, nullptr);
// clang-format on
// set sub type
@@ -706,11 +708,11 @@ void G4ShortLivedConstructor::ConstructBaryons()
// delta(1232)-
// clang-format off
particle = new G4ExcitedBaryons(
"delta-", 1.232*GeV, 117.0*MeV, -1.0*eplus,
3, +1, 0,
3, -3, 0,
"baryon", 0, +1, 1114,
false, 0.0, nullptr);
"delta-", 1.232*GeV, 117.0*MeV, -1.0*eplus,
3, +1, 0,
3, -3, 0,
"baryon", 0, +1, 1114,
false, 0.0, nullptr);
// clang-format on
// set sub type
@@ -732,7 +734,7 @@ void G4ShortLivedConstructor::ConstructBaryons()
3, +1, 0,
3, -3, 0,
"baryon", 0, -1, -2224,
false, 0.0, nullptr);
false, 0.0, nullptr);
// clang-format on
// set sub type
@@ -749,11 +751,11 @@ void G4ShortLivedConstructor::ConstructBaryons()
// anti_delta(1232)+
// clang-format off
particle = new G4ExcitedBaryons(
"anti_delta+", 1.232*GeV, 117.0*MeV, -1.0*eplus,
3, +1, 0,
3, -1, 0,
"baryon", 0, -1, -2214,
false, 0.0, nullptr);
"anti_delta+", 1.232*GeV, 117.0*MeV, -1.0*eplus,
3, +1, 0,
3, -1, 0,
"baryon", 0, -1, -2214,
false, 0.0, nullptr);
// clang-format on
// set sub type
@@ -773,11 +775,11 @@ void G4ShortLivedConstructor::ConstructBaryons()
// anti_delta(1232)0
// clang-format off
particle = new G4ExcitedBaryons(
"anti_delta0", 1.232*GeV, 117.0*MeV, +0.0*eplus,
3, +1, 0,
3, +1, 0,
"baryon", 0, -1, -2114,
false, 0.0, nullptr);
"anti_delta0", 1.232*GeV, 117.0*MeV, +0.0*eplus,
3, +1, 0,
3, +1, 0,
"baryon", 0, -1, -2114,
false, 0.0, nullptr);
// clang-format on
// set sub type
@@ -797,11 +799,11 @@ void G4ShortLivedConstructor::ConstructBaryons()
// anti_delta(1232)-
// clang-format off
particle = new G4ExcitedBaryons(
"anti_delta-", 1.232*GeV, 117.0*MeV, +1.0*eplus,
3, +1, 0,
3, +3, 0,
"baryon", 0, -1, -1114,
false, 0.0, nullptr);
"anti_delta-", 1.232*GeV, 117.0*MeV, +1.0*eplus,
3, +1, 0,
3, +3, 0,
"baryon", 0, -1, -1114,
false, 0.0, nullptr);
// clang-format on
// set sub type
@@ -833,11 +835,11 @@ void G4ShortLivedConstructor::ConstructMesons()
// omega
// clang-format off
particle = new G4ExcitedMesons(
"omega", 782.65*MeV, 8.68*MeV, +0.0*eplus,
2, -1, -1,
0, +0, -1,
"meson", 0, 0, 223,
false, 0.0, nullptr);
"omega", 782.65*MeV, 8.68*MeV, +0.0*eplus,
2, -1, -1,
0, +0, -1,
"meson", 0, 0, 223,
false, 0.0, nullptr);
// clang-format on
particle->SetAntiPDGEncoding(223);
@@ -868,10 +870,10 @@ void G4ShortLivedConstructor::ConstructMesons()
// clang-format off
particle = new G4ExcitedMesons(
"phi", 1019.46*MeV, 4.249*MeV, +0.0*eplus,
2, -1, -1,
0, +0, -1,
"meson", 0, 0, 333,
false, 0.0, nullptr);
2, -1, -1,
0, +0, -1,
"meson", 0, 0, 333,
false, 0.0, nullptr);
// clang-format on
particle->SetAntiPDGEncoding(333);
@@ -898,11 +900,11 @@ void G4ShortLivedConstructor::ConstructMesons()
// rho+
// clang-format off
particle = new G4ExcitedMesons(
"rho+", 775.8*MeV, 149.1*MeV, +1.0*eplus,
2, -1, -1,
2, +2, +1,
"meson", 0, 0, 213,
false, 0.0, nullptr);
"rho+", 775.11*MeV, 149.1*MeV, +1.0*eplus,
2, -1, -1,
2, +2, +1,
"meson", 0, 0, 213,
false, 0.0, nullptr);
// clang-format on
// set sub type
@@ -919,11 +921,11 @@ void G4ShortLivedConstructor::ConstructMesons()
// rho-
// clang-format off
particle = new G4ExcitedMesons(
"rho-", 775.8*MeV, 149.1*MeV, -1.0*eplus,
2, -1, -1,
2, -2, +1,
"meson", 0, 0, -213,
false, 0.0, nullptr);
"rho-", 775.11*MeV, 149.1*MeV, -1.0*eplus,
2, -1, -1,
2, -2, +1,
"meson", 0, 0, -213,
false, 0.0, nullptr);
// clang-format on
// set sub type
@@ -940,11 +942,11 @@ void G4ShortLivedConstructor::ConstructMesons()
// rho0
// clang-format off
particle = new G4ExcitedMesons(
"rho0", 775.26*MeV, 147.4*MeV, 0.0,
2, -1, -1,
2, 0, +1,
"meson", 0, 0, 113,
false, 0.0*ns, nullptr );
"rho0", 775.26*MeV, 147.4*MeV, 0.0,
2, -1, -1,
2, 0, +1,
"meson", 0, 0, 113,
false, 0.0*ns, nullptr );
// clang-format on
particle->SetAntiPDGEncoding(113);
// set sub type
@@ -961,11 +963,11 @@ void G4ShortLivedConstructor::ConstructMesons()
// a0(980)+
// clang-format off
particle = new G4ExcitedMesons(
"a0(980)+", 980.0*MeV, 60.0*MeV, +1.0*eplus,
0, +1, +1,
2, +2, -1,
"meson", 0, 0, 9000211,
false, 0.0, nullptr);
"a0(980)+", 980.0*MeV, 60.0*MeV, +1.0*eplus,
0, +1, +1,
2, +2, -1,
"meson", 0, 0, 9000211,
false, 0.0, nullptr);
// clang-format on
// set sub type
particle->SetMultipletName("a0(980)");
@@ -981,11 +983,11 @@ void G4ShortLivedConstructor::ConstructMesons()
// a0(980)-
// clang-format off
particle = new G4ExcitedMesons(
"a0(980)-", 980.0*MeV, 60.0*MeV, -1.0*eplus,
0, +1, +1,
2, -2, -1,
"meson", 0, 0, -9000211,
false, 0.0, nullptr);
"a0(980)-", 980.0*MeV, 60.0*MeV, -1.0*eplus,
0, +1, +1,
2, -2, -1,
"meson", 0, 0, -9000211,
false, 0.0, nullptr);
// clang-format on
// set sub type
@@ -1002,11 +1004,11 @@ void G4ShortLivedConstructor::ConstructMesons()
// a0(980)0
// clang-format off
particle = new G4ExcitedMesons(
"a0(980)0", 980.0*MeV, 75.0*MeV, 0.0,
0, +1, +1,
2, 0, -1,
"meson", 0, 0, 9000111,
false, 0.0, nullptr);
"a0(980)0", 980.0*MeV, 75.0*MeV, 0.0,
0, +1, +1,
2, 0, -1,
"meson", 0, 0, 9000111,
false, 0.0, nullptr);
// clang-format on
particle->SetAntiPDGEncoding(9000111);
// set sub type
@@ -1027,7 +1029,7 @@ void G4ShortLivedConstructor::ConstructMesons()
0, +1, +1,
0, 0, +1,
"meson", 0, 0, 9000221,
false, 0.0, nullptr);
false, 0.0, nullptr);
// clang-format on
particle->SetAntiPDGEncoding(9000221);
@@ -1049,7 +1051,7 @@ void G4ShortLivedConstructor::ConstructMesons()
0, +1, +1,
0, 0, +1,
"meson", 0, 0, 9010221,
false, 0.0, nullptr);
false, 0.0, nullptr);
// clang-format on
particle->SetAntiPDGEncoding(9010221);
@@ -1067,11 +1069,11 @@ void G4ShortLivedConstructor::ConstructMesons()
// eta(1405)
// clang-format off
particle = new G4ExcitedMesons(
"eta(1405)", 1408.8*MeV, 50.1*MeV, 0.0,
"eta(1405)", 1408.68*MeV, 50.3*MeV, 0.0,
0, -1, +1,
0, 0, +1,
"meson", 0, 0, 9020221,
false, 0.0, nullptr);
false, 0.0, nullptr);
// clang-format on
particle->SetAntiPDGEncoding(9020221);
@@ -1093,7 +1095,7 @@ void G4ShortLivedConstructor::ConstructMesons()
0, +1, +1,
0, 0, +1,
"meson", 0, 0, 9030221,
false, 0.0, nullptr);
false, 0.0, nullptr);
// clang-format on
particle->SetAntiPDGEncoding(9030221);
@@ -1111,11 +1113,11 @@ void G4ShortLivedConstructor::ConstructMesons()
// f0(1710)
// clang-format off
particle = new G4ExcitedMesons(
"f0(1710)", 1733.0*MeV, 150.0*MeV, 0.0,
"f0(1710)", 1732.91*MeV, 150.4*MeV, 0.0,
0, +1, +1,
0, 0, +1,
"meson", 0, 0, 10331,
false, 0.0, nullptr);
false, 0.0, nullptr);
// clang-format on
particle->SetAntiPDGEncoding(10331);
@@ -1146,11 +1148,11 @@ void G4ShortLivedConstructor::ConstructMesons()
// k_star+
// clang-format off
particle = new G4ExcitedMesons(
"k_star+", 891.67*MeV, 51.4*MeV, +1.0*eplus,
2, -1, 0,
1, +1, 0,
"meson", 0, 0, 323,
false, 0.0, nullptr);
"k_star+", 891.67*MeV, 51.4*MeV, +1.0*eplus,
2, -1, 0,
1, +1, 0,
"meson", 0, 0, 323,
false, 0.0, nullptr);
// clang-format on
// set sub type
@@ -1172,11 +1174,11 @@ void G4ShortLivedConstructor::ConstructMesons()
// k_star0
// clang-format off
particle = new G4ExcitedMesons(
"k_star0", 895.55*MeV, 47.3*MeV, 0.0*eplus,
2, -1, 0,
1, -1, 0,
"meson", 0, 0, 313,
false, 0.0, nullptr);
"k_star0", 895.55*MeV, 47.3*MeV, 0.0*eplus,
2, -1, 0,
1, -1, 0,
"meson", 0, 0, 313,
false, 0.0, nullptr);
// clang-format on
// set sub type
@@ -1198,11 +1200,11 @@ void G4ShortLivedConstructor::ConstructMesons()
// k_star-
// clang-format off
particle = new G4ExcitedMesons(
"k_star-", 891.67*MeV, 51.4*MeV, -1.0*eplus,
2, -1, 0,
1, +1, 0,
"meson", 0, 0, -323,
false, 0.0, nullptr);
"k_star-", 891.67*MeV, 51.4*MeV, -1.0*eplus,
2, -1, 0,
1, +1, 0,
"meson", 0, 0, -323,
false, 0.0, nullptr);
// clang-format on
// set sub type
@@ -1228,7 +1230,7 @@ void G4ShortLivedConstructor::ConstructMesons()
2, -1, 0,
1, -1, 0,
"meson", 0, 0, -313,
false, 0.0, nullptr);
false, 0.0, nullptr);
// clang-format on
// set sub type