source: trunk/source/processes/electromagnetic/lowenergy/include/G4CrossSectionChargeTransferCH.hh@ 1141

Last change on this file since 1141 was 1055, checked in by garnier, 17 years ago

maj sur la beta de geant 4.9.3

  • Property svn:executable set to *
File size: 3.0 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//
27// $Id: G4CrossSectionChargeTransferCH.hh,v 1.3 2008/03/25 16:00:20 pia Exp $
28// GEANT4 tag $Name: geant4-09-03-beta-cand-00 $
29//
30// Contact Author: Maria Grazia Pia (Maria.Grazia.Pia@cern.ch)
31//
32// History:
33// -----------
34// Date Name Modification
35// 28 Dec 2007 M.G. Pia Created
36//
37// -------------------------------------------------------------------
38
39// Class description:
40
41// Total cross section for charge transfer in hydrocarbons
42// Reference: K. Janev, J. G. Wang and T. Kato, NIFS-DATA (2001)
43// http://www-cfadc.phy.ornl.gov/astro/ps/data/
44// http://www-pub.iaea.org/MTCD/publications/PDF/APID-VOL10.pdf
45// Further documentation available from http://www.ge.infn.it/geant4/
46
47// -------------------------------------------------------------------
48
49#ifndef G4CROSSSECTIONCHARGETRANSFERCH_HH
50#define G4CROSSSECTIONCHARGETRANSFERCH_HH 1
51
52#include "globals.hh"
53#include <vector>
54#include <map>
55
56class G4Track;
57
58class G4CrossSectionChargeTransferCH
59{
60public:
61
62 G4CrossSectionChargeTransferCH();
63
64 virtual ~G4CrossSectionChargeTransferCH();
65
66 G4double CrossSection(const G4Track&);
67
68 // Copy constructor and assignment operator to be added here
69
70private:
71
72 G4String name;
73 G4double lowEnergyLimit;
74 G4double highEnergyLimit;
75
76 std::map<G4String,std::vector<G4double>,std::less<G4String> > crossMap;
77
78};
79
80#endif
Note: See TracBrowser for help on using the repository browser.