Geant4  10.02.p03
IORTEventActionMessenger Class Reference

#include <IORTEventActionMessenger.hh>

Inheritance diagram for IORTEventActionMessenger:
Collaboration diagram for IORTEventActionMessenger:

Public Member Functions

 IORTEventActionMessenger (IORTEventAction *)
 
 ~IORTEventActionMessenger ()
 
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

IORTEventActioneventAction
 
G4UIdirectoryeventDir
 
G4UIcmdWithAStringDrawCmd
 
G4UIcmdWithAnIntegerPrintCmd
 

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 51 of file IORTEventActionMessenger.hh.

Constructor & Destructor Documentation

◆ IORTEventActionMessenger()

IORTEventActionMessenger::IORTEventActionMessenger ( IORTEventAction EvAct)

Definition at line 49 of file IORTEventActionMessenger.cc.

50 :eventAction(EvAct)
51 {
52  eventDir = new G4UIdirectory("/event/");
53  eventDir->SetGuidance("Permits controls on simulation events");
54 
55  DrawCmd = new G4UIcmdWithAString("/event/drawTracks",this);
56  DrawCmd->SetGuidance("Draw the tracks in the event");
57  DrawCmd->SetGuidance(" Choice : none,charged, all, neutral");
58  DrawCmd->SetParameterName("choice",true);
59  DrawCmd->SetDefaultValue("all");
60  DrawCmd->SetCandidates("none charged all neutral");
62 
63  PrintCmd = new G4UIcmdWithAnInteger("/event/printEventNumber",this);
64  PrintCmd->SetGuidance("Print the event number of modulo n");
65  PrintCmd->SetParameterName("EventNb",false);
66  PrintCmd->SetRange("EventNb>0");
68 }
void SetParameterName(const char *theName, G4bool omittable, G4bool currentAsDefault=false)
void SetParameterName(const char *theName, G4bool omittable, G4bool currentAsDefault=false)
G4UIcmdWithAnInteger * PrintCmd
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)
void SetCandidates(const char *candidateList)
Here is the call graph for this function:

◆ ~IORTEventActionMessenger()

IORTEventActionMessenger::~IORTEventActionMessenger ( )

Definition at line 71 of file IORTEventActionMessenger.cc.

72 {
73  delete DrawCmd;
74  delete PrintCmd;
75  delete eventDir;
76 }
G4UIcmdWithAnInteger * PrintCmd

Member Function Documentation

◆ SetNewValue()

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

Reimplemented from G4UImessenger.

Definition at line 79 of file IORTEventActionMessenger.cc.

81 {
82  if(command == DrawCmd)
83  {eventAction->SetDrawFlag(newValue);}
84 
85  if(command == PrintCmd)
87  }
void SetPrintModulo(G4int val)
static G4int GetNewIntValue(const char *paramString)
G4UIcmdWithAnInteger * PrintCmd
void SetDrawFlag(G4String val)
Here is the call graph for this function:

Member Data Documentation

◆ DrawCmd

G4UIcmdWithAString* IORTEventActionMessenger::DrawCmd
private

Definition at line 62 of file IORTEventActionMessenger.hh.

◆ eventAction

IORTEventAction* IORTEventActionMessenger::eventAction
private

Definition at line 60 of file IORTEventActionMessenger.hh.

◆ eventDir

G4UIdirectory* IORTEventActionMessenger::eventDir
private

Definition at line 61 of file IORTEventActionMessenger.hh.

◆ PrintCmd

G4UIcmdWithAnInteger* IORTEventActionMessenger::PrintCmd
private

Definition at line 63 of file IORTEventActionMessenger.hh.


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