source: trunk/source/processes/hadronic/models/coherent_elastic/include/G4ChargeExchangeProcess.hh@ 1199

Last change on this file since 1199 was 1196, checked in by garnier, 16 years ago

update CVS release candidate geant4.9.3.01

File size: 4.1 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: G4ChargeExchangeProcess.hh,v 1.3 2008/11/20 12:35:19 vnivanch Exp $
28// GEANT4 tag $Name: geant4-09-03-cand-01 $
29//
30//
31// Geant4 Hadron Elastic Charge Exchange Process -- header file
32//
33// Created 21 April 2006 V.Ivanchenko
34//
35// Modified:
36//
37
38// Class Description
39// Process for hadron nuclear elastic scattering using optimal
40// combination of Geant4 models
41// Class Description - End
42
43#ifndef G4ChargeExchangeProcess_h
44#define G4ChargeExchangeProcess_h 1
45
46#include "globals.hh"
47#include "G4HadronicProcess.hh"
48#include "G4Nucleus.hh"
49
50class G4ParticleDefinition;
51class G4CrossSectionDataStore;
52class G4PhysicsLinearVector;
53
54class G4ChargeExchangeProcess : public G4HadronicProcess
55{
56public:
57
58 G4ChargeExchangeProcess(const G4String& procName = "chargeExchange");
59
60 virtual ~G4ChargeExchangeProcess();
61
62 virtual G4bool IsApplicable(const G4ParticleDefinition& aParticleType);
63
64 virtual void BuildPhysicsTable(const G4ParticleDefinition& aParticleType);
65
66 virtual void DumpPhysicsTable(const G4ParticleDefinition& aParticleType);
67
68 virtual G4double GetMicroscopicCrossSection(const G4DynamicParticle* aParticle,
69 const G4Element* anElement,
70 G4double aTemp);
71
72private:
73
74 const G4ParticleDefinition* theParticle;
75
76 const G4ParticleDefinition* theProton;
77 const G4ParticleDefinition* theNeutron;
78 const G4ParticleDefinition* theAProton;
79 const G4ParticleDefinition* theANeutron;
80 const G4ParticleDefinition* thePiPlus;
81 const G4ParticleDefinition* thePiMinus;
82 const G4ParticleDefinition* thePiZero;
83 const G4ParticleDefinition* theKPlus;
84 const G4ParticleDefinition* theKMinus;
85 const G4ParticleDefinition* theK0S;
86 const G4ParticleDefinition* theK0L;
87 const G4ParticleDefinition* theL;
88 const G4ParticleDefinition* theAntiL;
89 const G4ParticleDefinition* theSPlus;
90 const G4ParticleDefinition* theASPlus;
91 const G4ParticleDefinition* theSMinus;
92 const G4ParticleDefinition* theASMinus;
93 const G4ParticleDefinition* theS0;
94 const G4ParticleDefinition* theAS0;
95 const G4ParticleDefinition* theXiMinus;
96 const G4ParticleDefinition* theXi0;
97 const G4ParticleDefinition* theAXiMinus;
98 const G4ParticleDefinition* theAXi0;
99 const G4ParticleDefinition* theOmega;
100 const G4ParticleDefinition* theAOmega;
101 const G4ParticleDefinition* theD;
102 const G4ParticleDefinition* theT;
103 const G4ParticleDefinition* theA;
104 const G4ParticleDefinition* theHe3;
105
106 G4CrossSectionDataStore* store;
107 G4PhysicsLinearVector* factors;
108
109 G4double thEnergy;
110
111 G4int pPDG;
112 G4bool first;
113};
114
115#endif
Note: See TracBrowser for help on using the repository browser.