Geant4  10.02.p03
G4SDmessenger Class Reference

#include <G4SDmessenger.hh>

Inheritance diagram for G4SDmessenger:
Collaboration diagram for G4SDmessenger:

Public Member Functions

 G4SDmessenger (G4SDManager *SDManager)
 
 ~G4SDmessenger ()
 
void SetNewValue (G4UIcommand *command, G4String newValues)
 
- 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

G4SDManagerfSDMan
 
G4UIdirectoryhitsDir
 
G4UIcmdWithoutParameterlistCmd
 
G4UIcmdWithAStringactiveCmd
 
G4UIcmdWithAStringinactiveCmd
 
G4UIcmdWithAnIntegerverboseCmd
 

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 52 of file G4SDmessenger.hh.

Constructor & Destructor Documentation

◆ G4SDmessenger()

G4SDmessenger::G4SDmessenger ( G4SDManager SDManager)

Definition at line 38 of file G4SDmessenger.cc.

38  :fSDMan(SDManager)
39 {
40  hitsDir = new G4UIdirectory("/hits/");
41  hitsDir->SetGuidance("Sensitive detectors and Hits");
42 
43  listCmd = new G4UIcmdWithoutParameter("/hits/list",this);
44  listCmd->SetGuidance("List sensitive detector tree.");
45 
46  activeCmd = new G4UIcmdWithAString("/hits/activate",this);
47  activeCmd->SetGuidance("Activate sensitive detector(s).");
48  activeCmd->SetParameterName("detector",true);
50 
51  inactiveCmd = new G4UIcmdWithAString("/hits/inactivate",this);
52  inactiveCmd->SetGuidance("Inactivate sensitive detector(s).");
53  inactiveCmd->SetParameterName("detector",true);
55 
56  verboseCmd = new G4UIcmdWithAnInteger("/hits/verbose",this);
57  verboseCmd->SetGuidance("Set the Verbose level.");
58  verboseCmd->SetParameterName("level",false);
59 }
void SetParameterName(const char *theName, G4bool omittable, G4bool currentAsDefault=false)
void SetParameterName(const char *theName, G4bool omittable, G4bool currentAsDefault=false)
G4UIcmdWithAnInteger * verboseCmd
G4UIcmdWithAString * activeCmd
G4UIcmdWithAString * inactiveCmd
G4SDManager * fSDMan
void SetGuidance(const char *aGuidance)
Definition: G4UIcommand.hh:161
G4UIdirectory * hitsDir
void SetDefaultValue(const char *defVal)
G4UIcmdWithoutParameter * listCmd
Here is the call graph for this function:

◆ ~G4SDmessenger()

G4SDmessenger::~G4SDmessenger ( )

Definition at line 61 of file G4SDmessenger.cc.

62 {
63  delete listCmd;
64  delete activeCmd;
65  delete inactiveCmd;
66  delete verboseCmd;
67  delete hitsDir;
68 }
G4UIcmdWithAnInteger * verboseCmd
G4UIcmdWithAString * activeCmd
G4UIcmdWithAString * inactiveCmd
G4UIdirectory * hitsDir
G4UIcmdWithoutParameter * listCmd

Member Function Documentation

◆ SetNewValue()

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

Reimplemented from G4UImessenger.

Definition at line 70 of file G4SDmessenger.cc.

71 {
72  if( command==listCmd )
73  { fSDMan->ListTree(); }
74  if( command==activeCmd )
75  { fSDMan->Activate(newVal,1); }
76  if( command==inactiveCmd )
77  { fSDMan->Activate(newVal,0); }
78  if( command==verboseCmd )
80  return;
81 }
G4UIcmdWithAnInteger * verboseCmd
static G4int GetNewIntValue(const char *paramString)
void SetVerboseLevel(G4int vl)
Definition: G4SDManager.hh:90
G4UIcmdWithAString * activeCmd
G4UIcmdWithAString * inactiveCmd
G4SDManager * fSDMan
void Activate(G4String dName, G4bool activeFlag)
Definition: G4SDManager.cc:121
G4UIcmdWithoutParameter * listCmd
void ListTree() const
Definition: G4SDManager.hh:97
Here is the call graph for this function:

Member Data Documentation

◆ activeCmd

G4UIcmdWithAString* G4SDmessenger::activeCmd
private

Definition at line 63 of file G4SDmessenger.hh.

◆ fSDMan

G4SDManager* G4SDmessenger::fSDMan
private

Definition at line 60 of file G4SDmessenger.hh.

◆ hitsDir

G4UIdirectory* G4SDmessenger::hitsDir
private

Definition at line 61 of file G4SDmessenger.hh.

◆ inactiveCmd

G4UIcmdWithAString* G4SDmessenger::inactiveCmd
private

Definition at line 64 of file G4SDmessenger.hh.

◆ listCmd

G4UIcmdWithoutParameter* G4SDmessenger::listCmd
private

Definition at line 62 of file G4SDmessenger.hh.

◆ verboseCmd

G4UIcmdWithAnInteger* G4SDmessenger::verboseCmd
private

Definition at line 65 of file G4SDmessenger.hh.


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