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

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

update processes

File size: 3.4 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// by V. Lara
28//
29//J. M. Quesada (July 08)
30
31#ifndef G4PreCompoundTriton_h
32#define G4PreCompoundTriton_h 1
33
34#include "G4PreCompoundIon.hh"
35#include "G4ReactionProduct.hh"
36#include "G4Triton.hh"
37#include "G4TritonCoulombBarrier.hh"
38#include "G4PreCompoundParameters.hh"
39
40
41class G4PreCompoundTriton : public G4PreCompoundIon
42{
43public:
44  // default constructor
45  G4PreCompoundTriton():G4PreCompoundIon(3,1,&theTritonCoulombBarrier,"Triton") {}
46
47  // copy constructor
48  G4PreCompoundTriton(const G4PreCompoundTriton &right): G4PreCompoundIon(right) {}
49
50  // destructor
51  ~G4PreCompoundTriton() {}
52
53  // operators 
54//  const G4PreCompoundTriton & operator=(const G4PreCompoundTriton &right) {
55//    if (&right != this) this->G4PreCompoundIon::operator=(right);
56//    return *this;
57//  }
58
59//  G4bool operator==(const G4PreCompoundTriton &right) const
60//  { return G4PreCompoundIon::operator==(right);}
61
62 
63//  G4bool operator!=(const G4PreCompoundTriton &right) const
64//  { return G4PreCompoundIon::operator!=(right);}
65
66
67  G4ReactionProduct * GetReactionProduct() const;
68 
69
70private:
71
72  virtual G4double GetRj(const G4int NumberParticles, const G4int NumberCharged);
73
74  virtual G4double CrossSection(const  G4double K) ; 
75
76  virtual G4double FactorialFactor(const G4double N, const G4double P);
77
78  virtual G4double CoalescenceFactor(const G4double A);
79
80  G4double GetOpt0(const G4double K);
81  G4double GetOpt12(const G4double K);
82  G4double GetOpt34(const G4double K);
83
84  G4double GetAlpha();
85 
86  G4double GetBeta();
87
88//data members
89
90      G4TritonCoulombBarrier theTritonCoulombBarrier;
91       G4double ResidualA;
92      G4double ResidualZ; 
93      G4double theA;
94      G4double theZ;
95      G4double ResidualAthrd;
96      G4double FragmentA;
97      G4double FragmentAthrd;
98};
99
100#endif
101
102
103
104   
105
Note: See TracBrowser for help on using the repository browser.