source: trunk/source/processes/hadronic/models/de_excitation/photon_evaporation/include/G4DiscreteGammaDeexcitation.hh @ 1347

Last change on this file since 1347 was 1347, checked in by garnier, 13 years ago

geant4 tag 9.4

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// $Id: G4DiscreteGammaDeexcitation.hh,v 1.5 2010/11/17 19:17:17 vnivanch Exp $
27// GEANT4 tag $Name: geant4-09-04-ref-00 $
28//
29// -------------------------------------------------------------------
30//      GEANT 4 class file
31//
32//      CERN, Geneva, Switzerland
33//
34//      File name:     G4DiscreteGammaDeexcitation
35//
36//      Author:        Maria Grazia Pia (pia@genova.infn.it)
37//
38//      Creation date: 23 October 1998
39//
40//      Modifications:
41//
42//      8 March 2001, Fan Lei (flei@space.qinetiq.com)
43//      added the following as part if the IC implementation
44//        void SetICM(G4bool hl) { _icm = hl; };
45//        void SetRDM(G4bool hl) { _rdm = hl; };
46//        void SetHL(G4double hl) { _max_hl = hl; };
47//       private:
48//        G4double _max_hl;
49//        G4bool _icm;
50//        G4bool _rdm;
51//
52//
53// -------------------------------------------------------------------
54//
55
56#ifndef G4DiscreteGammaDeexcitation_hh
57#define G4DiscreteGammaDeexcitation_hh
58
59#include "G4VGammaDeexcitation.hh"
60
61#include "globals.hh"
62
63#include "G4DiscreteGammaTransition.hh"
64#include "G4Fragment.hh"
65
66
67class G4NuclearLevelManager;
68
69class G4DiscreteGammaDeexcitation : public G4VGammaDeexcitation {
70public:
71
72  // Constructor
73  G4DiscreteGammaDeexcitation();
74
75  // Destructor
76  virtual ~G4DiscreteGammaDeexcitation();
77
78  // Functions
79
80public:
81
82  virtual G4VGammaTransition * CreateTransition();
83
84  virtual G4bool CanDoTransition();
85
86  inline void SetICM(G4bool hl) { _icm = hl; };
87
88  inline void SetRDM(G4bool hl) { _rdm = hl; };
89 
90  inline void SetHL(G4double hl) { _max_hl = hl; };
91
92private:
93
94  G4int _nucleusZ;
95  G4int _nucleusA;
96  G4double _tolerance;
97  G4double _max_hl;
98  G4bool _icm;
99  G4bool _rdm;
100  G4NuclearLevelManager * _levelManager;
101};
102
103
104#endif
105
106
107
Note: See TracBrowser for help on using the repository browser.