Geant4
10.7.0
Toolkit for the simulation of the passage of particles through matter
Loading...
Searching...
No Matches
G4RadioactiveDecaymessenger.hh
Go to the documentation of this file.
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
#ifndef G4RadioactiveDecaymessenger_h
27
#define G4RadioactiveDecaymessenger_h 1
28
// %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
29
//
30
// MODULE: RadioactiveDecaymessenger.hh
31
//
32
// Version: 0.b.4
33
// Date: 14/04/00
34
// Author: F Lei & P R Truscott
35
// Organisation: DERA UK
36
// Customer: ESA/ESTEC, NOORDWIJK
37
// Contract: 12115/96/JG/NL Work Order No. 3
38
//
39
// %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
40
//
41
// CHANGE HISTORY
42
// --------------
43
//
44
// 29 February 2000, P R Truscott, DERA UK
45
// 0.b.3 release.
46
//
47
// 13 April 2000, F Lei, DERA UK
48
// 0.b.4 release. No change to this file
49
//
50
// %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
51
////////////////////////////////////////////////////////////////////////////////
52
//
53
#include "
G4UImessenger.hh
"
54
#include "
G4UIdirectory.hh
"
55
#include "
G4UIcommand.hh
"
56
#include "
G4UIcmdWith3VectorAndUnit.hh
"
57
#include "
G4UIcmdWith3Vector.hh
"
58
#include "
G4UIcmdWithABool.hh
"
59
#include "
G4UIcmdWithAnInteger.hh
"
60
#include "
G4UIcmdWithADoubleAndUnit.hh
"
61
#include "
G4UIcmdWithAString.hh
"
62
#include "
G4UIcmdWithoutParameter.hh
"
63
#include "
globals.hh
"
64
65
#include "
G4RadioactiveDecay.hh
"
66
#include "
G4UIcmdWithNucleusLimits.hh
"
67
68
class
G4RadioactiveDecay
;
69
////////////////////////////////////////////////////////////////////////////////
70
//
71
class
G4RadioactiveDecaymessenger
:
public
G4UImessenger
72
{
73
// class description
74
// The G4RadioactiveDecaymessenger is instantiated by the G4RadioactiveDecay
75
// process and introduces into the UI menu commands to control the running
76
// of G4RadioactiveDecay
77
78
public
:
//with description
79
G4RadioactiveDecaymessenger
(
G4RadioactiveDecay
*
80
theRadioactiveDecayContainer);
81
// Constructor introduces commands into the UI menu to control
82
// G4RadioactiveDecay. theRadioactiveDecayContainer1 is used to identify
83
// to this class (when instatiated) the associated G4RadioactiveDecay
84
// process whose parameters are going to be changed as a result
85
// of the UI commands.
86
~G4RadioactiveDecaymessenger
();
87
// Destructor deletes G4UIdirectory and G4UIcommand objects.
88
//
89
void
SetNewValue
(
G4UIcommand
*command,
G4String
newValues);
90
// Identifies the command which has been invoked by the user, extracts the
91
// parameters associated with that command (held in newValues, and uses
92
// these values with the appropriate member function of G4RadioactiveDecay.
93
//
94
private
:
95
G4RadioactiveDecay
*theRadioactiveDecayContainer;
96
97
G4UIdirectory
*old_grdmDirectory;
// To be removed in G4 11.0
98
G4UIdirectory
*rdmDirectory;
99
G4UIcmdWithNucleusLimits
*old_nucleuslimitsCmd;
// To be removed in G4 11.0
100
G4UIcmdWithNucleusLimits
*nucleuslimitsCmd;
101
G4UIcmdWithAString
*old_sourcetimeprofileCmd;
// To be removed in G4 11.0
102
G4UIcmdWithAString
*sourcetimeprofileCmd;
103
G4UIcmdWithAString
*old_decaybiasprofileCmd;
// To be removed in G4 11.0
104
G4UIcmdWithAString
*decaybiasprofileCmd;
105
G4UIcmdWithABool
*old_analoguemcCmd;
// To be removed in G4 11.0
106
G4UIcmdWithABool
*analoguemcCmd;
107
G4UIcmdWithABool
*old_fbetaCmd;
// To be removed in G4 11.0
108
G4UIcmdWithABool
*fbetaCmd;
109
G4UIcmdWithABool
*old_brbiasCmd;
// To be removed in G4 11.0
110
G4UIcmdWithABool
*brbiasCmd;
111
G4UIcmdWithAnInteger
*old_splitnucleiCmd;
// To be removed in G4 11.0
112
G4UIcmdWithAnInteger
*splitnucleiCmd;
113
G4UIcmdWithAnInteger
*old_verboseCmd;
// To be removed in G4 11.0
114
G4UIcmdWithAnInteger
*verboseCmd;
115
G4UIcmdWithAString
*old_avolumeCmd;
// To be removed in G4 11.0
116
G4UIcmdWithAString
*avolumeCmd;
117
G4UIcmdWithAString
*old_deavolumeCmd;
// To be removed in G4 11.0
118
G4UIcmdWithAString
*deavolumeCmd;
119
G4UIcmdWithoutParameter
*old_allvolumesCmd;
// To be removed in G4 11.0
120
G4UIcmdWithoutParameter
*allvolumesCmd;
121
G4UIcmdWithoutParameter
*old_deallvolumesCmd;
// To be removed in G4 11.0
122
G4UIcmdWithoutParameter
*deallvolumesCmd;
123
G4UIcmdWithABool
*old_icmCmd;
// To be removed in G4 11.0
124
G4UIcmdWithABool
*icmCmd;
125
G4UIcmdWithABool
*old_armCmd;
// To be removed in G4 11.0
126
G4UIcmdWithABool
*armCmd;
127
G4UIcmdWithADoubleAndUnit
*old_hlthCmd;
// To be removed in G4 11.0
128
G4UIcmdWithADoubleAndUnit
*hlthCmd;
129
G4UIcommand
*old_userDecayDataCmd;
// To be removed in G4 11.0
130
G4UIcommand
*userDecayDataCmd;
131
G4UIcommand
*old_userEvaporationDataCmd;
// To be removed in G4 11.0
132
G4UIcommand
*userEvaporationDataCmd;
133
G4UIcmdWith3Vector
*old_colldirCmd;
// To be removed in G4 11.0
134
G4UIcmdWith3Vector
*colldirCmd;
135
G4UIcmdWithADoubleAndUnit
*old_collangleCmd;
// To be removed in G4 11.0
136
G4UIcmdWithADoubleAndUnit
*collangleCmd;
137
138
};
139
140
#endif
141
G4RadioactiveDecay.hh
G4UIcmdWith3VectorAndUnit.hh
G4UIcmdWith3Vector.hh
G4UIcmdWithABool.hh
G4UIcmdWithADoubleAndUnit.hh
G4UIcmdWithAString.hh
G4UIcmdWithAnInteger.hh
G4UIcmdWithNucleusLimits.hh
G4UIcmdWithoutParameter.hh
G4UIcommand.hh
G4UIdirectory.hh
G4UImessenger.hh
G4RadioactiveDecay
Definition:
G4RadioactiveDecay.hh:84
G4RadioactiveDecaymessenger
Definition:
G4RadioactiveDecaymessenger.hh:72
G4RadioactiveDecaymessenger::~G4RadioactiveDecaymessenger
~G4RadioactiveDecaymessenger()
Definition:
G4RadioactiveDecaymessenger.cc:291
G4RadioactiveDecaymessenger::SetNewValue
void SetNewValue(G4UIcommand *command, G4String newValues)
Definition:
G4RadioactiveDecaymessenger.cc:336
G4String
Definition:
G4String.hh:53
G4UIcmdWith3Vector
Definition:
G4UIcmdWith3Vector.hh:43
G4UIcmdWithABool
Definition:
G4UIcmdWithABool.hh:46
G4UIcmdWithADoubleAndUnit
Definition:
G4UIcmdWithADoubleAndUnit.hh:42
G4UIcmdWithAString
Definition:
G4UIcmdWithAString.hh:43
G4UIcmdWithAnInteger
Definition:
G4UIcmdWithAnInteger.hh:42
G4UIcmdWithNucleusLimits
Definition:
G4UIcmdWithNucleusLimits.hh:77
G4UIcmdWithoutParameter
Definition:
G4UIcmdWithoutParameter.hh:42
G4UIcommand
Definition:
G4UIcommand.hh:52
G4UIdirectory
Definition:
G4UIdirectory.hh:42
G4UImessenger
Definition:
G4UImessenger.hh:47
globals.hh
geant4-v10.7.0
source
processes
hadronic
models
radioactive_decay
include
G4RadioactiveDecaymessenger.hh
Generated by
1.9.6