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 // 26 // >> 27 // $Id: XrayFluoMercuryPrimarygeneratorMessenger.cc >> 28 // GEANT4 tag $Name: 27 // 29 // 28 // Author: Alfonso Mantero (Alfonso.mantero@ge 30 // Author: Alfonso Mantero (Alfonso.mantero@ge.infn.it) 29 // 31 // 30 // History: 32 // History: 31 // ----------- 33 // ----------- 32 // 19 Sep 2003 Alfonso Mantero created 34 // 19 Sep 2003 Alfonso Mantero created 33 // 35 // 34 // ------------------------------------------- 36 // ------------------------------------------------------------------- 35 37 36 #include "XrayFluoMercuryPrimaryGeneratorMesse 38 #include "XrayFluoMercuryPrimaryGeneratorMessenger.hh" 37 #include "XrayFluoMercuryPrimaryGeneratorActio 39 #include "XrayFluoMercuryPrimaryGeneratorAction.hh" 38 #include "G4UIcmdWithAString.hh" 40 #include "G4UIcmdWithAString.hh" 39 #include "G4UIcmdWithABool.hh" 41 #include "G4UIcmdWithABool.hh" 40 42 41 //....oooOO0OOooo........oooOO0OOooo........oo 43 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... 42 44 43 XrayFluoMercuryPrimaryGeneratorMessenger::Xray 45 XrayFluoMercuryPrimaryGeneratorMessenger::XrayFluoMercuryPrimaryGeneratorMessenger(XrayFluoMercuryPrimaryGeneratorAction* XrayFluoGun) 44 :XrayFluoAction(XrayFluoGun) 46 :XrayFluoAction(XrayFluoGun) 45 { 47 { 46 spectrum = new G4UIcmdWithAString("/gun/spec 48 spectrum = new G4UIcmdWithAString("/gun/spectrum",this); 47 spectrum->SetGuidance("Shoot the incident pa 49 spectrum->SetGuidance("Shoot the incident particle with a certain energy spectrum."); 48 spectrum->SetGuidance(" Choice : on(default 50 spectrum->SetGuidance(" Choice : on(default), off"); 49 spectrum->SetParameterName("choice",true); 51 spectrum->SetParameterName("choice",true); 50 spectrum->SetDefaultValue("on"); 52 spectrum->SetDefaultValue("on"); 51 spectrum->SetCandidates("on off"); 53 spectrum->SetCandidates("on off"); 52 spectrum->AvailableForStates(G4State_PreInit 54 spectrum->AvailableForStates(G4State_PreInit,G4State_Idle); 53 55 54 globalCmd = new G4UIcmdWithABool("/gun/globa 56 globalCmd = new G4UIcmdWithABool("/gun/globalIllumunation",this); 55 globalCmd->SetGuidance("Illuminate the entir 57 globalCmd->SetGuidance("Illuminate the entire Mercury globe, not only the area seen by the optics"); 56 globalCmd->SetGuidance("Choice : true, 1, fa 58 globalCmd->SetGuidance("Choice : true, 1, false, 0"); 57 globalCmd->SetParameterName("illuminaton",tr 59 globalCmd->SetParameterName("illuminaton",true); 58 globalCmd->SetDefaultValue("false"); 60 globalCmd->SetDefaultValue("false"); 59 globalCmd->AvailableForStates(G4State_PreIni 61 globalCmd->AvailableForStates(G4State_PreInit,G4State_Idle); 60 62 61 G4cout << "XrayFluoMercuryPrimaryGeneratorMe 63 G4cout << "XrayFluoMercuryPrimaryGeneratorMessenger created" << G4endl; 62 64 63 } 65 } 64 66 65 //....oooOO0OOooo........oooOO0OOooo........oo 67 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... 66 68 67 XrayFluoMercuryPrimaryGeneratorMessenger::~Xra 69 XrayFluoMercuryPrimaryGeneratorMessenger::~XrayFluoMercuryPrimaryGeneratorMessenger() 68 { 70 { 69 delete spectrum; 71 delete spectrum; 70 delete globalCmd; 72 delete globalCmd; 71 73 72 G4cout << "XrayFluoMercuryPrimaryGeneratorMe 74 G4cout << "XrayFluoMercuryPrimaryGeneratorMessenger deleted" << G4endl; 73 75 74 } 76 } 75 77 76 //....oooOO0OOooo........oooOO0OOooo........oo 78 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... 77 79 78 void XrayFluoMercuryPrimaryGeneratorMessenger: 80 void XrayFluoMercuryPrimaryGeneratorMessenger::SetNewValue(G4UIcommand * command,G4String newValue) 79 { 81 { 80 82 81 if( command == spectrum ) 83 if( command == spectrum ) 82 { XrayFluoAction->SetSpectrum(newValue);} 84 { XrayFluoAction->SetSpectrum(newValue);} 83 85 84 if( command == globalCmd ) 86 if( command == globalCmd ) 85 { 87 { 86 G4bool newGlobalFlag = globalCmd->GetNew 88 G4bool newGlobalFlag = globalCmd->GetNewBoolValue(newValue); 87 XrayFluoAction->SetGlobalFlag(newGlobalF 89 XrayFluoAction->SetGlobalFlag(newGlobalFlag); 88 } 90 } 89 } 91 } 90 92 91 //....oooOO0OOooo........oooOO0OOooo........oo 93 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... 92 94 93 95