source: trunk/source/processes/hadronic/models/pre_equilibrium/exciton_model/include/G4PreCompoundProton.hh @ 978

Last change on this file since 978 was 962, checked in by garnier, 15 years ago

update processes

File size: 3.3 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//J. M. Quesada (July 08)
28
29#ifndef G4PreCompoundProton_h
30#define G4PreCompoundProton_h 1
31
32#include "G4PreCompoundNucleon.hh"
33#include "G4ReactionProduct.hh"
34#include "G4Proton.hh"
35#include "G4PreCompoundParameters.hh"
36#include "Randomize.hh"
37#include "G4ProtonCoulombBarrier.hh"
38
39class G4PreCompoundProton : public G4PreCompoundNucleon
40{
41public:
42  // default constructor
43  G4PreCompoundProton():G4PreCompoundNucleon(1,1,&theProtonCoulombBarrier,"Proton") {}
44
45  // copy constructor
46  G4PreCompoundProton(const G4PreCompoundProton &right): G4PreCompoundNucleon(right) {}
47
48  // destructor
49  ~G4PreCompoundProton() {};
50
51  // operators 
52  const G4PreCompoundProton & operator=(const G4PreCompoundProton &right) {
53    if (&right != this) this->G4PreCompoundNucleon::operator=(right);
54    return *this;
55  };
56
57  G4bool operator==(const G4PreCompoundProton &right) const
58  { return G4PreCompoundNucleon::operator==(right);}
59
60 
61  G4bool operator!=(const G4PreCompoundProton &right) const
62  { return G4PreCompoundNucleon::operator!=(right);}
63
64
65  G4ReactionProduct * GetReactionProduct() const;
66 
67 
68private:
69
70//JMQ (Sep. 07) combinatorial factor Rj
71  virtual G4double GetRj(const G4int NumberParticles, const G4int NumberCharged);
72
73  virtual G4double CrossSection(const  G4double K) ; 
74
75
76  G4double GetOpt0(const G4double K);
77  G4double GetOpt1(const G4double K);
78  G4double GetOpt2(const G4double K);
79  G4double GetOpt3(const G4double K);
80
81  G4double GetAlpha();
82 
83  G4double GetBeta();
84
85//data members
86
87      G4ProtonCoulombBarrier theProtonCoulombBarrier;
88       G4double ResidualA;
89      G4double ResidualZ; 
90      G4double theA;
91      G4double theZ;
92      G4double ResidualAthrd;
93      G4double FragmentA;
94      G4double FragmentAthrd;
95
96
97 
98};
99#endif
100 
Note: See TracBrowser for help on using the repository browser.