Geant4.10
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
extended/electromagnetic/TestEm3/src/PrimaryGeneratorMessenger.cc
Go to the documentation of this file.
1 //
2 // ********************************************************************
3 // * License and Disclaimer *
4 // * *
5 // * The Geant4 software is copyright of the Copyright Holders of *
6 // * the Geant4 Collaboration. It is provided under the terms and *
7 // * conditions of the Geant4 Software License, included in the file *
8 // * LICENSE and available at http://cern.ch/geant4/license . These *
9 // * include a list of copyright holders. *
10 // * *
11 // * Neither the authors of this software system, nor their employing *
12 // * institutes,nor the agencies providing financial support for this *
13 // * work make any representation or warranty, express or implied, *
14 // * regarding this software system or assume any liability for its *
15 // * use. Please see the license in the file LICENSE and URL above *
16 // * for the full disclaimer and the limitation of liability. *
17 // * *
18 // * This code implementation is the result of the scientific and *
19 // * technical work of the GEANT4 collaboration. *
20 // * By using, copying, modifying or distributing the software (or *
21 // * any work based on the software) you agree to acknowledge its *
22 // * use in resulting scientific publications, and indicate your *
23 // * acceptance of all terms of the Geant4 Software license. *
24 // ********************************************************************
25 //
26 /// \file electromagnetic/TestEm3/src/PrimaryGeneratorMessenger.cc
27 /// \brief Implementation of the PrimaryGeneratorMessenger class
28 //
29 // $Id: PrimaryGeneratorMessenger.cc 67268 2013-02-13 11:38:40Z ihrivnac $
30 //
31 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
32 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
33 
34 #include "PrimaryGeneratorMessenger.hh"
35 
36 #include "PrimaryGeneratorAction.hh"
37 #include "G4UIdirectory.hh"
39 #include "G4UIcmdWithADouble.hh"
40 
41 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
42 
45 :G4UImessenger(),fAction(Gun),
46  fGunDir(0),
47  fDefaultCmd(0),
48  fRndmCmd(0)
49 {
50  fGunDir = new G4UIdirectory("/testem/gun/");
51  fGunDir->SetGuidance("gun control");
52 
53  fDefaultCmd = new G4UIcmdWithoutParameter("/testem/gun/setDefault",this);
54  fDefaultCmd->SetGuidance("set/reset kinematic defined in PrimaryGenerator");
56 
57  fRndmCmd = new G4UIcmdWithADouble("/testem/gun/rndm",this);
58  fRndmCmd->SetGuidance("random lateral extension on the beam");
59  fRndmCmd->SetGuidance("in fraction of 0.5*sizeYZ");
60  fRndmCmd->SetParameterName("rBeam",false);
61  fRndmCmd->SetRange("rBeam>=0.&&rBeam<=1.");
62  fRndmCmd->AvailableForStates(G4State_Idle);
63 }
64 
65 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
66 
68 {
69  delete fDefaultCmd;
70  delete fRndmCmd;
71  delete fGunDir;
72 }
73 
74 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
75 
77  G4String newValue)
78 {
79  if( command == fDefaultCmd )
80  { fAction->SetDefaultKinematic();}
81 
82  if( command == fRndmCmd )
83  { fAction->SetRndmBeam(fRndmCmd->GetNewDoubleValue(newValue));}
84 }
85 
86 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
87 
static G4double GetNewDoubleValue(const char *paramString)
void SetRange(const char *rs)
Definition: G4UIcommand.hh:125
void SetGuidance(const char *aGuidance)
Definition: G4UIcommand.hh:161
void AvailableForStates(G4ApplicationState s1)
Definition: G4UIcommand.cc:225
void SetParameterName(const char *theName, G4bool omittable, G4bool currentAsDefault=false)