Geant4.10
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
examples/extended/medical/GammaTherapy/src/PhysicsListMessenger.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 /// \file medical/GammaTherapy/src/PhysicsListMessenger.cc
27 /// \brief Implementation of the PhysicsListMessenger class
28 //
29 // $Id: PhysicsListMessenger.cc 67994 2013-03-13 11:05:39Z gcosmo $
30 //
31 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
32 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
33 
34 #include "PhysicsListMessenger.hh"
35 
36 #include "PhysicsList.hh"
37 #include "G4UIdirectory.hh"
39 #include "G4UIcmdWithAString.hh"
40 #include "G4UIcmdWithAnInteger.hh"
41 #include "G4LossTableManager.hh"
42 
43 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
44 
46 :fPhysicsList(pPhys)
47 {
48  fPhysDir = new G4UIdirectory("/testem/phys/");
49  fPhysDir->SetGuidance("physics list commands");
50 
51  fGammaCutCmd = new G4UIcmdWithADoubleAndUnit("/testem/phys/setGCut",this);
52  fGammaCutCmd->SetGuidance("Set gamma cut.");
53  fGammaCutCmd->SetParameterName("Gcut",false);
54  fGammaCutCmd->SetUnitCategory("Length");
55  fGammaCutCmd->SetRange("Gcut>0.0");
57 
58  fElectCutCmd = new G4UIcmdWithADoubleAndUnit("/testem/phys/setECut",this);
59  fElectCutCmd->SetGuidance("Set electron cut.");
60  fElectCutCmd->SetParameterName("Ecut",false);
61  fElectCutCmd->SetUnitCategory("Length");
62  fElectCutCmd->SetRange("Ecut>0.0");
64 
65  fPositCutCmd = new G4UIcmdWithADoubleAndUnit("/testem/phys/setPCut",this);
66  fPositCutCmd->SetGuidance("Set positron cut.");
67  fPositCutCmd->SetParameterName("Pcut",false);
68  fPositCutCmd->SetUnitCategory("Length");
69  fPositCutCmd->SetRange("Pcut>0.0");
71 
72  fAllCutCmd = new G4UIcmdWithADoubleAndUnit("/testem/phys/setCuts",this);
73  fAllCutCmd->SetGuidance("Set cut for all.");
74  fAllCutCmd->SetParameterName("cut",false);
75  fAllCutCmd->SetUnitCategory("Length");
76  fAllCutCmd->SetRange("cut>0.0");
78 
79  fListCmd = new G4UIcmdWithAString("/testem/phys/addPhysics",this);
80  fListCmd->SetGuidance("Add modula physics list.");
81  fListCmd->SetParameterName("PList",false);
83 
84  fVerbCmd = new G4UIcmdWithAnInteger("/testem/phys/verbose",this);
85  fVerbCmd->SetGuidance("Set verbose level for processes");
86  fVerbCmd->SetParameterName("pVerb",false);
88 }
89 
90 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
91 
93 {
94  delete fGammaCutCmd;
95  delete fElectCutCmd;
96  delete fPositCutCmd;
97  delete fAllCutCmd;
98  delete fListCmd;
99  delete fVerbCmd;
100  delete fPhysDir;
101 }
102 
103 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
104 
106  G4String newValue)
107 {
108  if( command == fGammaCutCmd )
109  { fPhysicsList->SetCutForGamma(fGammaCutCmd->GetNewDoubleValue(newValue));}
110 
111  if( command == fElectCutCmd )
112  { fPhysicsList->SetCutForElectron(fElectCutCmd->GetNewDoubleValue(newValue));}
113 
114  if( command == fPositCutCmd )
115  { fPhysicsList->SetCutForPositron(fPositCutCmd->GetNewDoubleValue(newValue));}
116 
117  if( command == fAllCutCmd )
118  {
119  G4double cut = fAllCutCmd->GetNewDoubleValue(newValue);
120  fPhysicsList->SetCutForGamma(cut);
121  fPhysicsList->SetCutForElectron(cut);
122  fPhysicsList->SetCutForPositron(cut);
123  }
124 
125  if( command == fVerbCmd )
126  { G4LossTableManager::Instance()->SetVerbose(fVerbCmd->GetNewIntValue(newValue));}
127 
128  if( command == fListCmd )
129  { fPhysicsList->AddPhysicsList(newValue);}
130 }
131 
132 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
void SetParameterName(const char *theName, G4bool omittable, G4bool currentAsDefault=false)
static G4LossTableManager * Instance()
void SetParameterName(const char *theName, G4bool omittable, G4bool currentAsDefault=false)
static G4int GetNewIntValue(const char *paramString)
void SetUnitCategory(const char *unitCategory)
static G4double GetNewDoubleValue(const char *paramString)
void SetRange(const char *rs)
Definition: G4UIcommand.hh:125
void SetGuidance(const char *aGuidance)
Definition: G4UIcommand.hh:161
void AvailableForStates(G4ApplicationState s1)
Definition: G4UIcommand.cc:225
void SetVerbose(G4int val)
double G4double
Definition: G4Types.hh:76
void SetParameterName(const char *theName, G4bool omittable, G4bool currentAsDefault=false)