Geant4  9.6.p02
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
DetectorMessenger.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 //
28 //
29 // $Id$
30 //
32 //
33 // DetectorMessenger
34 //
35 // Created: 31.01.03 V.Ivanchenko
36 //
37 // Modified:
38 // 04.06.2006 Adoptation of Hadr01 (V.Ivanchenko)
39 // 16.11.2006 Add beamCmd (V.Ivanchenko)
40 //
42 //
43 
44 #include "DetectorMessenger.hh"
45 
46 #include "DetectorConstruction.hh"
47 #include "G4UIdirectory.hh"
48 #include "G4UIcmdWithABool.hh"
49 #include "G4UIcmdWithAString.hh"
50 #include "G4UIcmdWithAnInteger.hh"
51 #include "G4UIcmdWith3Vector.hh"
54 #include "HistoManager.hh"
55 
56 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
57 
59 :fDetector(Det)
60 {
61  fTestDir = new G4UIdirectory("/testhadr/");
62  fTestDir->SetGuidance(" Hadronic Extended Example.");
63 
64  fMatCmd = new G4UIcmdWithAString("/testhadr/TargetMat",this);
65  fMatCmd->SetGuidance("Select Material for the target");
66  fMatCmd->SetParameterName("tMaterial",false);
68 
69  fMat1Cmd = new G4UIcmdWithAString("/testhadr/WorldMat",this);
70  fMat1Cmd->SetGuidance("Select Material for world");
71  fMat1Cmd->SetParameterName("wMaterial",false);
73 
74  fRCmd = new G4UIcmdWithADoubleAndUnit("/testhadr/TargetRadius",this);
75  fRCmd->SetGuidance("Set radius of the target");
76  fRCmd->SetParameterName("radius",false);
77  fRCmd->SetUnitCategory("Length");
78  fRCmd->SetRange("radius>0");
80 
81  fLCmd = new G4UIcmdWithADoubleAndUnit("/testhadr/TargetLength",this);
82  fLCmd->SetGuidance("Set length of the target");
83  fLCmd->SetParameterName("length",false);
84  fLCmd->SetUnitCategory("Length");
85  fLCmd->SetRange("length>0");
87 
88  fBinCmd = new G4UIcmdWithAnInteger("/testhadr/NumberOfBinsE",this);
89  fBinCmd->SetGuidance("Set number of bins for Energy");
90  fBinCmd->SetParameterName("NEbins",false);
92 
93  fNOfAbsCmd = new G4UIcmdWithAnInteger("/testhadr/NumberDivZ",this);
94  fNOfAbsCmd->SetGuidance("Set number of slices");
95  fNOfAbsCmd->SetParameterName("NZ",false);
97 
98  fEdepCmd = new G4UIcmdWithADoubleAndUnit("/testhadr/MaxEdep",this);
99  fEdepCmd->SetGuidance("Set max energy in histogram");
100  fEdepCmd->SetParameterName("edep",false);
101  fEdepCmd->SetUnitCategory("Energy");
102  fEdepCmd->SetRange("edep>0");
104 
105  fUpdateCmd = new G4UIcmdWithoutParameter("/testhadr/Update",this);
106  fUpdateCmd->SetGuidance("Update geometry.");
107  fUpdateCmd->SetGuidance("This command MUST be applied before \"beamOn\" ");
108  fUpdateCmd->SetGuidance("if you changed geometrical value(s)");
110 
111  fBeamCmd = new G4UIcmdWithABool("/testhadr/DefaultBeamPosition",this);
112  fBeamCmd->SetGuidance("show inelastic and elastic cross sections");
113 
114  fVerbCmd = new G4UIcmdWithAnInteger("/testhadr/Verbose",this);
115  fVerbCmd->SetGuidance("Set verbose for ");
116  fVerbCmd->SetParameterName("verb",false);
118 }
119 
120 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
121 
123 {
124  delete fMatCmd;
125  delete fMat1Cmd;
126  delete fRCmd;
127  delete fLCmd;
128  delete fBinCmd;
129  delete fNOfAbsCmd;
130  delete fUpdateCmd;
131  delete fTestDir;
132  delete fBeamCmd;
133  delete fVerbCmd;
134  delete fEdepCmd;
135 }
136 
137 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
138 
139 void DetectorMessenger::SetNewValue(G4UIcommand* command, G4String newValue)
140 {
142  if( command == fMatCmd ) {
143  fDetector->SetTargetMaterial(newValue);
144  } else if( command == fMat1Cmd ) {
145  fDetector->SetWorldMaterial(newValue);
146  } else if( command == fRCmd ) {
147  fDetector->SetTargetRadius(fRCmd->GetNewDoubleValue(newValue));
148  } else if( command == fLCmd ) {
149  h->SetTargetLength(fLCmd->GetNewDoubleValue(newValue));
150  } else if( command == fNOfAbsCmd ) {
151  h->SetNumberOfSlices(fNOfAbsCmd->GetNewIntValue(newValue));
152  } else if( command == fBinCmd ) {
153  h->SetNumberOfBinsE(fBinCmd->GetNewIntValue(newValue));
154  } else if( command == fVerbCmd ) {
155  h->SetVerbose(fVerbCmd->GetNewIntValue(newValue));
156  } else if (command == fBeamCmd) {
157  h->SetDefaultBeamPositionFlag(fBeamCmd->GetNewBoolValue(newValue));
158  } else if (command == fEdepCmd) {
159  h->SetMaxEnergyDeposit(fEdepCmd->GetNewDoubleValue(newValue));
160  } else if( command == fUpdateCmd ) {
161  fDetector->UpdateGeometry();
162  }
163 }
164 
165 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
166