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: XrayFluoDetectorMessenger.cc >> 28 // GEANT4 tag $Name: xray_fluo-V03-02-00 27 // 29 // 28 // Author: Elena Guardincerri (Elena.Guardince 30 // Author: Elena Guardincerri (Elena.Guardincerri@ge.infn.it) 29 // 31 // 30 // History: 32 // History: 31 // ----------- 33 // ----------- 32 // 28 Nov 2001 Elena Guardincerri Created 34 // 28 Nov 2001 Elena Guardincerri Created 33 // 35 // 34 // ------------------------------------------- 36 // ------------------------------------------------------------------- 35 37 36 #include "XrayFluoDetectorMessenger.hh" 38 #include "XrayFluoDetectorMessenger.hh" 37 #include "XrayFluoDetectorConstruction.hh" 39 #include "XrayFluoDetectorConstruction.hh" 38 #include "G4RunManager.hh" 40 #include "G4RunManager.hh" 39 #include "G4UIdirectory.hh" 41 #include "G4UIdirectory.hh" 40 #include "G4UIcmdWithAString.hh" 42 #include "G4UIcmdWithAString.hh" 41 #include "G4UIcmdWithADoubleAndUnit.hh" 43 #include "G4UIcmdWithADoubleAndUnit.hh" 42 #include "G4UIcmdWithoutParameter.hh" 44 #include "G4UIcmdWithoutParameter.hh" 43 #include "G4UIcmdWithABool.hh" 45 #include "G4UIcmdWithABool.hh" 44 46 45 //....oooOO0OOooo........oooOO0OOooo........oo 47 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... 46 48 47 XrayFluoDetectorMessenger::XrayFluoDetectorMes 49 XrayFluoDetectorMessenger::XrayFluoDetectorMessenger(XrayFluoDetectorConstruction * Det) 48 :Detector(Det) 50 :Detector(Det) 49 { 51 { 50 detDir = new G4UIdirectory("/apparate/"); 52 detDir = new G4UIdirectory("/apparate/"); 51 detDir->SetGuidance("detector control."); 53 detDir->SetGuidance("detector control."); 52 54 53 UpdateCmd = new G4UIcmdWithoutParameter("/ap 55 UpdateCmd = new G4UIcmdWithoutParameter("/apparate/update",this); 54 UpdateCmd->SetGuidance("Update apparate geom 56 UpdateCmd->SetGuidance("Update apparate geometry."); 55 UpdateCmd->SetGuidance("This command MUST be 57 UpdateCmd->SetGuidance("This command MUST be applied before \"beamOn\" "); 56 UpdateCmd->SetGuidance("if you changed geome 58 UpdateCmd->SetGuidance("if you changed geometrical value(s): /apparate/GrainDiameter and /apparate/sampleGranularity"); 57 59 58 UpdateCmd->AvailableForStates(G4State_Idle); 60 UpdateCmd->AvailableForStates(G4State_Idle); 59 61 60 sampleCmd = new G4UIcmdWithAString("/apparat 62 sampleCmd = new G4UIcmdWithAString("/apparate/sampleMaterial",this); 61 sampleCmd->SetGuidance("select a diferent ma 63 sampleCmd->SetGuidance("select a diferent material for the sample: materials can be: Dolorite, Anorthosite, Mars1, HawaiianWD, HawaiianRF, IceBasalt, IcelandicWD, IcelandicRF, Gabbro, GabbroWD, GabbroRF, HPGe OR choosen from Nist database (see /material/nist/listMaterials for details"); 62 sampleCmd->SetParameterName("material",true) 64 sampleCmd->SetParameterName("material",true); 63 sampleCmd->SetDefaultValue("mars1"); 65 sampleCmd->SetDefaultValue("mars1"); 64 sampleCmd->AvailableForStates(G4State_Idle); 66 sampleCmd->AvailableForStates(G4State_Idle); 65 67 66 detectorCmd = new G4UIcmdWithAString("/appar 68 detectorCmd = new G4UIcmdWithAString("/apparate/detector",this); 67 detectorCmd->SetGuidance("select a diferent 69 detectorCmd->SetGuidance("select a diferent detectorType"); 68 detectorCmd->SetParameterName("detector",tru 70 detectorCmd->SetParameterName("detector",true); 69 detectorCmd->SetDefaultValue("sili"); 71 detectorCmd->SetDefaultValue("sili"); 70 detectorCmd->SetCandidates("sili hpge"); 72 detectorCmd->SetCandidates("sili hpge"); 71 detectorCmd->AvailableForStates(G4State_Idle 73 detectorCmd->AvailableForStates(G4State_Idle); 72 74 73 grainDiaCmd = new G4UIcmdWithADoubleAndUnit( 75 grainDiaCmd = new G4UIcmdWithADoubleAndUnit( "/apparate/GrainDiameter",this ); 74 grainDiaCmd->SetGuidance( "Set diameter of g 76 grainDiaCmd->SetGuidance( "Set diameter of grains" ); 75 grainDiaCmd->SetGuidance( "After this, /appa 77 grainDiaCmd->SetGuidance( "After this, /apparate/update must be executed before BeamOn" ); 76 grainDiaCmd->SetGuidance( "Default: 0.5 mm " 78 grainDiaCmd->SetGuidance( "Default: 0.5 mm " ); 77 grainDiaCmd->SetParameterName( "Grain Diamet 79 grainDiaCmd->SetParameterName( "Grain Diameter", true, true ); 78 grainDiaCmd->SetDefaultUnit( "mm" ); 80 grainDiaCmd->SetDefaultUnit( "mm" ); 79 grainDiaCmd->SetUnitCategory( "Length" ); 81 grainDiaCmd->SetUnitCategory( "Length" ); 80 grainDiaCmd->AvailableForStates(G4State_Idle 82 grainDiaCmd->AvailableForStates(G4State_Idle); 81 83 82 granularityFlagCmd= new G4UIcmdWithABool("/a 84 granularityFlagCmd= new G4UIcmdWithABool("/apparate/sampleGranularity",this); 83 granularityFlagCmd->SetGuidance("Set if samp 85 granularityFlagCmd->SetGuidance("Set if sample granularity is present"); 84 granularityFlagCmd->SetGuidance( "After this 86 granularityFlagCmd->SetGuidance( "After this, /apparate/update must be executed before BeamOn" ); 85 granularityFlagCmd->SetParameterName("Granul 87 granularityFlagCmd->SetParameterName("Granularity Flag",true); 86 granularityFlagCmd->SetDefaultValue(false); 88 granularityFlagCmd->SetDefaultValue(false); 87 granularityFlagCmd->AvailableForStates(G4Sta 89 granularityFlagCmd->AvailableForStates(G4State_Idle); 88 90 89 OhmicPosThicknessCmd = new G4UIcmdWithADoubl 91 OhmicPosThicknessCmd = new G4UIcmdWithADoubleAndUnit( "/apparate/ohmicPosThickness",this ); 90 OhmicPosThicknessCmd->SetGuidance( "Changes 92 OhmicPosThicknessCmd->SetGuidance( "Changes thickness of the detector anode" ); 91 OhmicPosThicknessCmd->SetGuidance( "After th 93 OhmicPosThicknessCmd->SetGuidance( "After this, /apparate/update must be executed before BeamOn" ); 92 OhmicPosThicknessCmd->SetGuidance( "Default: 94 OhmicPosThicknessCmd->SetGuidance( "Default: 0.005 mm " ); 93 OhmicPosThicknessCmd->SetParameterName( "Ohm 95 OhmicPosThicknessCmd->SetParameterName( "OhmicPos Thickness", true, true ); 94 OhmicPosThicknessCmd->SetDefaultUnit( "mm" ) 96 OhmicPosThicknessCmd->SetDefaultUnit( "mm" ); 95 OhmicPosThicknessCmd->SetUnitCategory( "Leng 97 OhmicPosThicknessCmd->SetUnitCategory( "Length" ); 96 OhmicPosThicknessCmd->AvailableForStates(G4S 98 OhmicPosThicknessCmd->AvailableForStates(G4State_Idle); 97 } 99 } 98 100 99 //....oooOO0OOooo........oooOO0OOooo........oo 101 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... 100 102 101 XrayFluoDetectorMessenger::~XrayFluoDetectorM 103 XrayFluoDetectorMessenger::~XrayFluoDetectorMessenger() 102 { 104 { 103 delete UpdateCmd; 105 delete UpdateCmd; 104 delete detDir; 106 delete detDir; 105 } 107 } 106 108 107 //....oooOO0OOooo........oooOO0OOooo........oo 109 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... 108 110 109 void XrayFluoDetectorMessenger::SetNewValue(G4 111 void XrayFluoDetectorMessenger::SetNewValue(G4UIcommand* command,G4String newValue) 110 { 112 { 111 if( command == UpdateCmd ) 113 if( command == UpdateCmd ) 112 { 114 { 113 //This triggers a full re-build of the ge 115 //This triggers a full re-build of the geometry. The method in the 114 //geometry will take care of that. 116 //geometry will take care of that. 115 Detector->UpdateGeometry(); 117 Detector->UpdateGeometry(); 116 return; 118 return; 117 } 119 } 118 else if ( command == sampleCmd ) 120 else if ( command == sampleCmd ) 119 { 121 { 120 Detector->SetSampleMaterial(newValue); 122 Detector->SetSampleMaterial(newValue); 121 } 123 } 122 124 123 else if ( command == detectorCmd ) 125 else if ( command == detectorCmd ) 124 { 126 { 125 Detector->SetDetectorType(newValue); 127 Detector->SetDetectorType(newValue); 126 } 128 } 127 else if ( command == grainDiaCmd ) 129 else if ( command == grainDiaCmd ) 128 { 130 { 129 G4double newSize = grainDiaCmd->GetNewDou 131 G4double newSize = grainDiaCmd->GetNewDoubleValue(newValue); 130 Detector->SetGrainDia(newSize); 132 Detector->SetGrainDia(newSize); 131 } 133 } 132 134 133 else if ( command == granularityFlagCmd ) 135 else if ( command == granularityFlagCmd ) 134 { 136 { 135 Detector->DeleteGrainObjects(); 137 Detector->DeleteGrainObjects(); 136 G4bool newGranFlag = granularityFlagCmd-> 138 G4bool newGranFlag = granularityFlagCmd->GetNewBoolValue(newValue); 137 Detector->SetSampleGranularity(newGranFla 139 Detector->SetSampleGranularity(newGranFlag); 138 } 140 } 139 else if ( command == OhmicPosThicknessCmd ) 141 else if ( command == OhmicPosThicknessCmd ) 140 { 142 { 141 G4double newSize = OhmicPosThicknessCmd-> 143 G4double newSize = OhmicPosThicknessCmd->GetNewDoubleValue(newValue); 142 Detector->SetOhmicPosThickness(newSize); 144 Detector->SetOhmicPosThickness(newSize); 143 } 145 } 144 //Notify the run manager that the geometry ha 146 //Notify the run manager that the geometry has been modified 145 G4RunManager::GetRunManager()->GeometryHasBee 147 G4RunManager::GetRunManager()->GeometryHasBeenModified(); 146 } 148 } 147 149 148 150 149 151 150 //....oooOO0OOooo........oooOO0OOooo........oo 152 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... 151 153 152 154 153 155 154 156 155 157 156 158 157 159 158 160 159 161 160 162