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

#include <WLSEventActionMessenger.hh>

Inheritance diagram for WLSEventActionMessenger:
G4UImessenger

Public Member Functions

 WLSEventActionMessenger (WLSEventAction *)
 
virtual ~WLSEventActionMessenger ()
 
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 45 of file WLSEventActionMessenger.hh.

Constructor & Destructor Documentation

WLSEventActionMessenger::WLSEventActionMessenger ( WLSEventAction eventaction)

Definition at line 42 of file WLSEventActionMessenger.cc.

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

43  : fEventAction(eventaction)
44 {
45  fSetVerboseCmd = new G4UIcmdWithAnInteger("/event/setverbose",this);
46  fSetVerboseCmd->SetGuidance("Set verbose level ." );
47  fSetVerboseCmd->SetParameterName("level",true);
48  fSetVerboseCmd->SetDefaultValue(0);
49 
50  fDrawCmd = new G4UIcmdWithAString("/event/drawTracks",this);
51  fDrawCmd->SetGuidance("Draw the tracks in the event");
52  fDrawCmd->SetGuidance(" Choice : none,charged, all");
53  fDrawCmd->SetParameterName("choice",true);
54  fDrawCmd->SetDefaultValue("all");
55  fDrawCmd->SetCandidates("none charged all");
57 
58  fPrintCmd = new G4UIcmdWithAnInteger("/event/printModulo",this);
59  fPrintCmd->SetGuidance("Print events modulo n");
60  fPrintCmd->SetParameterName("EventNb",false);
61  fPrintCmd->SetRange("EventNb>0");
62  fPrintCmd->AvailableForStates(G4State_Idle);
63 }
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:225
void SetDefaultValue(const char *defVal)
void SetCandidates(const char *candidateList)
void SetDefaultValue(G4int defVal)
WLSEventActionMessenger::~WLSEventActionMessenger ( )
virtual

Definition at line 67 of file WLSEventActionMessenger.cc.

68 {
69  delete fSetVerboseCmd;
70  delete fDrawCmd;
71  delete fPrintCmd;
72 }

Member Function Documentation

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

Reimplemented from G4UImessenger.

Definition at line 76 of file WLSEventActionMessenger.cc.

References G4UIcmdWithAnInteger::GetNewIntValue(), WLSEventAction::SetDrawFlag(), WLSEventAction::SetEventVerbose(), and WLSEventAction::SetPrintModulo().

78 {
79  if (command == fSetVerboseCmd)
80  fEventAction->SetEventVerbose(fSetVerboseCmd->GetNewIntValue(newValue));
81 
82  if (command == fDrawCmd)
83  fEventAction->SetDrawFlag(newValue);
84 
85  if (command == fPrintCmd)
86  fEventAction->SetPrintModulo(fPrintCmd->GetNewIntValue(newValue));
87 }
void SetEventVerbose(G4int)
static G4int GetNewIntValue(const char *paramString)
void SetDrawFlag(G4String val)
void SetPrintModulo(G4int val)

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