155 lines
5.0 KiB
C++
155 lines
5.0 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. *
|
|
// ********************************************************************
|
|
//
|
|
//
|
|
// Calculation of the total, elastic and inelastic cross-sections
|
|
// of hadron (proton, neutron, pi+, pi-, K+, K-, anti_proton, anti_neutron
|
|
// interactions with nuclei based on CHIPS model
|
|
//
|
|
// Created by V. Uzhinsky, 31.05.2011
|
|
// Copied to hadronic/cross_sections by W. Pokorski
|
|
|
|
|
|
#ifndef G4ChipsComponentXS_h
|
|
#define G4ChipsComponentXS_h
|
|
|
|
#include <CLHEP/Units/PhysicalConstants.h> // pi, fermi,..
|
|
|
|
#include "globals.hh"
|
|
#include "G4Proton.hh"
|
|
#include "G4AntiProton.hh"
|
|
#include "G4Nucleus.hh"
|
|
|
|
#include "G4ChipsProtonElasticXS.hh"
|
|
#include "G4ChipsProtonInelasticXS.hh"
|
|
|
|
#include "G4ChipsNeutronElasticXS.hh"
|
|
#include "G4ChipsNeutronInelasticXS.hh"
|
|
|
|
#include "G4ChipsAntiBaryonElasticXS.hh"
|
|
#include "G4ChipsAntiBaryonInelasticXS.hh"
|
|
|
|
#include "G4ChipsPionMinusElasticXS.hh"
|
|
#include "G4ChipsPionMinusInelasticXS.hh"
|
|
|
|
#include "G4ChipsPionPlusElasticXS.hh"
|
|
#include "G4ChipsPionPlusInelasticXS.hh"
|
|
|
|
#include "G4ChipsKaonMinusElasticXS.hh"
|
|
#include "G4ChipsKaonMinusInelasticXS.hh"
|
|
|
|
#include "G4ChipsKaonPlusElasticXS.hh"
|
|
#include "G4ChipsKaonPlusInelasticXS.hh"
|
|
|
|
#include "G4ChipsKaonZeroElasticXS.hh"
|
|
#include "G4ChipsKaonZeroInelasticXS.hh"
|
|
|
|
#include "G4ChipsHyperonElasticXS.hh"
|
|
#include "G4ChipsHyperonInelasticXS.hh"
|
|
|
|
#include "G4VComponentCrossSection.hh"
|
|
|
|
class G4ParticleDefinition;
|
|
|
|
class G4ChipsComponentXS : public G4VComponentCrossSection
|
|
{
|
|
public:
|
|
|
|
G4ChipsComponentXS ();
|
|
virtual ~G4ChipsComponentXS ();
|
|
|
|
virtual
|
|
G4double GetTotalElementCrossSection(const G4ParticleDefinition* aParticle,
|
|
G4double kinEnergy,
|
|
G4int Z, G4double N);
|
|
|
|
virtual
|
|
G4double GetTotalIsotopeCrossSection(const G4ParticleDefinition* aParticle,
|
|
G4double kinEnergy,
|
|
G4int Z, G4int N);
|
|
virtual
|
|
G4double GetInelasticElementCrossSection(const G4ParticleDefinition* aParticle,
|
|
G4double kinEnergy,
|
|
G4int Z, G4double N);
|
|
virtual
|
|
G4double GetInelasticIsotopeCrossSection(const G4ParticleDefinition* aParticle,
|
|
G4double kinEnergy,
|
|
G4int Z, G4int N);
|
|
|
|
virtual
|
|
G4double GetElasticElementCrossSection(const G4ParticleDefinition* aParticle,
|
|
G4double kinEnergy,
|
|
G4int Z, G4double N);
|
|
|
|
virtual
|
|
G4double GetElasticIsotopeCrossSection(const G4ParticleDefinition* aParticle,
|
|
G4double kinEnergy,
|
|
G4int Z, G4int N);
|
|
|
|
virtual
|
|
void BuildPhysicsTable(const G4ParticleDefinition&)
|
|
{}
|
|
|
|
virtual
|
|
void DumpPhysicsTable(const G4ParticleDefinition&)
|
|
{}
|
|
|
|
private:
|
|
G4ChipsComponentXS & operator=(const G4ChipsComponentXS &right);
|
|
G4ChipsComponentXS(const G4ChipsComponentXS&);
|
|
|
|
const G4double fUpperLimit;
|
|
const G4double fLowerLimit;
|
|
|
|
G4ChipsProtonElasticXS* PxsManagerEl;
|
|
G4ChipsProtonInelasticXS* PxsManagerInEl;
|
|
|
|
G4ChipsNeutronElasticXS* NxsManagerEl;
|
|
G4ChipsNeutronInelasticXS* NxsManagerInEl;
|
|
|
|
G4ChipsAntiBaryonElasticXS* PBARxsManagerEl;
|
|
G4ChipsAntiBaryonInelasticXS* PBARxsManagerInEl;
|
|
|
|
G4ChipsPionPlusElasticXS* PIPxsManagerEl;
|
|
G4ChipsPionPlusInelasticXS* PIPxsManagerInEl;
|
|
|
|
G4ChipsPionMinusElasticXS* PIMxsManagerEl;
|
|
G4ChipsPionMinusInelasticXS* PIMxsManagerInEl;
|
|
|
|
G4ChipsKaonPlusElasticXS* KPxsManagerEl;
|
|
G4ChipsKaonPlusInelasticXS* KPxsManagerInEl;
|
|
|
|
G4ChipsKaonMinusElasticXS* KMxsManagerEl;
|
|
G4ChipsKaonMinusInelasticXS* KMxsManagerInEl;
|
|
|
|
G4ChipsKaonZeroElasticXS* KZxsManagerEl;
|
|
G4ChipsKaonZeroInelasticXS* KZxsManagerInEl;
|
|
|
|
G4ChipsHyperonElasticXS* HxsManagerEl;
|
|
G4ChipsHyperonInelasticXS* HxsManagerInEl;
|
|
};
|
|
|
|
#endif
|