Geant4 Cross Reference |
1 // 1 // 2 // ******************************************* 2 // ******************************************************************** 3 // * License and Disclaimer 3 // * License and Disclaimer * 4 // * 4 // * * 5 // * The Geant4 software is copyright of th 5 // * The Geant4 software is copyright of the Copyright Holders of * 6 // * the Geant4 Collaboration. It is provided 6 // * the Geant4 Collaboration. It is provided under the terms and * 7 // * conditions of the Geant4 Software License 7 // * conditions of the Geant4 Software License, included in the file * 8 // * LICENSE and available at http://cern.ch/ 8 // * LICENSE and available at http://cern.ch/geant4/license . These * 9 // * include a list of copyright holders. 9 // * include a list of copyright holders. * 10 // * 10 // * * 11 // * Neither the authors of this software syst 11 // * Neither the authors of this software system, nor their employing * 12 // * institutes,nor the agencies providing fin 12 // * institutes,nor the agencies providing financial support for this * 13 // * work make any representation or warran 13 // * work make any representation or warranty, express or implied, * 14 // * regarding this software system or assum 14 // * regarding this software system or assume any liability for its * 15 // * use. Please see the license in the file 15 // * use. Please see the license in the file LICENSE and URL above * 16 // * for the full disclaimer and the limitatio 16 // * for the full disclaimer and the limitation of liability. * 17 // * 17 // * * 18 // * This code implementation is the result 18 // * This code implementation is the result of the scientific and * 19 // * technical work of the GEANT4 collaboratio 19 // * technical work of the GEANT4 collaboration. * 20 // * By using, copying, modifying or distri 20 // * By using, copying, modifying or distributing the software (or * 21 // * any work based on the software) you ag 21 // * any work based on the software) you agree to acknowledge its * 22 // * use in resulting scientific publicati 22 // * use in resulting scientific publications, and indicate your * 23 // * acceptance of all terms of the Geant4 Sof 23 // * acceptance of all terms of the Geant4 Software license. * 24 // ******************************************* 24 // ******************************************************************** 25 // 25 // 26 #include "Par04ParallelMessenger.hh" 26 #include "Par04ParallelMessenger.hh" 27 << 27 #include <CLHEP/Units/SystemOfUnits.h> // for pi 28 #include "Par04ParallelFullWorld.hh" // for P << 28 #include <G4ApplicationState.hh> // for G4State_PreInit, G4State_Idle 29 << 29 #include <G4ThreeVector.hh> // for G4ThreeVector 30 #include "G4UIcmdWithABool.hh" // for G4UIcmd << 30 #include <G4Types.hh> // for G4bool, G4double, G4int 31 #include "G4UIcmdWithAnInteger.hh" // for G4U << 31 #include <G4UIcommand.hh> // for G4UIcommand 32 #include "G4UIcmdWithoutParameter.hh" // for << 32 #include <G4UImessenger.hh> // for G4UImessenger 33 #include "G4UIdirectory.hh" // for G4UIdirect << 33 #include <G4UIparameter.hh> // for G4UIparameter 34 << 34 #include <istream> // for basic_istream, basic_istream... 35 #include <CLHEP/Units/SystemOfUnits.h> // for << 35 #include <string> // for operator>> 36 #include <G4ApplicationState.hh> // for G4Sta << 36 #include "G4UIcmdWithAnInteger.hh" // for G4UIcmdWithAnInteger 37 #include <G4ThreeVector.hh> // for G4ThreeVec << 37 #include "G4UIcmdWithoutParameter.hh" // for G4UIcmdWithoutParameter 38 #include <G4Types.hh> // for G4bool, G4double << 38 #include "G4UIcmdWithABool.hh" // for G4UIcmdWithABool 39 #include <G4UIcommand.hh> // for G4UIcommand << 39 #include "G4UIdirectory.hh" // for G4UIdirectory 40 #include <G4UImessenger.hh> // for G4UImessen << 40 #include "Par04ParallelFullWorld.hh" // for Par04ParallelFullWorld 41 #include <G4UIparameter.hh> // for G4UIparame << 42 #include <istream> // for basic_istream, basi << 43 #include <string> // for operator>> << 44 41 45 //....oooOO0OOooo........oooOO0OOooo........oo 42 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 46 43 47 Par04ParallelMessenger::Par04ParallelMessenger 44 Par04ParallelMessenger::Par04ParallelMessenger(Par04ParallelFullWorld* aParallel) 48 : G4UImessenger(), fParallel(aParallel) << 45 : G4UImessenger() >> 46 , fParallel(aParallel) 49 { 47 { 50 fExampleDir = new G4UIdirectory("/Par04/"); 48 fExampleDir = new G4UIdirectory("/Par04/"); 51 fExampleDir->SetGuidance("UI commands specif 49 fExampleDir->SetGuidance("UI commands specific to this example"); 52 50 53 fParallelDir = new G4UIdirectory("/Par04/par 51 fParallelDir = new G4UIdirectory("/Par04/parallel/"); 54 fParallelDir->SetGuidance("Parallel construc 52 fParallelDir->SetGuidance("Parallel construction UI commands"); 55 53 56 fPrintCmd = new G4UIcmdWithoutParameter("/Pa 54 fPrintCmd = new G4UIcmdWithoutParameter("/Par04/parallel/print", this); 57 fPrintCmd->SetGuidance("Print current settin 55 fPrintCmd->SetGuidance("Print current settings."); 58 56 59 fNbSlicesCmd = new G4UIcmdWithAnInteger("/Pa 57 fNbSlicesCmd = new G4UIcmdWithAnInteger("/Par04/parallel/setNbOfSlices", this); 60 fNbSlicesCmd->SetGuidance("Set number of sli 58 fNbSlicesCmd->SetGuidance("Set number of slices."); 61 fNbSlicesCmd->SetParameterName("NbSlices", f 59 fNbSlicesCmd->SetParameterName("NbSlices", false); 62 fNbSlicesCmd->SetRange("NbSlices>0"); 60 fNbSlicesCmd->SetRange("NbSlices>0"); 63 fNbSlicesCmd->AvailableForStates(G4State_Pre 61 fNbSlicesCmd->AvailableForStates(G4State_PreInit); 64 fNbSlicesCmd->SetToBeBroadcasted(false); 62 fNbSlicesCmd->SetToBeBroadcasted(false); 65 63 66 fNbRowsCmd = new G4UIcmdWithAnInteger("/Par0 64 fNbRowsCmd = new G4UIcmdWithAnInteger("/Par04/parallel/setNbOfRows", this); 67 fNbRowsCmd->SetGuidance("Set number of rows. 65 fNbRowsCmd->SetGuidance("Set number of rows."); 68 fNbRowsCmd->SetParameterName("NbRows", false 66 fNbRowsCmd->SetParameterName("NbRows", false); 69 fNbRowsCmd->SetRange("NbRows>0"); 67 fNbRowsCmd->SetRange("NbRows>0"); 70 fNbRowsCmd->AvailableForStates(G4State_PreIn 68 fNbRowsCmd->AvailableForStates(G4State_PreInit); 71 fNbRowsCmd->SetToBeBroadcasted(false); 69 fNbRowsCmd->SetToBeBroadcasted(false); 72 } 70 } 73 71 74 //....oooOO0OOooo........oooOO0OOooo........oo 72 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 75 73 76 Par04ParallelMessenger::~Par04ParallelMessenge 74 Par04ParallelMessenger::~Par04ParallelMessenger() 77 { 75 { 78 delete fPrintCmd; 76 delete fPrintCmd; 79 delete fNbSlicesCmd; 77 delete fNbSlicesCmd; 80 delete fNbRowsCmd; 78 delete fNbRowsCmd; 81 delete fParallelDir; 79 delete fParallelDir; 82 delete fExampleDir; 80 delete fExampleDir; 83 } 81 } 84 82 85 //....oooOO0OOooo........oooOO0OOooo........oo 83 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 86 84 87 void Par04ParallelMessenger::SetNewValue(G4UIc 85 void Par04ParallelMessenger::SetNewValue(G4UIcommand* aCommand, G4String aNewValue) 88 { 86 { 89 if (aCommand == fPrintCmd) { << 87 if(aCommand == fPrintCmd) >> 88 { 90 fParallel->Print(); 89 fParallel->Print(); 91 } 90 } 92 else if (aCommand == fNbSlicesCmd) { << 91 else if(aCommand == fNbSlicesCmd) >> 92 { 93 fParallel->SetNbOfSlices(fNbSlicesCmd->Get 93 fParallel->SetNbOfSlices(fNbSlicesCmd->GetNewIntValue(aNewValue)); 94 } 94 } 95 else if (aCommand == fNbRowsCmd) { << 95 else if(aCommand == fNbRowsCmd) >> 96 { 96 fParallel->SetNbOfRows(fNbRowsCmd->GetNewI 97 fParallel->SetNbOfRows(fNbRowsCmd->GetNewIntValue(aNewValue)); 97 } 98 } 98 } 99 } 99 100 100 //....oooOO0OOooo........oooOO0OOooo........oo 101 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 101 102 102 G4String Par04ParallelMessenger::GetCurrentVal 103 G4String Par04ParallelMessenger::GetCurrentValue(G4UIcommand* aCommand) 103 { 104 { 104 G4String cv; 105 G4String cv; 105 106 106 if (aCommand == fNbSlicesCmd) { << 107 if(aCommand == fNbSlicesCmd) >> 108 { 107 cv = fNbSlicesCmd->ConvertToString(fParall 109 cv = fNbSlicesCmd->ConvertToString(fParallel->GetNbOfSlices()); 108 } 110 } 109 else if (aCommand == fNbRowsCmd) { << 111 else if(aCommand == fNbRowsCmd) >> 112 { 110 cv = fNbRowsCmd->ConvertToString(fParallel 113 cv = fNbRowsCmd->ConvertToString(fParallel->GetNbOfRows()); 111 } 114 } 112 return cv; 115 return cv; 113 } 116 } 114 117