| 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: G4VCrossSectionDataSet.cc,v 1.8 2009/01/24 11:54:47 vnivanch Exp $
|
|---|
| 27 | // GEANT4 tag $Name: geant4-09-03-cand-01 $
|
|---|
| 28 | //
|
|---|
| 29 | // -------------------------------------------------------------------
|
|---|
| 30 | //
|
|---|
| 31 | // GEANT4 Class file
|
|---|
| 32 | //
|
|---|
| 33 | //
|
|---|
| 34 | // File name: G4VCrossSectionDataSet
|
|---|
| 35 | //
|
|---|
| 36 | // Author F.W. Jones, TRIUMF, 20-JAN-97
|
|---|
| 37 | //
|
|---|
| 38 | // Modifications:
|
|---|
| 39 | // 23.01.2009 V.Ivanchenko move constructor and destructor to source
|
|---|
| 40 | //
|
|---|
| 41 |
|
|---|
| 42 | #include "G4VCrossSectionDataSet.hh"
|
|---|
| 43 | #include "G4CrossSectionDataSetRegistry.hh"
|
|---|
| 44 |
|
|---|
| 45 | G4VCrossSectionDataSet::G4VCrossSectionDataSet() :
|
|---|
| 46 | verboseLevel(0)
|
|---|
| 47 | {
|
|---|
| 48 | G4CrossSectionDataSetRegistry::Instance()->Register(this);
|
|---|
| 49 | }
|
|---|
| 50 |
|
|---|
| 51 | G4VCrossSectionDataSet::~G4VCrossSectionDataSet()
|
|---|
| 52 | {
|
|---|
| 53 | G4CrossSectionDataSetRegistry::Instance()->DeRegister(this);
|
|---|
| 54 | }
|
|---|
| 55 |
|
|---|
| 56 | // Override this method to test for particle and isotope applicability
|
|---|
| 57 |
|
|---|
| 58 | G4bool
|
|---|
| 59 | G4VCrossSectionDataSet::IsZAApplicable(const G4DynamicParticle*,
|
|---|
| 60 | G4double /*ZZ*/, G4double /*AA*/)
|
|---|
| 61 | {
|
|---|
| 62 | return true;
|
|---|
| 63 | }
|
|---|
| 64 |
|
|---|
| 65 |
|
|---|
| 66 | G4double
|
|---|
| 67 | G4VCrossSectionDataSet::GetIsoCrossSection(const G4DynamicParticle* aParticle,
|
|---|
| 68 | const G4Isotope* anIsotope,
|
|---|
| 69 | G4double aTemperature)
|
|---|
| 70 | {
|
|---|
| 71 | G4double ZZ = anIsotope->GetZ();
|
|---|
| 72 | G4double AA = anIsotope->GetN();
|
|---|
| 73 | return GetIsoZACrossSection(aParticle, ZZ, AA, aTemperature);
|
|---|
| 74 | }
|
|---|
| 75 |
|
|---|
| 76 | // Override this method to get real isotopic cross sections
|
|---|
| 77 |
|
|---|
| 78 | G4double
|
|---|
| 79 | G4VCrossSectionDataSet::GetIsoZACrossSection(const G4DynamicParticle*,
|
|---|
| 80 | G4double /*ZZ*/, G4double AA,
|
|---|
| 81 | G4double /*aTemperature*/)
|
|---|
| 82 | {
|
|---|
| 83 | return 62*std::pow(AA, 2./3.)*millibarn;
|
|---|
| 84 | }
|
|---|