Geant4
9.6.p02
Main Page
Related Pages
Modules
Namespaces
Classes
Files
File List
File Members
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Groups
Pages
geant4_9_6_p02
examples
advanced
microbeam
src
MicrobeamPhysicsListMessenger.cc
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
// $Id$
27
//
28
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
29
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
30
31
#include "
MicrobeamPhysicsListMessenger.hh
"
32
#include "
MicrobeamPhysicsList.hh
"
33
34
#include "
G4UIdirectory.hh
"
35
#include "
G4UIcmdWithADoubleAndUnit.hh
"
36
#include "
G4UIcmdWithAString.hh
"
37
38
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
39
40
MicrobeamPhysicsListMessenger::MicrobeamPhysicsListMessenger
(
MicrobeamPhysicsList
* pPhys)
41
:pPhysicsList(pPhys)
42
{
43
physDir =
new
G4UIdirectory
(
"/microbeam/phys/"
);
44
physDir->
SetGuidance
(
"physics list commands"
);
45
46
gammaCutCmd =
new
G4UIcmdWithADoubleAndUnit
(
"/microbeam/phys/setGCut"
,
this
);
47
gammaCutCmd->
SetGuidance
(
"Set gamma cut."
);
48
gammaCutCmd->
SetParameterName
(
"Gcut"
,
false
);
49
gammaCutCmd->
SetUnitCategory
(
"Length"
);
50
gammaCutCmd->
SetRange
(
"Gcut>0.0"
);
51
gammaCutCmd->
AvailableForStates
(
G4State_PreInit
,
G4State_Idle
);
52
53
electCutCmd =
new
G4UIcmdWithADoubleAndUnit
(
"/microbeam/phys/setECut"
,
this
);
54
electCutCmd->
SetGuidance
(
"Set electron cut."
);
55
electCutCmd->
SetParameterName
(
"Ecut"
,
false
);
56
electCutCmd->
SetUnitCategory
(
"Length"
);
57
electCutCmd->
SetRange
(
"Ecut>0.0"
);
58
electCutCmd->
AvailableForStates
(
G4State_PreInit
,
G4State_Idle
);
59
60
protoCutCmd =
new
G4UIcmdWithADoubleAndUnit
(
"/microbeam/phys/setPCut"
,
this
);
61
protoCutCmd->
SetGuidance
(
"Set positron cut."
);
62
protoCutCmd->
SetParameterName
(
"Pcut"
,
false
);
63
protoCutCmd->
SetUnitCategory
(
"Length"
);
64
protoCutCmd->
SetRange
(
"Pcut>0.0"
);
65
protoCutCmd->
AvailableForStates
(
G4State_PreInit
,
G4State_Idle
);
66
67
allCutCmd =
new
G4UIcmdWithADoubleAndUnit
(
"/microbeam/phys/setCuts"
,
this
);
68
allCutCmd->
SetGuidance
(
"Set cut for all."
);
69
allCutCmd->
SetParameterName
(
"cut"
,
false
);
70
allCutCmd->
SetUnitCategory
(
"Length"
);
71
allCutCmd->
SetRange
(
"cut>0.0"
);
72
allCutCmd->
AvailableForStates
(
G4State_PreInit
,
G4State_Idle
);
73
74
pListCmd =
new
G4UIcmdWithAString
(
"/microbeam/phys/addPhysics"
,
this
);
75
pListCmd->
SetGuidance
(
"Add modula physics list."
);
76
pListCmd->
SetParameterName
(
"PList"
,
false
);
77
pListCmd->
AvailableForStates
(
G4State_PreInit
);
78
}
79
80
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
81
82
MicrobeamPhysicsListMessenger::~MicrobeamPhysicsListMessenger
()
83
{
84
delete
gammaCutCmd;
85
delete
electCutCmd;
86
delete
protoCutCmd;
87
delete
allCutCmd;
88
delete
pListCmd;
89
delete
physDir;
90
}
91
92
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
93
94
void
MicrobeamPhysicsListMessenger::SetNewValue
(
G4UIcommand
* command,
95
G4String
newValue)
96
{
97
if
( command == gammaCutCmd )
98
{ pPhysicsList->
SetCutForGamma
(gammaCutCmd->
GetNewDoubleValue
(newValue));}
99
100
if
( command == electCutCmd )
101
{ pPhysicsList->
SetCutForElectron
(electCutCmd->
GetNewDoubleValue
(newValue));}
102
103
if
( command == protoCutCmd )
104
{ pPhysicsList->
SetCutForPositron
(protoCutCmd->
GetNewDoubleValue
(newValue));}
105
106
if
( command == allCutCmd )
107
{
108
G4double
cut = allCutCmd->
GetNewDoubleValue
(newValue);
109
pPhysicsList->
SetCutForGamma
(cut);
110
pPhysicsList->
SetCutForElectron
(cut);
111
pPhysicsList->
SetCutForPositron
(cut);
112
}
113
114
if
( command == pListCmd )
115
{ pPhysicsList->
AddPhysicsList
(newValue);}
116
}
117
118
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
Generated on Sat May 25 2013 14:32:14 for Geant4 by
1.8.4