source: trunk/examples/novice/N02/src/ExN02DetectorMessenger.cc @ 1279

Last change on this file since 1279 was 1230, checked in by garnier, 14 years ago

update to geant4.9.3

File size: 4.4 KB
Line 
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//
27// $Id: ExN02DetectorMessenger.cc,v 1.12 2008/09/22 16:41:20 maire Exp $
28// GEANT4 tag $Name: geant4-09-03-cand-01 $
29//
30//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
31//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
32
33#include "ExN02DetectorMessenger.hh"
34
35#include "ExN02DetectorConstruction.hh"
36#include "G4UIdirectory.hh"
37#include "G4UIcmdWithAString.hh"
38#include "G4UIcmdWithADoubleAndUnit.hh"
39#include "globals.hh"
40
41//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
42
43ExN02DetectorMessenger::ExN02DetectorMessenger(ExN02DetectorConstruction* myDet)
44:myDetector(myDet)
45{ 
46  N02Dir = new G4UIdirectory("/N02/");
47  N02Dir->SetGuidance("UI commands specific to this example.");
48 
49  detDir = new G4UIdirectory("/N02/det/");
50  detDir->SetGuidance("detector control.");
51 
52  TargMatCmd = new G4UIcmdWithAString("/N02/det/setTargetMate",this);
53  TargMatCmd->SetGuidance("Select Material of the Target.");
54  TargMatCmd->SetParameterName("choice",false);
55  TargMatCmd->AvailableForStates(G4State_PreInit,G4State_Idle);
56 
57  ChamMatCmd = new G4UIcmdWithAString("/N02/det/setChamberMate",this);
58  ChamMatCmd->SetGuidance("Select Material of the Target.");
59  ChamMatCmd->SetParameterName("choice",false);
60  ChamMatCmd->AvailableForStates(G4State_PreInit,G4State_Idle); 
61 
62  FieldCmd = new G4UIcmdWithADoubleAndUnit("/N02/det/setField",this); 
63  FieldCmd->SetGuidance("Define magnetic field.");
64  FieldCmd->SetGuidance("Magnetic field will be in X direction.");
65  FieldCmd->SetParameterName("Bx",false);
66  FieldCmd->SetUnitCategory("Magnetic flux density");
67  FieldCmd->AvailableForStates(G4State_PreInit,G4State_Idle);
68       
69  StepMaxCmd = new G4UIcmdWithADoubleAndUnit("/N02/det/stepMax",this); 
70  StepMaxCmd->SetGuidance("Define a step max");
71  StepMaxCmd->SetParameterName("stepMax",false);
72  StepMaxCmd->SetUnitCategory("Length");
73  StepMaxCmd->AvailableForStates(G4State_Idle);   
74}
75
76//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
77
78ExN02DetectorMessenger::~ExN02DetectorMessenger()
79{
80  delete TargMatCmd;
81  delete ChamMatCmd;
82  delete FieldCmd;
83  delete StepMaxCmd; 
84  delete detDir;
85  delete N02Dir;
86}
87
88//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
89
90void ExN02DetectorMessenger::SetNewValue(G4UIcommand* command,G4String newValue)
91{ 
92  if( command == TargMatCmd )
93   { myDetector->setTargetMaterial(newValue);}
94   
95  if( command == ChamMatCmd )
96   { myDetector->setChamberMaterial(newValue);} 
97 
98  if( command == FieldCmd )
99   { myDetector->SetMagField(FieldCmd->GetNewDoubleValue(newValue));}
100     
101  if( command == StepMaxCmd )
102   { myDetector->SetMaxStep(StepMaxCmd->GetNewDoubleValue(newValue));}   
103}
104
105//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
Note: See TracBrowser for help on using the repository browser.