source: trunk/source/processes/hadronic/models/de_excitation/photon_evaporation/include/G4DiscreteGammaTransition.hh @ 1340

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

update ti head

File size: 4.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// $Id: G4DiscreteGammaTransition.hh,v 1.5 2010/10/07 12:31:00 mkelsey Exp $
27// GEANT4 tag $Name: geant4-09-03-ref-09 $
28//
29// -------------------------------------------------------------------
30//      GEANT 4 class file
31//
32//      CERN, Geneva, Switzerland
33//
34//      File name:     G4DiscreteGammaTransition
35//
36//      Author:        Maria Grazia Pia   (pia@genova.infn.it)
37//
38//      Creation date: 23 October 1998
39//
40//      Modifications:
41//
42//        8 March 2002,  Fan Lei (flei@space.qinetiq.com)
43//              added
44//              1) SetRDM () to switch on/off IC process
45//              2) GetOrbitNumber () to return the CE oribit number
46//              3) GetBondEnergy() for the converted e-
47//              4) IsaGamma() to separate CE from gamma
48//
49//        21 Nov. 2001, Fan Lei (flei@space.qinetiq.com)
50//              i) added G4int _nucleusZ initialise it through the constructor
51//              ii) modified SelectGamma() to allow the generation of conversion electrons     
52//              iii) added #include G4AtomicShells.hh
53//     
54//        15 April 1999, Alessandro Brunengo (Alessandro.Brunengo@ge.infn.it)
55//              Added creation time evaluation for products of evaporation
56//
57//     
58//        19 April 2010, J. M. Quesada.
59//              Corrections added for taking into account mismatch between tabulated
60//              gamma energies and level energy differences (fake photons eliminated)
61//   
62//        6 October 2010, M. Kelsey
63//              Store NuclearLevel as const-reference, not as copied value.
64// -------------------------------------------------------------------
65
66#ifndef G4DiscreteGammaTransition_hh
67#define G4DiscreteGammaTransition_hh
68
69#include "globals.hh"
70#include "G4VGammaTransition.hh"
71
72class G4NuclearLevel;
73//JMQ 180410
74class G4NuclearLevelManager;
75
76
77class G4DiscreteGammaTransition : public G4VGammaTransition
78{
79public:
80
81  // Constructor
82  G4DiscreteGammaTransition(const G4NuclearLevel& level);
83//JMQ 180410
84//  G4DiscreteGammaTransition(const G4NuclearLevel& level, G4int Z);
85  G4DiscreteGammaTransition(const G4NuclearLevel& level, G4int Z, G4int A);
86
87  // Destructor
88  ~G4DiscreteGammaTransition();
89
90  // Functions
91
92public:
93
94  virtual void SetEnergyFrom(const G4double energy);
95  virtual G4double GetGammaEnergy();
96  virtual G4double GetGammaCreationTime();
97  virtual void SelectGamma();
98
99  void SetICM(G4bool ic) { _icm = ic;};
100  G4double GetBondEnergy () {return _bondE;};
101  G4int GetOrbitNumber () {return _orbitE;};
102  G4bool IsAGamma() {return _aGamma;};
103 
104private:
105 
106  G4int _nucleusZ;
107  G4int _orbitE;
108  G4double _bondE;
109  G4bool _aGamma;
110  G4bool _icm;
111
112  G4double _gammaEnergy;
113  const G4NuclearLevel& _level;     
114  G4double _excitation;
115  G4double _gammaCreationTime;
116  //JMQ 180410
117  G4int _A;
118  G4int _Z;
119  G4NuclearLevelManager * _levelManager;
120  //JMQ 190410
121  G4double _tolerance;
122};
123
124
125#endif
126
Note: See TracBrowser for help on using the repository browser.