source: trunk/source/processes/hadronic/models/de_excitation/photon_evaporation/include/G4ContinuumGammaTransition.hh @ 819

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

import all except CVS

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// -------------------------------------------------------------------
28//      GEANT 4 class file
29//
30//      CERN, Geneva, Switzerland
31//
32//      File name:     G4ContinuumGammaTransition
33//
34//      Authors:       Carlo Dallapiccola (dallapiccola@umdhep.umd.edu)
35//                     Maria Grazia Pia (pia@genova.infn.it)
36//
37//      Creation date: 23 October 1998
38//
39//      Modifications:
40//     
41//        15 April 1999, Alessandro Brunengo (Alessandro.Brunengo@ge.infn.it)
42//              Added creation time evaluation for products of evaporation
43//        02 May 2003,   Vladimir Ivanchenko change interface to G4NuclearlevelManager
44//     
45// -------------------------------------------------------------------
46//
47//  Header file for G4ContinuumGammaTransition
48//
49
50#ifndef G4ContinuumGammaTransition_hh
51#define G4ContinuumGammaTransition_hh
52
53#include "globals.hh"
54#include "G4VGammaTransition.hh"
55#include "G4NuclearLevelManager.hh"
56#include "G4VLevelDensityParameter.hh"
57
58class G4ContinuumGammaTransition : public G4VGammaTransition
59{
60public:
61
62  // Constructor
63  G4ContinuumGammaTransition(const G4NuclearLevelManager* levelManager,
64                             G4int Z, G4int A, G4double excitation,
65                             G4int verbose);
66
67  // Destructor
68  ~G4ContinuumGammaTransition();
69
70  // Functions
71
72//--  virtual G4double GammaEnergy();
73//--  virtual G4double GetEnergyTo() const;
74  virtual void SetEnergyFrom(const G4double energy);
75  virtual G4double GetGammaEnergy();
76  virtual G4double GetGammaCreationTime();
77  virtual void SelectGamma();
78
79private:
80
81  G4double E1Pdf(G4double energy);
82  G4double GammaTime();
83
84  G4int _nucleusA;
85  G4int _nucleusZ;
86  G4double _eMin;
87  G4double _eMax;
88  G4double _maxLevelE;
89  G4double _minLevelE;
90  G4double _excitation;
91  G4double _eGamma;
92  const G4NuclearLevelManager* _levelManager;
93  G4double _gammaCreationTime;
94
95};
96
97#endif
Note: See TracBrowser for help on using the repository browser.