Geant4  10.02.p03
F03RunMessenger Class Reference

#include <F03RunMessenger.hh>

Inheritance diagram for F03RunMessenger:
Collaboration diagram for F03RunMessenger:

Public Member Functions

 F03RunMessenger (F03RunAction *)
 
virtual ~F03RunMessenger ()
 
virtual void SetNewValue (G4UIcommand *, G4String)
 
- Public Member Functions inherited from G4UImessenger
 G4UImessenger ()
 
 G4UImessenger (const G4String &path, const G4String &dsc, G4bool commandsToBeBroadcasted=true)
 
virtual ~G4UImessenger ()
 
virtual G4String GetCurrentValue (G4UIcommand *command)
 
G4bool operator== (const G4UImessenger &messenger) const
 
G4bool CommandsShouldBeInMaster () const
 

Private Attributes

F03RunActionfRunAction
 
G4UIdirectoryfRndmDir
 
G4UIcmdWithAnIntegerfRndmSaveCmd
 
G4UIcmdWithAStringfRndmReadCmd
 

Additional Inherited Members

- Protected Member Functions inherited from G4UImessenger
G4String ItoS (G4int i)
 
G4String DtoS (G4double a)
 
G4String BtoS (G4bool b)
 
G4int StoI (G4String s)
 
G4double StoD (G4String s)
 
G4bool StoB (G4String s)
 
void AddUIcommand (G4UIcommand *newCommand)
 
void CreateDirectory (const G4String &path, const G4String &dsc, G4bool commandsToBeBroadcasted=true)
 
template<typename T >
T * CreateCommand (const G4String &cname, const G4String &dsc)
 
- Protected Attributes inherited from G4UImessenger
G4UIdirectorybaseDir
 
G4String baseDirName
 
G4bool commandsShouldBeInMaster
 

Detailed Description

Definition at line 48 of file F03RunMessenger.hh.

Constructor & Destructor Documentation

◆ F03RunMessenger()

F03RunMessenger::F03RunMessenger ( F03RunAction action)

Definition at line 45 of file F03RunMessenger.cc.

46  : G4UImessenger(),
47  fRunAction(action),
48  fRndmDir(0),
49  fRndmSaveCmd(0),
50  fRndmReadCmd(0)
51 {
52  fRndmDir = new G4UIdirectory("/rndm/");
53  fRndmDir->SetGuidance("Rndm status control.");
54 
55  fRndmSaveCmd = new G4UIcmdWithAnInteger("/rndm/save",this);
56  fRndmSaveCmd->
57  SetGuidance("set frequency to save rndm status on external files.");
58  fRndmSaveCmd->SetGuidance("freq = 0 not saved");
59  fRndmSaveCmd->SetGuidance("freq > 0 saved on: beginOfRun.rndm");
60  fRndmSaveCmd->SetGuidance("freq = 1 saved on: endOfRun.rndm");
61  fRndmSaveCmd->SetGuidance("freq = 2 saved on: endOfEvent.rndm");
62  fRndmSaveCmd->SetParameterName("frequency",false);
63  fRndmSaveCmd->SetRange("frequency>=0 && frequency<=2");
65 
66  fRndmReadCmd = new G4UIcmdWithAString("/rndm/read",this);
67  fRndmReadCmd->SetGuidance("get rndm status from an external file.");
68  fRndmReadCmd->SetParameterName("fileName",true);
69  fRndmReadCmd->SetDefaultValue ("beginOfRun.rndm");
71 }
void SetParameterName(const char *theName, G4bool omittable, G4bool currentAsDefault=false)
void SetParameterName(const char *theName, G4bool omittable, G4bool currentAsDefault=false)
F03RunAction * fRunAction
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:239
void SetDefaultValue(const char *defVal)
G4UIdirectory * fRndmDir
G4UIcmdWithAnInteger * fRndmSaveCmd
G4UIcmdWithAString * fRndmReadCmd
Here is the call graph for this function:

◆ ~F03RunMessenger()

F03RunMessenger::~F03RunMessenger ( )
virtual

Definition at line 75 of file F03RunMessenger.cc.

76 {
77  delete fRndmSaveCmd;
78  delete fRndmReadCmd;
79  delete fRndmDir;
80 }
G4UIdirectory * fRndmDir
G4UIcmdWithAnInteger * fRndmSaveCmd
G4UIcmdWithAString * fRndmReadCmd

Member Function Documentation

◆ SetNewValue()

void F03RunMessenger::SetNewValue ( G4UIcommand command,
G4String  newValues 
)
virtual

Reimplemented from G4UImessenger.

Definition at line 84 of file F03RunMessenger.cc.

85 {
86  if (command == fRndmSaveCmd)
88 
89  if (command == fRndmReadCmd)
90  {G4cout << "\n---> rndm status restored from file: " << newValues << G4endl;
91  G4Random::restoreEngineStatus(newValues);
92  G4Random::showEngineStatus();
93  }
94 }
static G4int GetNewIntValue(const char *paramString)
F03RunAction * fRunAction
G4GLOB_DLL std::ostream G4cout
void SetRndmFreq(G4int val)
Definition: F03RunAction.hh:56
#define G4endl
Definition: G4ios.hh:61
G4UIcmdWithAnInteger * fRndmSaveCmd
G4UIcmdWithAString * fRndmReadCmd
Here is the call graph for this function:

Member Data Documentation

◆ fRndmDir

G4UIdirectory* F03RunMessenger::fRndmDir
private

Definition at line 61 of file F03RunMessenger.hh.

◆ fRndmReadCmd

G4UIcmdWithAString* F03RunMessenger::fRndmReadCmd
private

Definition at line 64 of file F03RunMessenger.hh.

◆ fRndmSaveCmd

G4UIcmdWithAnInteger* F03RunMessenger::fRndmSaveCmd
private

Definition at line 63 of file F03RunMessenger.hh.

◆ fRunAction

F03RunAction* F03RunMessenger::fRunAction
private

Definition at line 59 of file F03RunMessenger.hh.


The documentation for this class was generated from the following files: