Geant4 Cross Reference |
1 // 1 2 // ******************************************* 3 // * License and Disclaimer 4 // * 5 // * The Geant4 software is copyright of th 6 // * the Geant4 Collaboration. It is provided 7 // * conditions of the Geant4 Software License 8 // * LICENSE and available at http://cern.ch/ 9 // * include a list of copyright holders. 10 // * 11 // * Neither the authors of this software syst 12 // * institutes,nor the agencies providing fin 13 // * work make any representation or warran 14 // * regarding this software system or assum 15 // * use. Please see the license in the file 16 // * for the full disclaimer and the limitatio 17 // * 18 // * This code implementation is the result 19 // * technical work of the GEANT4 collaboratio 20 // * By using, copying, modifying or distri 21 // * any work based on the software) you ag 22 // * use in resulting scientific publicati 23 // * acceptance of all terms of the Geant4 Sof 24 // ******************************************* 25 // 26 /* 27 * =========================================== 28 * 29 * Filename: CexmcPrimaryGeneratorActio 30 * 31 * Description: user assigned gun paramete 32 * 33 * Version: 1.0 34 * Created: 02.11.2009 13:32:33 35 * Revision: none 36 * Compiler: gcc 37 * 38 * Author: Alexey Radkov (), 39 * Company: PNPI 40 * 41 * =========================================== 42 */ 43 44 #include <G4UIcmdWithADouble.hh> 45 #include <G4UIcmdWithADoubleAndUnit.hh> 46 #include "CexmcPrimaryGeneratorAction.hh" 47 #include "CexmcPrimaryGeneratorActionMessenger 48 #include "CexmcMessenger.hh" 49 50 51 CexmcPrimaryGeneratorActionMessenger::CexmcPri 52 CexmcPrimaryGeneratorAction * primary 53 primaryGeneratorAction( primaryGeneratorAc 54 fwhmPosX( NULL ), fwhmPosY( NULL ), fwhmDi 55 fwhmMomentumAmp( NULL ) 56 { 57 fwhmPosX = new G4UIcmdWithADoubleAndUnit( 58 ( CexmcMessenger::gunDirName + 59 fwhmPosX->SetGuidance( "Set positional fwh 60 fwhmPosX->SetParameterName( "FwhmPosX", fa 61 fwhmPosX->SetDefaultValue( 0 ); 62 fwhmPosX->SetUnitCandidates( "mm cm m" ); 63 fwhmPosX->SetDefaultUnit( "cm" ); 64 fwhmPosX->AvailableForStates( G4State_PreI 65 66 fwhmPosY = new G4UIcmdWithADoubleAndUnit( 67 ( CexmcMessenger::gunDirName + 68 fwhmPosY->SetGuidance( "Set positional fwh 69 fwhmPosY->SetParameterName( "FwhmPosY", fa 70 fwhmPosY->SetDefaultValue( 0 ); 71 fwhmPosY->SetUnitCandidates( "mm cm m" ); 72 fwhmPosY->SetDefaultUnit( "cm" ); 73 fwhmPosY->AvailableForStates( G4State_PreI 74 75 fwhmDirX = new G4UIcmdWithADoubleAndUnit( 76 ( CexmcMessenger::gunDirName + 77 fwhmDirX->SetGuidance( "Set directional fw 78 fwhmDirX->SetParameterName( "FwhmDirX", fa 79 fwhmDirX->SetDefaultValue( 0 ); 80 fwhmDirX->SetUnitCandidates( "deg rad" ); 81 fwhmDirX->SetDefaultUnit( "deg" ); 82 fwhmDirX->AvailableForStates( G4State_PreI 83 84 fwhmDirY = new G4UIcmdWithADoubleAndUnit( 85 ( CexmcMessenger::gunDirName + 86 fwhmDirY->SetGuidance( "Set directional fw 87 fwhmDirY->SetParameterName( "FwhmDirY", fa 88 fwhmDirY->SetDefaultValue( 0 ); 89 fwhmDirY->SetUnitCandidates( "deg rad" ); 90 fwhmDirY->SetDefaultUnit( "deg" ); 91 fwhmDirY->AvailableForStates( G4State_PreI 92 93 fwhmMomentumAmp = new G4UIcmdWithADouble( 94 ( CexmcMessenger::gunDirName + "fw 95 fwhmMomentumAmp->SetGuidance( "Set fwhm of 96 "of its valu 97 fwhmMomentumAmp->SetParameterName( "FwhmMo 98 fwhmMomentumAmp->SetDefaultValue( 0 ); 99 fwhmMomentumAmp->AvailableForStates( G4Sta 100 } 101 102 103 CexmcPrimaryGeneratorActionMessenger::~CexmcPr 104 { 105 delete fwhmPosX; 106 delete fwhmPosY; 107 delete fwhmDirX; 108 delete fwhmDirY; 109 delete fwhmMomentumAmp; 110 } 111 112 113 void CexmcPrimaryGeneratorActionMessenger::Se 114 115 { 116 do 117 { 118 if ( cmd == fwhmPosX ) 119 { 120 primaryGeneratorAction->SetFwhmPos 121 G4UIcmdWithADoubleAndU 122 break; 123 } 124 if ( cmd == fwhmPosY ) 125 { 126 primaryGeneratorAction->SetFwhmPos 127 G4UIcmdWithADoubleAndU 128 break; 129 } 130 if ( cmd == fwhmDirX ) 131 { 132 primaryGeneratorAction->SetFwhmDir 133 G4UIcmdWithADoubleAndU 134 break; 135 } 136 if ( cmd == fwhmDirY ) 137 { 138 primaryGeneratorAction->SetFwhmDir 139 G4UIcmdWithADoubleAndU 140 break; 141 } 142 if ( cmd == fwhmMomentumAmp ) 143 { 144 primaryGeneratorAction->SetFwhmMom 145 G4UIcmdWithADouble::Ge 146 break; 147 } 148 } while ( false ); 149 } 150 151