Geant4.10
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
Public Member Functions
G4EvManMessenger Class Reference

#include <G4EvManMessenger.hh>

Inheritance diagram for G4EvManMessenger:
G4UImessenger

Public Member Functions

 G4EvManMessenger (G4EventManager *fEvMan)
 
 ~G4EvManMessenger ()
 
void SetNewValue (G4UIcommand *command, G4String newValues)
 
G4String GetCurrentValue (G4UIcommand *command)
 
- Public Member Functions inherited from G4UImessenger
 G4UImessenger ()
 
 G4UImessenger (const G4String &path, const G4String &dsc, G4bool commandsToBeBroadcasted=true)
 
virtual ~G4UImessenger ()
 
G4bool operator== (const G4UImessenger &messenger) 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
 

Detailed Description

Definition at line 48 of file G4EvManMessenger.hh.

Constructor & Destructor Documentation

G4EvManMessenger::G4EvManMessenger ( G4EventManager fEvMan)

Definition at line 37 of file G4EvManMessenger.cc.

References G4UIcommand::AvailableForStates(), G4State_EventProc, G4UIcommand::SetGuidance(), G4UIcmdWithAnInteger::SetParameterName(), and G4UIcommand::SetRange().

38 :fEvManager(fEvMan)
39 {
40  eventDirectory = new G4UIdirectory("/event/");
41  eventDirectory->SetGuidance("EventManager control commands.");
42 
43  abortCmd = new G4UIcmdWithoutParameter("/event/abort",this);
44  abortCmd->SetGuidance("Abort current event.");
46 
47  verboseCmd = new G4UIcmdWithAnInteger("/event/verbose",this);
48  verboseCmd->SetGuidance("Set Verbose level of event management category.");
49  verboseCmd->SetGuidance(" 0 : Silent");
50  verboseCmd->SetGuidance(" 1 : Stacking information");
51  verboseCmd->SetGuidance(" 2 : More...");
52  verboseCmd->SetParameterName("level",false);
53  verboseCmd->SetRange("level>=0");
54 
55  storeEvtCmd = new G4UIcmdWithoutParameter("/event/keepCurrentEvent",this);
56  storeEvtCmd->SetGuidance("Store the current event to G4Run object instead of deleting it at the end of event.");
57  storeEvtCmd->SetGuidance("Stored event is available through G4Run until the begining of next run.");
58  storeEvtCmd->SetGuidance("Given the potential large memory size of G4Event and its datamember objects stored in G4Event,");
59  storeEvtCmd->SetGuidance("the user must be careful and responsible for not to store too many G4Event objects.");
61 }
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:225
G4EvManMessenger::~G4EvManMessenger ( )

Definition at line 63 of file G4EvManMessenger.cc.

64 {
65  delete abortCmd;
66  delete verboseCmd;
67  delete storeEvtCmd;
68  delete eventDirectory;
69 }

Member Function Documentation

G4String G4EvManMessenger::GetCurrentValue ( G4UIcommand command)
virtual

Reimplemented from G4UImessenger.

Definition at line 81 of file G4EvManMessenger.cc.

References G4UIcommand::ConvertToString(), and G4EventManager::GetVerboseLevel().

82 {
83  G4String cv;
84  if( command == verboseCmd )
85  { cv = verboseCmd->ConvertToString(fEvManager->GetVerboseLevel()); }
86  return cv;
87 }
static G4String ConvertToString(G4bool boolVal)
Definition: G4UIcommand.cc:357
G4int GetVerboseLevel()
void G4EvManMessenger::SetNewValue ( G4UIcommand command,
G4String  newValues 
)
virtual

Reimplemented from G4UImessenger.

Definition at line 71 of file G4EvManMessenger.cc.

References G4EventManager::AbortCurrentEvent(), G4UIcmdWithAnInteger::GetNewIntValue(), G4EventManager::KeepTheCurrentEvent(), and G4EventManager::SetVerboseLevel().

72 {
73  if( command == verboseCmd )
74  { fEvManager->SetVerboseLevel(verboseCmd->GetNewIntValue(newValues)); }
75  if( command == abortCmd )
76  { fEvManager->AbortCurrentEvent(); }
77  if( command == storeEvtCmd )
78  { fEvManager->KeepTheCurrentEvent(); }
79 }
static G4int GetNewIntValue(const char *paramString)
void SetVerboseLevel(G4int value)
void AbortCurrentEvent()
void KeepTheCurrentEvent()

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