source: trunk/source/processes/hadronic/cross_sections/src/G4VCrossSectionDataSet.cc @ 1340

Last change on this file since 1340 was 1340, checked in by garnier, 14 years ago

update ti head

File size: 3.8 KB
Line 
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.9 2010/07/05 13:39:11 vnivanch Exp $
27// GEANT4 tag $Name: hadr-cross-V09-03-12 $
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#include "G4Pow.hh"
45
46G4VCrossSectionDataSet::G4VCrossSectionDataSet(const G4String& nam) :
47  verboseLevel(0),minKinEnergy(0.0),maxKinEnergy(DBL_MAX),name(nam) 
48{
49  G4CrossSectionDataSetRegistry::Instance()->Register(this);
50}
51
52G4VCrossSectionDataSet::~G4VCrossSectionDataSet()
53{
54  G4CrossSectionDataSetRegistry::Instance()->DeRegister(this);
55}
56
57// Override thess methods to test for particle and isotope applicability
58G4bool
59G4VCrossSectionDataSet::IsZAApplicable(const G4DynamicParticle*,
60                                       G4double /*ZZ*/, G4double /*AA*/)
61{
62  return true;
63}
64
65G4bool
66G4VCrossSectionDataSet::IsIsoApplicable(const G4DynamicParticle*,
67                                        G4int /*Z*/, G4int /*A*/)
68{
69  return true;
70}
71
72G4double
73G4VCrossSectionDataSet::GetIsoCrossSection(const G4DynamicParticle* aParticle,
74                                           const G4Isotope* anIsotope,
75                                           G4double aTemperature)
76{
77  G4double ZZ = anIsotope->GetZ();
78  G4double AA = anIsotope->GetN();
79  return GetIsoZACrossSection(aParticle, ZZ, AA, aTemperature);
80}
81
82// Override this method to get real isotopic cross sections
83
84G4double
85G4VCrossSectionDataSet::GetIsoZACrossSection(const G4DynamicParticle*,
86                                             G4double /*ZZ*/, G4double AA,
87                                             G4double /*aTemperature*/)
88{
89  return 62*G4Pow::GetInstance()->A23(AA)*millibarn;
90}
91
92G4double
93G4VCrossSectionDataSet::GetZandACrossSection(const G4DynamicParticle*,
94                                             G4int /*Z*/, G4int N,
95                                             G4double /*aTemperature*/)
96{
97  return 62*G4Pow::GetInstance()->Z23(N)*millibarn;
98}
Note: See TracBrowser for help on using the repository browser.