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 //
31 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
32 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
33 
34 #include "DetectorMessenger.hh"
35 
36 #include <sstream>
37 
38 #include "DetectorConstruction.hh"
39 #include "G4UIdirectory.hh"
40 #include "G4UIcommand.hh"
41 #include "G4UIparameter.hh"
42 #include "G4UIcmdWithAnInteger.hh"
45 
46 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
47 
49 :Detector(Det)
50 {
51  fTestemDir = new G4UIdirectory("/testem/");
52  fTestemDir->SetGuidance("UI commands specific to this example");
53 
54  fDetDir = new G4UIdirectory("/testem/det/");
55  fDetDir->SetGuidance("detector construction commands");
56 
57  fSizeYZCmd = new G4UIcmdWithADoubleAndUnit("/testem/det/setSizeYZ",this);
58  fSizeYZCmd->SetGuidance("Set tranverse size of the calorimeter");
59  fSizeYZCmd->SetParameterName("Size",false);
60  fSizeYZCmd->SetRange("Size>0.");
61  fSizeYZCmd->SetUnitCategory("Length");
63 
64  fNbLayersCmd = new G4UIcmdWithAnInteger("/testem/det/setNbOfLayers",this);
65  fNbLayersCmd->SetGuidance("Set number of layers.");
66  fNbLayersCmd->SetParameterName("NbLayers",false);
67  fNbLayersCmd->SetRange("NbLayers>0");
69 
70  fNbAbsorCmd = new G4UIcmdWithAnInteger("/testem/det/setNbOfAbsor",this);
71  fNbAbsorCmd->SetGuidance("Set number of Absorbers.");
72  fNbAbsorCmd->SetParameterName("NbAbsor",false);
73  fNbAbsorCmd->SetRange("NbAbsor>0");
75 
76  fAbsorCmd = new G4UIcommand("/testem/det/setAbsor",this);
77  fAbsorCmd->SetGuidance("Set the absor nb, the material, the thickness.");
78  fAbsorCmd->SetGuidance(" absor number : from 1 to NbOfAbsor");
79  fAbsorCmd->SetGuidance(" material name");
80  fAbsorCmd->SetGuidance(" thickness (with unit) : t>0.");
81  //
82  G4UIparameter* AbsNbPrm = new G4UIparameter("AbsorNb",'i',false);
83  AbsNbPrm->SetGuidance("absor number : from 1 to NbOfAbsor");
84  AbsNbPrm->SetParameterRange("AbsorNb>0");
85  fAbsorCmd->SetParameter(AbsNbPrm);
86  //
87  G4UIparameter* MatPrm = new G4UIparameter("material",'s',false);
88  MatPrm->SetGuidance("material name");
89  fAbsorCmd->SetParameter(MatPrm);
90  //
91  G4UIparameter* ThickPrm = new G4UIparameter("thickness",'d',false);
92  ThickPrm->SetGuidance("thickness of absorber");
93  ThickPrm->SetParameterRange("thickness>0.");
94  fAbsorCmd->SetParameter(ThickPrm);
95  //
96  G4UIparameter* unitPrm = new G4UIparameter("unit",'s',false);
97  unitPrm->SetGuidance("unit of thickness");
99  unitPrm->SetParameterCandidates(unitList);
100  fAbsorCmd->SetParameter(unitPrm);
101  //
103 
104  fMagFieldCmd = new G4UIcmdWithADoubleAndUnit("/testem/det/setField",this);
105  fMagFieldCmd->SetGuidance("Define magnetic field.");
106  fMagFieldCmd->SetGuidance("Magnetic field will be in Z direction.");
107  fMagFieldCmd->SetParameterName("Bz",false);
108  fMagFieldCmd->SetUnitCategory("Magnetic flux density");
110 
111  fUpdateCmd = new G4UIcmdWithoutParameter("/testem/det/update",this);
112  fUpdateCmd->SetGuidance("Update calorimeter geometry.");
113  fUpdateCmd->SetGuidance("This command MUST be applied before \"beamOn\" ");
114  fUpdateCmd->SetGuidance("if you changed geometrical value(s).");
115  fUpdateCmd->AvailableForStates(G4State_Idle);
116 }
117 
118 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
119 
121 {
122  delete fSizeYZCmd;
123  delete fNbLayersCmd;
124  delete fNbAbsorCmd;
125  delete fAbsorCmd;
126  delete fMagFieldCmd;
127  delete fUpdateCmd;
128  delete fDetDir;
129  delete fTestemDir;
130 }
131 
132 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
133 
135 {
136  if( command == fSizeYZCmd )
137  { Detector->SetCalorSizeYZ(fSizeYZCmd->GetNewDoubleValue(newValue));}
138 
139  if( command == fNbLayersCmd )
140  { Detector->SetNbOfLayers(fNbLayersCmd->GetNewIntValue(newValue));}
141 
142  if( command == fNbAbsorCmd )
143  { Detector->SetNbOfAbsor(fNbAbsorCmd->GetNewIntValue(newValue));}
144 
145  if (command == fAbsorCmd)
146  {
147  G4int num; G4double tick;
148  G4String unt, mat;
149  std::istringstream is(newValue);
150  is >> num >> mat >> tick >> unt;
152  tick *= G4UIcommand::ValueOf(unt);
153  Detector->SetAbsorMaterial (num,material);
154  Detector->SetAbsorThickness(num,tick);
155  }
156 
157  if( command == fMagFieldCmd )
158  { Detector->SetMagField(fMagFieldCmd->GetNewDoubleValue(newValue));}
159 
160  if( command == fUpdateCmd )
161  { Detector->UpdateGeometry();}
162 }
163 
164 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......