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

#include <F03EventActionMessenger.hh>

Inheritance diagram for F03EventActionMessenger:
G4UImessenger

Public Member Functions

 F03EventActionMessenger (F03EventAction *)
 
virtual ~F03EventActionMessenger ()
 
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
 

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 46 of file F03EventActionMessenger.hh.

Constructor & Destructor Documentation

F03EventActionMessenger::F03EventActionMessenger ( F03EventAction evAct)

Definition at line 43 of file F03EventActionMessenger.cc.

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

44  : G4UImessenger(),
45  fEventAction(evAct),
46  fSetVerboseCmd(0),
47  fPrintCmd(0)
48 {
49  fSetVerboseCmd = new G4UIcmdWithAnInteger("/event/setverbose",this);
50  fSetVerboseCmd->SetGuidance("Set verbose level .");
51  fSetVerboseCmd->SetParameterName("level",true);
52  fSetVerboseCmd->SetDefaultValue(0);
53 
54  fPrintCmd = new G4UIcmdWithAnInteger("/event/printModulo",this);
55  fPrintCmd->SetGuidance("Print events modulo n");
56  fPrintCmd->SetParameterName("EventNb",false);
57  fPrintCmd->SetRange("EventNb>0");
58  fPrintCmd->AvailableForStates(G4State_Idle);
59 }
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
void SetDefaultValue(G4int defVal)
F03EventActionMessenger::~F03EventActionMessenger ( )
virtual

Definition at line 63 of file F03EventActionMessenger.cc.

64 {
65  delete fSetVerboseCmd;
66  delete fPrintCmd;
67 }

Member Function Documentation

void F03EventActionMessenger::SetNewValue ( G4UIcommand command,
G4String  newValue 
)
virtual

Reimplemented from G4UImessenger.

Definition at line 71 of file F03EventActionMessenger.cc.

References G4UIcmdWithAnInteger::GetNewIntValue(), F03EventAction::SetEventVerbose(), and F03EventAction::SetPrintModulo().

73 {
74  if(command == fSetVerboseCmd)
75  {fEventAction->SetEventVerbose(fSetVerboseCmd->GetNewIntValue(newValue));}
76 
77  if(command == fPrintCmd)
78  {fEventAction->SetPrintModulo(fPrintCmd->GetNewIntValue(newValue));}
79 }
static G4int GetNewIntValue(const char *paramString)
void SetEventVerbose(G4int level)
void SetPrintModulo(G4int val)

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