Files
geant4/source/processes/hadronic/cross_sections/include/G4HadronCrossSections.hh
T
2018-12-07 15:15:39 +01:00

141 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. *
// ********************************************************************
//
//
// GEANT4 Hadron physics class -- header file
// F.W. Jones, TRIUMF, 03-DEC-96
//
// This class encapsulates cross section data and interpolations
// from the Geant3/Gheisha routine GHESIG.
// For further comments see G4HadronCrossSections.cc.
//
// Note: this is implemented as a SINGLETON class
//
// 27-MAR-97 FWJ: first version for Alpha release
// 14-APR-97 FWJ: class name changed from G4LCrossSectionData
// to G4HadronicCrossSections
// 14-APR-98 FWJ: rewritten as class G4HadronCrossSections
// and adapted to G4CrossSectionDataSet/DataStore class design.
// 26-JUN-98 FWJ: added elastic/inelastic caching to improve performance.
// 06-NOV-98 FWJ: added first-order correction for low-energy
// inelastic cross sections
//
#ifndef G4HadronCrossSections_h
#define G4HadronCrossSections_h 1
#include "globals.hh"
#include "G4DynamicParticle.hh"
#include "G4ThreadLocalSingleton.hh"
enum { TSIZE=41, NPARTS=35, NELAB=17, NCNLW=15, NFISS=21 };
class G4Pow;
class G4HadronCrossSections
{
friend class G4ThreadLocalSingleton<G4HadronCrossSections>;
public:
static G4HadronCrossSections* Instance();
~G4HadronCrossSections();
G4bool IsApplicable(const G4DynamicParticle* aParticle);
G4double GetElasticCrossSection(const G4DynamicParticle*,
G4int /*ZZ*/, G4int /*AA*/);
G4double GetInelasticCrossSection(const G4DynamicParticle*,
G4int /*ZZ*/, G4int /*AA*/);
G4double GetCaptureCrossSection(const G4DynamicParticle*, G4int /*Z*/);
G4double GetFissionCrossSection(const G4DynamicParticle*, G4int /*ZZ*/,
G4int /*AA*/);
void SetVerboseLevel(G4int value) {verboseLevel = value;}
G4int GetVerboseLevel() {return verboseLevel;}
private:
G4HadronCrossSections();
G4int GetParticleCode(const G4DynamicParticle*);
void CalcScatteringCrossSections(const G4DynamicParticle*,
G4int /*ZZ*/, G4int /*AA*/);
static G4ThreadLocal G4HadronCrossSections* instance;
G4Pow* g4pow;
G4double sigelastic;
G4double siginelastic;
G4ParticleDefinition* prevParticleDefinition;
G4int prevZZ;
G4int prevAA;
G4double prevKineticEnergy;
G4double lastEkx, lastEkxPower;
G4bool correctInelasticNearZero;
G4int verboseLevel;
// The following arrays are declared static to allow the use of initializers.
// They are initialized in G4HadronCrossSections.cc, thus providing some
// data hiding.
static const G4float plab[TSIZE];
static const G4float csel[NPARTS][TSIZE];
static const G4float csin[NPARTS][TSIZE];
static const G4float cspiel[3][TSIZE];
static const G4float cspiin[3][TSIZE];
static const G4float cspnel[3][TSIZE];
static const G4float cspnin[3][TSIZE];
static const G4float elab[NELAB];
static const G4float cnlwat[NCNLW], cnlwel[NCNLW][NELAB], cnlwin[NCNLW][NELAB];
static const G4float cscap[100];
static const G4float ekfiss[NFISS], csfiss[4][NFISS];
static const G4float alpha[NPARTS], alphac[TSIZE];
static const G4float partel[35], partin[35];
static const G4int icorr[35], intrc[35];
static const G4float csa[4];
static const G4int ipart2[7];
};
#endif