| 1 | //
|
|---|
| 2 | // ********************************************************************
|
|---|
| 3 | // * License and Disclaimer *
|
|---|
| 4 | // * *
|
|---|
| 5 | // * The Geant4 software is copyright of the Copyright Holders of *
|
|---|
| 6 | // * the Geant4 Collaboration. It is provided under the terms and *
|
|---|
| 7 | // * conditions of the Geant4 Software License, included in the file *
|
|---|
| 8 | // * LICENSE and available at http://cern.ch/geant4/license . These *
|
|---|
| 9 | // * include a list of copyright holders. *
|
|---|
| 10 | // * *
|
|---|
| 11 | // * Neither the authors of this software system, nor their employing *
|
|---|
| 12 | // * institutes,nor the agencies providing financial support for this *
|
|---|
| 13 | // * work make any representation or warranty, express or implied, *
|
|---|
| 14 | // * regarding this software system or assume any liability for its *
|
|---|
| 15 | // * use. Please see the license in the file LICENSE and URL above *
|
|---|
| 16 | // * for the full disclaimer and the limitation of liability. *
|
|---|
| 17 | // * *
|
|---|
| 18 | // * This code implementation is the result of the scientific and *
|
|---|
| 19 | // * technical work of the GEANT4 collaboration. *
|
|---|
| 20 | // * By using, copying, modifying or distributing the software (or *
|
|---|
| 21 | // * any work based on the software) you agree to acknowledge its *
|
|---|
| 22 | // * use in resulting scientific publications, and indicate your *
|
|---|
| 23 | // * acceptance of all terms of the Geant4 Software license. *
|
|---|
| 24 | // ********************************************************************
|
|---|
| 25 | //
|
|---|
| 26 | // $Id: G4IonProtonCrossSection.hh,v 1.12 2010/10/15 21:05:10 dennis Exp $
|
|---|
| 27 | // GEANT4 tag $Name: hadr-cross-V09-03-12 $
|
|---|
| 28 | //
|
|---|
| 29 | // -------------------------------------------------------------------
|
|---|
| 30 | //
|
|---|
| 31 | // GEANT4 Class header file
|
|---|
| 32 | //
|
|---|
| 33 | // File name: G4IonProtonCrossSection
|
|---|
| 34 | //
|
|---|
| 35 | //
|
|---|
| 36 | // Cross-sections for ion proton scattering up to 20 GeV, getting the low
|
|---|
| 37 | // energy threshold behaviour right.
|
|---|
| 38 | // H.P. Wellisch (TRIUMF), D. Axen (British Columbia U.). 1996.
|
|---|
| 39 | // Published in Phys.Rev.C54:1329-1332,1996
|
|---|
| 40 | //
|
|---|
| 41 | // Original by H.P.Wellisch 28 June 2001
|
|---|
| 42 | //
|
|---|
| 43 | // Modifications:
|
|---|
| 44 | // 30-07-2010 V.Ivanchenko move virtual methods to source,
|
|---|
| 45 | // add constructor and destructor,
|
|---|
| 46 | // make G4ProtonInelasticCrossSection class member,
|
|---|
| 47 | // fix bug in kinematics
|
|---|
| 48 | //
|
|---|
| 49 |
|
|---|
| 50 | #ifndef G4IonProtonCrossSection_h
|
|---|
| 51 | #define G4IonProtonCrossSection_h 1
|
|---|
| 52 |
|
|---|
| 53 | #include "G4VCrossSectionDataSet.hh"
|
|---|
| 54 | #include "globals.hh"
|
|---|
| 55 |
|
|---|
| 56 | class G4ProtonInelasticCrossSection;
|
|---|
| 57 |
|
|---|
| 58 | class G4IonProtonCrossSection : public G4VCrossSectionDataSet
|
|---|
| 59 | {
|
|---|
| 60 | public:
|
|---|
| 61 |
|
|---|
| 62 | G4IonProtonCrossSection();
|
|---|
| 63 |
|
|---|
| 64 | virtual ~G4IonProtonCrossSection();
|
|---|
| 65 |
|
|---|
| 66 | virtual
|
|---|
| 67 | G4bool IsApplicable(const G4DynamicParticle* aPart, const G4Element* anEle);
|
|---|
| 68 |
|
|---|
| 69 | virtual
|
|---|
| 70 | G4bool IsIsoApplicable(const G4DynamicParticle* aPart,
|
|---|
| 71 | G4int Z, G4int A);
|
|---|
| 72 |
|
|---|
| 73 | virtual
|
|---|
| 74 | G4double GetCrossSection(const G4DynamicParticle* aPart,
|
|---|
| 75 | const G4Element*, G4double);
|
|---|
| 76 |
|
|---|
| 77 | virtual
|
|---|
| 78 | G4double GetZandACrossSection(const G4DynamicParticle* aPart,
|
|---|
| 79 | G4int Z=1, G4int A=1, G4double T=0.);
|
|---|
| 80 |
|
|---|
| 81 | virtual void BuildPhysicsTable(const G4ParticleDefinition&);
|
|---|
| 82 |
|
|---|
| 83 | virtual void DumpPhysicsTable(const G4ParticleDefinition&);
|
|---|
| 84 |
|
|---|
| 85 | private: // Without Description
|
|---|
| 86 |
|
|---|
| 87 | G4IonProtonCrossSection & operator=(const G4IonProtonCrossSection &right);
|
|---|
| 88 | G4IonProtonCrossSection(const G4IonProtonCrossSection&);
|
|---|
| 89 |
|
|---|
| 90 | G4ProtonInelasticCrossSection* theForward;
|
|---|
| 91 |
|
|---|
| 92 | };
|
|---|
| 93 |
|
|---|
| 94 | #endif
|
|---|