113 lines
4.9 KiB
C++
113 lines
4.9 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. *
|
|
// ********************************************************************
|
|
//
|
|
//
|
|
// Hadronic Process: Very Low Energy Neutron X-Sections
|
|
// original by H.P. Wellisch, TRIUMF, 14-Feb-97
|
|
// Builds and has the Cross-section data for one material.
|
|
//
|
|
// 080520 Delete unnecessary dependencies by T. Koi
|
|
|
|
// P. Arce, June-2014 Conversion neutron_hp to particle_hp
|
|
// V. Ivanchenko July-2023 converted back capture
|
|
//
|
|
#ifndef G4ParticleHPElementData_h
|
|
#define G4ParticleHPElementData_h 1
|
|
|
|
#include "G4Material.hh"
|
|
#include "G4Neutron.hh"
|
|
#include "G4Nucleus.hh"
|
|
#include "G4NeutronHPCaptureData.hh"
|
|
#include "G4ParticleHPElasticData.hh"
|
|
#include "G4ParticleHPFissionData.hh"
|
|
#include "G4ParticleHPInelasticData.hh"
|
|
#include "G4ParticleHPIsoData.hh"
|
|
#include "G4ParticleHPVector.hh"
|
|
#include "G4ReactionProduct.hh"
|
|
#include "globals.hh"
|
|
|
|
class G4ParticleHPElementData
|
|
{
|
|
public:
|
|
G4ParticleHPElementData();
|
|
|
|
~G4ParticleHPElementData();
|
|
|
|
void Init(G4Element* theElement, G4ParticleDefinition* projectile,
|
|
const char* dataDirVariable);
|
|
|
|
void UpdateData(G4int A, G4int Z, G4int index, G4double abundance,
|
|
G4ParticleDefinition* projectile,
|
|
const char* dataDirVariable)
|
|
{
|
|
UpdateData(A, Z, 0, index, abundance, projectile, dataDirVariable);
|
|
};
|
|
|
|
void UpdateData(G4int A, G4int Z, G4int M, G4int index, G4double abundance,
|
|
G4ParticleDefinition* projectile,
|
|
const char* dataDirVariable);
|
|
|
|
void Harmonise(G4ParticleHPVector*& theStore, G4ParticleHPVector* theNew);
|
|
|
|
inline G4ParticleHPVector* GetData(G4ParticleHPFissionData*) { return theFissionData; }
|
|
inline G4ParticleHPVector* GetData(G4NeutronHPCaptureData*) { return theCaptureData; }
|
|
inline G4ParticleHPVector* GetData(G4ParticleHPElasticData*) { return theElasticData; }
|
|
inline G4ParticleHPVector* GetData(G4ParticleHPInelasticData*) { return theInelasticData; }
|
|
|
|
G4ParticleHPVector* MakePhysicsVector(G4Element* theElement,
|
|
G4ParticleDefinition* projectile,
|
|
G4ParticleHPFissionData* theSet,
|
|
char* dataDirVariable);
|
|
|
|
G4ParticleHPVector* MakePhysicsVector(G4Element* theElement,
|
|
G4ParticleDefinition* projectile,
|
|
G4NeutronHPCaptureData* theSet,
|
|
char* dataDirVariable);
|
|
|
|
G4ParticleHPVector* MakePhysicsVector(G4Element* theElement,
|
|
G4ParticleDefinition* projectile,
|
|
G4ParticleHPElasticData* theSet,
|
|
char* dataDirVariable);
|
|
|
|
G4ParticleHPVector* MakePhysicsVector(G4Element* theElement,
|
|
G4ParticleDefinition* projectile,
|
|
G4ParticleHPInelasticData* theSet,
|
|
char* dataDirVariable);
|
|
|
|
private:
|
|
G4ParticleHPVector* theFissionData;
|
|
G4ParticleHPVector* theCaptureData;
|
|
G4ParticleHPVector* theElasticData;
|
|
G4ParticleHPVector* theInelasticData;
|
|
G4double precision;
|
|
|
|
G4ParticleHPVector* theBuffer;
|
|
G4ParticleHPIsoData* theIsotopeWiseData;
|
|
|
|
G4String filename;
|
|
};
|
|
|
|
#endif
|