Geant4 10.7.0
Toolkit for the simulation of the passage of particles through matter
Loading...
Searching...
No Matches
G4EvManMessenger Class Reference

#include <G4EvManMessenger.hh>

+ Inheritance diagram for G4EvManMessenger:

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 ()
 
virtual G4String GetCurrentValue (G4UIcommand *command)
 
virtual void SetNewValue (G4UIcommand *command, G4String newValue)
 
G4bool operator== (const G4UImessenger &messenger) const
 
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)
 
G4long StoL (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 = nullptr
 
G4String baseDirName = ""
 
G4bool commandsShouldBeInMaster = false
 

Detailed Description

Definition at line 48 of file G4EvManMessenger.hh.

Constructor & Destructor Documentation

◆ G4EvManMessenger()

G4EvManMessenger::G4EvManMessenger ( G4EventManager fEvMan)

Definition at line 37 of file G4EvManMessenger.cc.

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 beginning of next run.");
58 storeEvtCmd->SetGuidance("Given the potential large memory size of G4Event and its data-member objects stored in G4Event,");
59 storeEvtCmd->SetGuidance("the user must be careful and responsible for not to store too many G4Event objects.");
61}
@ G4State_EventProc
void SetParameterName(const char *theName, G4bool omittable, G4bool currentAsDefault=false)
void SetGuidance(const char *aGuidance)
Definition: G4UIcommand.hh:156
void SetRange(const char *rs)
Definition: G4UIcommand.hh:120
void AvailableForStates(G4ApplicationState s1)
Definition: G4UIcommand.cc:273

◆ ~G4EvManMessenger()

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

◆ GetCurrentValue()

G4String G4EvManMessenger::GetCurrentValue ( G4UIcommand command)
virtual

Reimplemented from G4UImessenger.

Definition at line 81 of file G4EvManMessenger.cc.

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

◆ SetNewValue()

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

Reimplemented from G4UImessenger.

Definition at line 71 of file G4EvManMessenger.cc.

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}
void KeepTheCurrentEvent()
void SetVerboseLevel(G4int value)
void AbortCurrentEvent()
static G4int GetNewIntValue(const char *paramString)

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