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

#include <XrayFluoEventActionMessenger.hh>

Inheritance diagram for XrayFluoEventActionMessenger:
G4UImessenger

Public Member Functions

 XrayFluoEventActionMessenger (XrayFluoEventAction *)
 
 ~XrayFluoEventActionMessenger ()
 
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 50 of file XrayFluoEventActionMessenger.hh.

Constructor & Destructor Documentation

XrayFluoEventActionMessenger::XrayFluoEventActionMessenger ( XrayFluoEventAction EvAct)

Definition at line 48 of file XrayFluoEventActionMessenger.cc.

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

49 :eventAction(EvAct)
50 {
51  DrawCmd = new G4UIcmdWithAString("/event/drawTracks",this);
52  DrawCmd->SetGuidance("Draw the tracks in the event");
53  DrawCmd->SetGuidance(" Choice : none, charged(default),neutral, all");
54  DrawCmd->SetParameterName("choice",true);
55  DrawCmd->SetDefaultValue("all");
56  DrawCmd->SetCandidates("none charged neutral all");
58 
59  PrintCmd = new G4UIcmdWithAnInteger("/event/printModulo",this);
60  PrintCmd->SetGuidance("Print events modulo n");
61  PrintCmd->SetParameterName("EventNb",false);
62  PrintCmd->SetRange("EventNb>0");
63  PrintCmd->AvailableForStates(G4State_Idle);
64 }
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)
XrayFluoEventActionMessenger::~XrayFluoEventActionMessenger ( )

Definition at line 68 of file XrayFluoEventActionMessenger.cc.

69 {
70  delete DrawCmd;
71  delete PrintCmd;
72 }

Member Function Documentation

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

Reimplemented from G4UImessenger.

Definition at line 76 of file XrayFluoEventActionMessenger.cc.

References G4UIcmdWithAnInteger::GetNewIntValue(), XrayFluoEventAction::SetDrawFlag(), and XrayFluoEventAction::SetPrintModulo().

77 {
78  if(command == DrawCmd)
79  {eventAction->SetDrawFlag(newValue);}
80 
81  if(command == PrintCmd)
82  {eventAction->SetPrintModulo(PrintCmd->GetNewIntValue(newValue));}
83 }
static G4int GetNewIntValue(const char *paramString)
void SetPrintModulo(G4int val)
void SetDrawFlag(G4String val)

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