source: trunk/source/processes/cuts/src/G4ProductionCutsTableMessenger.cc@ 1215

Last change on this file since 1215 was 1196, checked in by garnier, 16 years ago

update CVS release candidate geant4.9.3.01

File size: 6.2 KB
RevLine 
[968]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//
[1196]27// $Id: G4ProductionCutsTableMessenger.cc,v 1.3 2009/11/12 00:20:03 kurasige Exp $
28// GEANT4 tag $Name: geant4-09-03-cand-01 $
[968]29//
30//
31//---------------------------------------------------------------
32//
33// G4ProductionCutsTableMessenger.cc
34// ------------------------------------------------------------
35// History
36// first version 02 Mar. 2008 by H.Kurashige
37//
38
39#include "G4ProductionCutsTableMessenger.hh"
40#include "G4ProductionCutsTable.hh"
41
42#include "G4UIdirectory.hh"
43#include "G4UIcmdWithoutParameter.hh"
44#include "G4UIcmdWithAnInteger.hh"
45#include "G4UIcmdWithADoubleAndUnit.hh"
46#include "G4UIcmdWithAString.hh"
47#include "G4ios.hh"
48#include "G4Tokenizer.hh"
49
50#include <sstream>
51
52G4ProductionCutsTableMessenger::G4ProductionCutsTableMessenger( G4ProductionCutsTable* pTable)
53 :theCutsTable(pTable)
54{
55 // /cuts/ directory
56 theDirectory = new G4UIdirectory("/cuts/");
57 theDirectory->SetGuidance("Commands for G4VUserPhysicsList.");
58
59 // /cuts/verbose command
60 verboseCmd = new G4UIcmdWithAnInteger("/cuts/verbose",this);
61 verboseCmd->SetGuidance("Set the Verbose level of G4ProductionCutsTable.");
62 verboseCmd->SetGuidance(" 0 : Silent (default)");
63 verboseCmd->SetGuidance(" 1 : Display warning messages");
64 verboseCmd->SetGuidance(" 2 : Display more info");
65 verboseCmd->SetGuidance(" 2 : Display debug info");
66 verboseCmd->SetParameterName("level",true);
67 verboseCmd->SetDefaultValue(0);
68 verboseCmd->SetRange("level >=0 && level <=3");
69
70 // /cuts/setLowEdge command
71 setLowEdgeCmd = new G4UIcmdWithADoubleAndUnit("/cuts/setLowEdge",this);
72 setLowEdgeCmd->SetGuidance("Set low edge energy value ");
73 setLowEdgeCmd->SetParameterName("edge",false);
74 setLowEdgeCmd->SetDefaultValue(0.99);
75 setLowEdgeCmd->SetRange("edge >0.0");
76 setLowEdgeCmd->SetDefaultUnit("keV");
77 setLowEdgeCmd->AvailableForStates(G4State_PreInit);
78
79 // /cuts/setHighEdge command
80 setHighEdgeCmd = new G4UIcmdWithADoubleAndUnit("/cuts/setHighEdge",this);
81 setHighEdgeCmd->SetGuidance("Set high edge energy value ");
82 setHighEdgeCmd->SetParameterName("edge",false);
83 setHighEdgeCmd->SetDefaultValue(100.0);
84 setHighEdgeCmd->SetRange("edge >0.0");
85 setHighEdgeCmd->SetDefaultUnit("TeV");
86 setHighEdgeCmd->AvailableForStates(G4State_PreInit);
87
[1196]88 // /cuts/setMaxCutEnergy command
89 setMaxEnergyCutCmd = new G4UIcmdWithADoubleAndUnit("/cuts/setMaxCutEnergy",this);
90 setMaxEnergyCutCmd->SetGuidance("Set maximum of cut energy value ");
91 setMaxEnergyCutCmd->SetParameterName("cut",false);
92 setMaxEnergyCutCmd->SetDefaultValue(10.0);
93 setMaxEnergyCutCmd->SetRange("cut >0.0");
94 setMaxEnergyCutCmd->SetDefaultUnit("GeV");
95 setMaxEnergyCutCmd->AvailableForStates(G4State_PreInit);
96
[968]97 // /cuts/dump command
98 dumpCmd = new G4UIcmdWithoutParameter("/cuts/dump",this);
99 dumpCmd->SetGuidance("Dump cuplues in ProductuinCutsTable. ");
100
101}
102
103G4ProductionCutsTableMessenger::~G4ProductionCutsTableMessenger()
104{
105 delete dumpCmd;
[1196]106 delete setMaxEnergyCutCmd;
[968]107 delete setHighEdgeCmd;
108 delete setLowEdgeCmd;
109 delete verboseCmd;
110 delete theDirectory;
111}
112
113void G4ProductionCutsTableMessenger::SetNewValue(G4UIcommand * command,
114 G4String newValue)
115{
116 if( command==verboseCmd ) {
117 theCutsTable->SetVerboseLevel(verboseCmd->GetNewIntValue(newValue));
118
119 } else if( command==dumpCmd ){
120 theCutsTable-> DumpCouples();
121
122 } else if( command==setLowEdgeCmd ){
123 G4double lowEdge = setLowEdgeCmd->GetNewDoubleValue(newValue);
124 G4double highEdge = theCutsTable->GetHighEdgeEnergy();
125 theCutsTable->SetEnergyRange(lowEdge, highEdge);
126
127 } else if( command==setHighEdgeCmd ){
128 G4double highEdge = setHighEdgeCmd->GetNewDoubleValue(newValue);
129 G4double lowEdge = theCutsTable->GetLowEdgeEnergy();
130 theCutsTable->SetEnergyRange(lowEdge, highEdge);
131
[1196]132 } else if( command==setMaxEnergyCutCmd ){
133 G4double cut = setHighEdgeCmd->GetNewDoubleValue(newValue);
134 theCutsTable->SetMaxEnergyCut(cut);
135
[968]136 }
137}
138
139G4String G4ProductionCutsTableMessenger::GetCurrentValue(G4UIcommand * command)
140{
141 G4String cv;
142
143 if( command==verboseCmd ){
144 cv = verboseCmd->ConvertToString(theCutsTable->GetVerboseLevel());
145
146 } else if( command==setLowEdgeCmd ){
147 G4double lowEdge = theCutsTable->GetLowEdgeEnergy();
148 cv = setLowEdgeCmd->ConvertToString( lowEdge, "keV" );
149
150 } else if( command==setHighEdgeCmd ){
151 G4double highEdge = theCutsTable->GetHighEdgeEnergy();
152 cv = setHighEdgeCmd->ConvertToString( highEdge, "TeV" );
[1196]153
154 } else if( command==setMaxEnergyCutCmd ){
155 G4double cut = theCutsTable->GetMaxEnergyCut();
156 cv = setMaxEnergyCutCmd->ConvertToString( cut, "GeV" );
[968]157 }
158
[1196]159
[968]160 return cv;
161
162}
163
Note: See TracBrowser for help on using the repository browser.