81 lines
3.7 KiB
C++
81 lines
3.7 KiB
C++
//
|
|
// ********************************************************************
|
|
// * 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. *
|
|
// ********************************************************************
|
|
//
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
// //
|
|
// File: G4BetaMinusDecay.hh //
|
|
// Author: D.H. Wright (SLAC) //
|
|
// Date: 25 October 2014 //
|
|
// Description: performs beta- decay of radioactive nuclei, and returns //
|
|
// daughter particles in rest frame of parent nucleus //
|
|
// Modifications: //
|
|
// 23.08.2023 V.Ivanchenko make it thread safe using static utility //
|
|
// G4BetaSpectrumSampler //
|
|
// //
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef G4BetaMinusDecay_h
|
|
#define G4BetaMinusDecay_h 1
|
|
|
|
#include "G4NuclearDecay.hh"
|
|
#include "G4BetaDecayType.hh"
|
|
|
|
|
|
class G4BetaMinusDecay : public G4NuclearDecay
|
|
{
|
|
public:
|
|
G4BetaMinusDecay(const G4ParticleDefinition* theParentNucleus,
|
|
const G4double& theBR, const G4double& endpointE,
|
|
const G4double& ex, const G4Ions::G4FloatLevelBase& flb,
|
|
const G4BetaDecayType& type);
|
|
|
|
~G4BetaMinusDecay() override = default;
|
|
|
|
G4DecayProducts* DecayIt(G4double) override;
|
|
|
|
void DumpNuclearInfo() override;
|
|
|
|
private:
|
|
|
|
void SetUpBetaSpectrumSampler(const G4int& parentZ, const G4int& parentA,
|
|
const G4BetaDecayType& type);
|
|
|
|
const G4double maxEnergy; // in eMass units
|
|
const G4double estep; // in eMass units
|
|
G4double parentMass;
|
|
G4double resMass;
|
|
|
|
const G4ParticleDefinition* fPrimaryIon;
|
|
const G4ParticleDefinition* fResIon;
|
|
const G4ParticleDefinition* fLepton;
|
|
const G4ParticleDefinition* fNeutrino;
|
|
|
|
static const G4int npti{101};
|
|
G4double cdf[npti];
|
|
};
|
|
|
|
#endif
|
|
|