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

#include <ElectronBenchmarkDetectorMessenger.hh>

Inheritance diagram for ElectronBenchmarkDetectorMessenger:
G4UImessenger

Public Member Functions

 ElectronBenchmarkDetectorMessenger (ElectronBenchmarkDetector *det)
 
virtual ~ElectronBenchmarkDetectorMessenger ()
 
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 44 of file ElectronBenchmarkDetectorMessenger.hh.

Constructor & Destructor Documentation

ElectronBenchmarkDetectorMessenger::ElectronBenchmarkDetectorMessenger ( ElectronBenchmarkDetector det)

Definition at line 44 of file ElectronBenchmarkDetectorMessenger.cc.

References G4UIcommand::AvailableForStates(), G4State_Idle, G4State_PreInit, G4UIcmdWithADoubleAndUnit::SetDefaultUnit(), G4UIcommand::SetGuidance(), G4UIcmdWithAString::SetParameterName(), G4UIcmdWithADoubleAndUnit::SetParameterName(), and G4UIcommand::SetToBeBroadcasted().

46 : G4UImessenger(), fDetector(det),
47  fListDir(0), fPrimFoilMatCmd(0), fPrimFoilThickCmd(0)
48 {
49  fListDir = new G4UIdirectory("/primFoil/");
50  fListDir->SetGuidance("Primary foil commands");
51 
52  // Foil Material
53  fPrimFoilMatCmd = new G4UIcmdWithAString("/primFoil/material",this);
54  fPrimFoilMatCmd->SetGuidance("Material of primary foil");
55  fPrimFoilMatCmd->SetParameterName("primFoilMat",false);
57  fPrimFoilMatCmd->SetToBeBroadcasted(false);
58 
59  // Foil Thickness
60  fPrimFoilThickCmd=new G4UIcmdWithADoubleAndUnit("/primFoil/thickness",this);
61  fPrimFoilThickCmd->SetGuidance("Thickness of primary foil");
62  fPrimFoilThickCmd->SetParameterName("thickness",false);
63  fPrimFoilThickCmd->SetDefaultUnit("cm");
65  fPrimFoilThickCmd->SetToBeBroadcasted(false);
66 }
void SetParameterName(const char *theName, G4bool omittable, G4bool currentAsDefault=false)
void SetToBeBroadcasted(G4bool val)
Definition: G4UIcommand.hh:184
void SetGuidance(const char *aGuidance)
Definition: G4UIcommand.hh:161
void AvailableForStates(G4ApplicationState s1)
Definition: G4UIcommand.cc:225
void SetDefaultUnit(const char *defUnit)
void SetParameterName(const char *theName, G4bool omittable, G4bool currentAsDefault=false)
ElectronBenchmarkDetectorMessenger::~ElectronBenchmarkDetectorMessenger ( )
virtual

Definition at line 70 of file ElectronBenchmarkDetectorMessenger.cc.

71 {
72  delete fListDir;
73  delete fPrimFoilMatCmd;
74  delete fPrimFoilThickCmd;
75 }

Member Function Documentation

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

Reimplemented from G4UImessenger.

Definition at line 78 of file ElectronBenchmarkDetectorMessenger.cc.

References G4cerr, G4endl, G4UIcmdWithADoubleAndUnit::GetNewDoubleValue(), ElectronBenchmarkDetector::SetPrimFoilMaterial(), and ElectronBenchmarkDetector::SetPrimFoilThickness().

80 {
81  if ( command == fPrimFoilMatCmd ){
82  fDetector->SetPrimFoilMaterial(newValue);
83  } else if ( command == fPrimFoilThickCmd ){
84  fDetector->SetPrimFoilThickness(
85  fPrimFoilThickCmd->GetNewDoubleValue(newValue));
86  } else {
87  G4cerr << "***** Command is not found !!! " << newValue << G4endl;
88  }
89 }
void SetPrimFoilThickness(G4double thicknessPrimFoil)
static G4double GetNewDoubleValue(const char *paramString)
void SetPrimFoilMaterial(G4String matname)
#define G4endl
Definition: G4ios.hh:61
G4GLOB_DLL std::ostream G4cerr

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