Geant4.10
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
basic/B2/B2b/src/B2bDetectorMessenger.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 // $Id$
27 //
28 /// \file B2bDetectorMessenger.cc
29 /// \brief Implementation of the B2bDetectorMessenger class
30 
31 #include "B2bDetectorMessenger.hh"
32 #include "B2bDetectorConstruction.hh"
33 
34 #include "G4UIdirectory.hh"
35 #include "G4UIcmdWithAString.hh"
37 
38 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
39 
41  : G4UImessenger(),
42  fDetectorConstruction(Det)
43 {
44  fB2Directory = new G4UIdirectory("/B2/");
45  fB2Directory->SetGuidance("UI commands specific to this example.");
46 
47  fDetDirectory = new G4UIdirectory("/B2/det/");
48  fDetDirectory->SetGuidance("Detector construction control");
49 
50  fTargMatCmd = new G4UIcmdWithAString("/B2/det/setTargetMaterial",this);
51  fTargMatCmd->SetGuidance("Select Material of the Target.");
52  fTargMatCmd->SetParameterName("choice",false);
54 
55  fChamMatCmd = new G4UIcmdWithAString("/B2/det/setChamberMaterial",this);
56  fChamMatCmd->SetGuidance("Select Material of the Chamber.");
57  fChamMatCmd->SetParameterName("choice",false);
59 
60  fStepMaxCmd = new G4UIcmdWithADoubleAndUnit("/B2/det/stepMax",this);
61  fStepMaxCmd->SetGuidance("Define a step max");
62  fStepMaxCmd->SetParameterName("stepMax",false);
63  fStepMaxCmd->SetUnitCategory("Length");
64  fStepMaxCmd->AvailableForStates(G4State_Idle);
65 }
66 
67 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
68 
70 {
71  delete fTargMatCmd;
72  delete fChamMatCmd;
73  delete fStepMaxCmd;
74  delete fB2Directory;
75  delete fDetDirectory;
76 }
77 
78 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
79 
81 {
82  if( command == fTargMatCmd )
83  { fDetectorConstruction->SetTargetMaterial(newValue);}
84 
85  if( command == fChamMatCmd )
86  { fDetectorConstruction->SetChamberMaterial(newValue);}
87 
88  if( command == fStepMaxCmd ) {
89  fDetectorConstruction
90  ->SetMaxStep(fStepMaxCmd->GetNewDoubleValue(newValue));
91  }
92 }
93 
94 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
void SetParameterName(const char *theName, G4bool omittable, G4bool currentAsDefault=false)
B2bDetectorMessenger(B2bDetectorConstruction *)
void SetUnitCategory(const char *unitCategory)
static G4double GetNewDoubleValue(const char *paramString)
void SetGuidance(const char *aGuidance)
Definition: G4UIcommand.hh:161
void AvailableForStates(G4ApplicationState s1)
Definition: G4UIcommand.cc:225
void SetParameterName(const char *theName, G4bool omittable, G4bool currentAsDefault=false)
virtual void SetNewValue(G4UIcommand *, G4String)