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