source: trunk/source/processes/hadronic/models/cascade/cascade/include/G4EquilibriumEvaporator.hh @ 1315

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

update geant4-09-04-beta-cand-01 interfaces-V09-03-09 vis-V09-03-08

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// $Id: G4EquilibriumEvaporator.hh,v 1.11 2010/05/21 17:56:34 mkelsey Exp $
26// Geant4 tag: $Name: geant4-09-04-beta-cand-01 $
27//
28// 20100413  M. Kelsey -- Pass G4CollisionOutput by ref to ::collide()
29// 20100517  M. Kelsey -- Inherit from common base class, make other colliders
30//              simple data members.  Rename timeToBigBang() to override
31//              base explosion().
32
33#ifndef G4EQUILIBRIUM_EVAPORATOR_HH
34#define G4EQUILIBRIUM_EVAPORATOR_HH
35
36#include "G4VCascadeCollider.hh"
37
38class G4CollisionOutput;
39class G4Fissioner;
40class G4BigBanger;
41class G4InuclParticle;
42
43class G4EquilibriumEvaporator : public G4VCascadeCollider {
44public:
45  G4EquilibriumEvaporator();
46  virtual ~G4EquilibriumEvaporator();
47
48  void collide(G4InuclParticle* bullet, G4InuclParticle* target,
49               G4CollisionOutput& output);
50
51private: 
52  // Replace base class verision
53  virtual G4bool explosion(G4InuclNuclei*) const { return false; }
54  virtual G4bool explosion(G4double a, 
55                           G4double z, 
56                           G4double e) const;
57
58  G4bool goodRemnant(G4double a, 
59                     G4double z) const; 
60
61  G4double getE0(G4double A) const; 
62
63  G4double getPARLEVDEN(G4double A, 
64                        G4double Z) const; 
65
66  G4double getQF(G4double x, 
67                 G4double x2, 
68                 G4double a, 
69                 G4double z, 
70                 G4double e) const;
71
72  G4double getAF(G4double x, 
73                 G4double a, 
74                 G4double z, 
75                 G4double e) const; 
76
77  G4Fissioner* theFissioner;
78  G4BigBanger* theBigBanger;
79};       
80
81#endif /* G4EQUILIBRIUM_EVAPORATOR_HH */
82
83
Note: See TracBrowser for help on using the repository browser.