Geant4.10
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
examples/extended/medical/electronScattering/src/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 //
26 /// \file medical/electronScattering/src/DetectorMessenger.cc
27 /// \brief Implementation of the DetectorMessenger class
28 //
29 // $Id: DetectorMessenger.cc 68393 2013-03-25 14:22:21Z maire $
30 //
31 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
32 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
33 
34 #include "DetectorMessenger.hh"
35 
36 #include "DetectorConstruction.hh"
37 
38 #include "G4UIdirectory.hh"
39 #include "G4UIcmdWithAString.hh"
42 
43 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
44 
46 :fDetector(det),
47  fTestemDir(0), fDetDir(0), fMaterCmd(0), fThickCmd(0), fUpdateCmd(0)
48 {
49  fTestemDir = new G4UIdirectory("/testem/");
50  fTestemDir->SetGuidance("UI commands specific to this example.");
51 
52  fDetDir = new G4UIdirectory("/testem/det/");
53  fDetDir->SetGuidance("detector construction commands");
54 
55  fMaterCmd = new G4UIcmdWithAString("/testem/det/setMaterial",this);
56  fMaterCmd->SetGuidance("Select Material of the Scatter Foil");
57  fMaterCmd->SetParameterName("material",false);
58 
59  fThickCmd = new G4UIcmdWithADoubleAndUnit("/testem/det/setThickness",this);
60  fThickCmd->SetGuidance("Set Thickness of the Scatter Foil");
61  fThickCmd->SetParameterName("thickness",false);
62  fThickCmd->SetRange("thickness>0.");
63  fThickCmd->SetUnitCategory("Length");
64 
65  fUpdateCmd = new G4UIcmdWithoutParameter("/testem/det/update",this);
66  fUpdateCmd->SetGuidance("Update calorimeter geometry.");
67  fUpdateCmd->SetGuidance("This command MUST be applied before \"beamOn\" ");
68  fUpdateCmd->SetGuidance("if you changed geometrical value(s).");
69 }
70 
71 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
72 
74 {
75  delete fMaterCmd;
76  delete fThickCmd;
77  delete fUpdateCmd;
78  delete fDetDir;
79  delete fTestemDir;
80 }
81 
82 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
83 
85 {
86  if ( command == fMaterCmd )
87  {fDetector->SetMaterialScatter(newValue);}
88 
89  if ( command == fThickCmd )
90  {fDetector->SetThicknessScatter(fThickCmd->GetNewDoubleValue(newValue));}
91 
92  if ( command == fUpdateCmd )
93  {fDetector->UpdateGeometry(); }
94 }
95 
96 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
void SetParameterName(const char *theName, G4bool omittable, G4bool currentAsDefault=false)
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 SetParameterName(const char *theName, G4bool omittable, G4bool currentAsDefault=false)