Geant4  10.03.p02
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
RunMessenger Class Reference

#include <RunMessenger.hh>

Inheritance diagram for RunMessenger:
Collaboration diagram for RunMessenger:

Public Member Functions

 RunMessenger (RunAction *runAction)
 
 ~RunMessenger ()
 
virtual void SetNewValue (G4UIcommand *, G4String)
 
 RunMessenger (RunAction *)
 
virtual ~RunMessenger ()
 
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
 

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 53 of file RunMessenger.hh.

Constructor & Destructor Documentation

RunMessenger::RunMessenger ( RunAction runAction)

Definition at line 48 of file RunMessenger.cc.

49  : G4UImessenger(),
50  fRunAction(runAction),
51  fRndmDir(0), fRndmSaveCmd(0), fRndmReadCmd(0)
52 {
53  fRndmDir = new G4UIdirectory("/rndm/");
54  fRndmDir->SetGuidance("Rndm status control.");
55 
56  fRndmSaveCmd = new G4UIcmdWithAnInteger("/rndm/save",this);
57  fRndmSaveCmd->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)
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:240
void SetDefaultValue(const char *defVal)

Here is the call graph for this function:

RunMessenger::~RunMessenger ( )

Definition at line 75 of file RunMessenger.cc.

76 {
77  delete fRndmSaveCmd;
78  delete fRndmReadCmd;
79  delete fRndmDir;
80 }
RunMessenger::RunMessenger ( RunAction )
virtual RunMessenger::~RunMessenger ( )
virtual

Member Function Documentation

void RunMessenger::SetNewValue ( G4UIcommand ,
G4String   
)
virtual

Reimplemented from G4UImessenger.

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

Reimplemented from G4UImessenger.

Definition at line 84 of file RunMessenger.cc.

85 {
86  if (command == fRndmSaveCmd) {
87  fRunAction->SetRndmFreq(fRndmSaveCmd->GetNewIntValue(newValues));
88  }
89 
90  if (command == fRndmReadCmd) {
91  G4cout << "\n---> rndm status restored from file: " << newValues << G4endl;
94  }
95 }
static void restoreEngineStatus(const char filename[]="Config.conf")
Definition: Random.cc:280
static G4int GetNewIntValue(const char *paramString)
G4GLOB_DLL std::ostream G4cout
static void showEngineStatus()
Definition: Random.cc:303
#define G4endl
Definition: G4ios.hh:61
void SetRndmFreq(G4int val)
Definition: RunAction.hh:57

Here is the call graph for this function:


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