Geant4  9.6.p02
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
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 //
30 
31 #include "B2bDetectorMessenger.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  fSetFieldCmd = new G4UIcmdWithADoubleAndUnit("/B2/det/setField",this);
61  fSetFieldCmd->SetGuidance("Define magnetic field.");
62  fSetFieldCmd->SetGuidance("Magnetic field will be in X direction.");
63  fSetFieldCmd->SetParameterName("Bx",false);
64  fSetFieldCmd->SetUnitCategory("Magnetic flux density");
66 
67  fStepMaxCmd = new G4UIcmdWithADoubleAndUnit("/B2/det/stepMax",this);
68  fStepMaxCmd->SetGuidance("Define a step max");
69  fStepMaxCmd->SetParameterName("stepMax",false);
70  fStepMaxCmd->SetUnitCategory("Length");
71  fStepMaxCmd->AvailableForStates(G4State_Idle);
72 }
73 
74 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
75 
77 {
78  delete fTargMatCmd;
79  delete fChamMatCmd;
80  delete fSetFieldCmd;
81  delete fStepMaxCmd;
82  delete fB2Directory;
83  delete fDetDirectory;
84 }
85 
86 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
87 
89 {
90  if( command == fTargMatCmd )
91  { fDetectorConstruction->SetTargetMaterial(newValue);}
92 
93  if( command == fChamMatCmd )
94  { fDetectorConstruction->SetChamberMaterial(newValue);}
95 
96  if( command == fSetFieldCmd ) {
97  fDetectorConstruction
98  ->SetMagField(fSetFieldCmd->GetNewDoubleValue(newValue));
99  }
100 
101  if( command == fStepMaxCmd ) {
102  fDetectorConstruction
103  ->SetMaxStep(fStepMaxCmd->GetNewDoubleValue(newValue));
104  }
105 }
106 
107 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......