117 lines
4.8 KiB
C++
117 lines
4.8 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. *
|
|
// ********************************************************************
|
|
//
|
|
#ifndef G4RadioactiveDecayRatesToDaughter_h
|
|
#define G4RadioactiveDecayRatesToDaughter_h 1
|
|
// %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
//
|
|
// MODULE: RadioactiveDecayRate.hh
|
|
// Renamed G4RadioactiveDecayRatesToDaughter.hh (D.H. Wright 5 October 2017)
|
|
// Version: 0.b.4
|
|
// Date: 14/04/00
|
|
// Author: F Lei & P R Truscott
|
|
// Organisation: DERA UK
|
|
// Customer: ESA/ESTEC, NOORDWIJK
|
|
// Contract: 12115/96/JG/NL Work Order No. 3
|
|
//
|
|
// %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
//
|
|
// CHANGE HISTORY
|
|
// --------------
|
|
//
|
|
// 29 February 2000, P R Truscott, DERA UK
|
|
// 0.b.3 release.
|
|
//
|
|
// 13 April 2000, F Lei, DERA UK
|
|
// 0.b.4 release. No change to this file
|
|
//
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
// //
|
|
// This class contains the Z, A, E and generation number in a decay chain //
|
|
// of a given daughter nucleus. Decay rate coefficients and decay times of //
|
|
// all ancestor nuclides in decay chains which lead to this daughter are //
|
|
// also kept in this class. //
|
|
// //
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
#include "G4ios.hh"
|
|
#include "globals.hh"
|
|
|
|
#include <vector>
|
|
|
|
class G4RadioactiveDecayRatesToDaughter
|
|
{
|
|
public:
|
|
|
|
G4RadioactiveDecayRatesToDaughter();
|
|
virtual ~G4RadioactiveDecayRatesToDaughter();
|
|
|
|
G4RadioactiveDecayRatesToDaughter(const G4RadioactiveDecayRatesToDaughter&);
|
|
G4RadioactiveDecayRatesToDaughter& operator=(const G4RadioactiveDecayRatesToDaughter&);
|
|
|
|
G4bool operator==(const G4RadioactiveDecayRatesToDaughter& right) const {return (this == &right);}
|
|
G4bool operator!=(const G4RadioactiveDecayRatesToDaughter& right) const {return (this != &right);}
|
|
|
|
public:
|
|
|
|
inline G4int GetZ() const {return Z;}
|
|
inline G4int GetA() const {return A;}
|
|
inline G4double GetE() const {return E;}
|
|
inline G4int GetGeneration() const {return generation;}
|
|
inline std::vector<G4double> GetDecayRateC() const {return decayRateC;}
|
|
inline std::vector<G4double> GetTaos() const {return taos;}
|
|
|
|
inline void SetZ(G4int value) {Z = value;}
|
|
inline void SetA(G4int value) {A = value;}
|
|
inline void SetE(G4double value) {E = value;}
|
|
inline void SetGeneration(G4int value) {generation = value;}
|
|
inline void SetDecayRateC(std::vector<G4double> value) {decayRateC = std::move(value);}
|
|
inline void SetTaos(std::vector<G4double> value) {taos = std::move(value);}
|
|
|
|
inline void SetVerboseLevel(G4int value) {verboseLevel = value;}
|
|
inline G4int GetVerboseLevel() const {return verboseLevel;}
|
|
void DumpInfo();
|
|
|
|
protected:
|
|
|
|
G4int Z;
|
|
G4int A;
|
|
G4double E;
|
|
G4int generation;
|
|
std::vector<G4double> decayRateC;
|
|
std::vector<G4double> taos;
|
|
|
|
private:
|
|
|
|
G4int verboseLevel;
|
|
// control flag for output message
|
|
// G4int verboseLevel;
|
|
// 0: Silent
|
|
// 1: Warning message
|
|
// 2: More
|
|
|
|
};
|
|
#endif
|