G4tgrMessenger Class Reference

#include <G4tgrMessenger.hh>

Inheritance diagram for G4tgrMessenger:

G4UImessenger

Public Member Functions

 G4tgrMessenger ()
 ~G4tgrMessenger ()
void SetNewValue (G4UIcommand *command, G4String newValues)
G4String GetCurrentValue (G4UIcommand *command)

Static Public Member Functions

static G4int GetVerboseLevel ()
static void SetVerboseLevel (G4int verb)

Detailed Description

Definition at line 49 of file G4tgrMessenger.hh.


Constructor & Destructor Documentation

G4tgrMessenger::G4tgrMessenger (  ) 

Definition at line 45 of file G4tgrMessenger.cc.

References G4UIcommand::SetGuidance(), G4UIcmdWithAnInteger::SetParameterName(), and G4UIcommand::SetRange().

00046 {
00047   tgDirectory = new G4UIdirectory("/geometry/textInput/");
00048   tgDirectory->SetGuidance("Geometry from text file control commands.");
00049   verboseCmd = new G4UIcmdWithAnInteger("/geometry/textInput/verbose",this);
00050   verboseCmd->SetGuidance("Set Verbose level of geometry text input category.");
00051   verboseCmd->SetGuidance(" 0 : Silent");
00052   verboseCmd->SetGuidance(" 1 : info verbosity");
00053   verboseCmd->SetGuidance(" 2 : debug verbosity");
00054   verboseCmd->SetParameterName("level",false);
00055   verboseCmd->SetRange("level>=0");
00056 }

G4tgrMessenger::~G4tgrMessenger (  ) 

Definition at line 60 of file G4tgrMessenger.cc.

00061 {
00062   delete verboseCmd;
00063   delete tgDirectory;
00064 }


Member Function Documentation

G4String G4tgrMessenger::GetCurrentValue ( G4UIcommand command  )  [virtual]

Reimplemented from G4UImessenger.

Definition at line 92 of file G4tgrMessenger.cc.

References G4UIcommand::ConvertToString(), and GetVerboseLevel().

00093 {
00094   G4String cv;
00095   if( command == verboseCmd )
00096   { 
00097     cv = verboseCmd->ConvertToString(G4tgrMessenger::GetVerboseLevel()); 
00098   }
00099   return cv;
00100 }

G4int G4tgrMessenger::GetVerboseLevel (  )  [static]

Definition at line 68 of file G4tgrMessenger.cc.

Referenced by G4tgrMaterialFactory::AddMaterialMixture(), G4tgrMaterialFactory::AddMaterialSimple(), G4tgrParameterMgr::AddParameterNumber(), G4tgrParameterMgr::AddParameterString(), G4tgrVolumeAssembly::AddPlace(), G4tgrVolume::AddPlace(), G4tgrVolume::AddPlaceParam(), G4tgrVolume::AddPlaceReplica(), G4tgrRotationMatrixFactory::AddRotMatrix(), G4tgbElement::BuildG4ElementFromIsotopes(), G4tgbElement::BuildG4ElementSimple(), G4tgbIsotope::BuildG4Isotope(), G4tgbMaterialSimple::BuildG4Material(), G4tgbMaterialMixtureByWeight::BuildG4Material(), G4tgbMaterialMixtureByVolume::BuildG4Material(), G4tgbMaterialMixtureByNoAtoms::BuildG4Material(), G4tgbRotationMatrix::BuildG4RotMatrixFrom3(), G4tgbRotationMatrix::BuildG4RotMatrixFrom6(), G4tgbRotationMatrix::BuildG4RotMatrixFrom9(), G4tgbVolume::BuildSolidForDivision(), G4tgrFileIn::Close(), G4tgbPlaceParamSquare::ComputeTransformation(), G4tgbPlaceParamLinear::ComputeTransformation(), G4tgbPlaceParamCircle::ComputeTransformation(), G4tgbDetectorConstruction::Construct(), G4tgbDetectorBuilder::ConstructDetector(), G4tgbVolume::ConstructG4LogVol(), G4tgbVolume::ConstructG4PhysVol(), G4tgbVolume::ConstructG4Volumes(), G4tgbGeometryDumper::DumpPVPlacement(), G4tgrFileIn::EndOfFile(), G4tgbMaterialMgr::FindBuiltG4Element(), G4tgbMaterialMgr::FindBuiltG4Isotope(), G4tgbMaterialMgr::FindBuiltG4Material(), G4tgrMaterialFactory::FindElement(), G4tgbRotationMatrixMgr::FindG4RotMatrix(), G4tgbVolumeMgr::FindG4Solid(), G4tgbMaterialMgr::FindG4tgbElement(), G4tgbMaterialMgr::FindG4tgbIsotope(), G4tgbMaterialMgr::FindG4tgbMaterial(), G4tgrMaterialFactory::FindIsotope(), G4tgrMaterialFactory::FindMaterial(), G4tgbMaterialMgr::FindOrBuildG4Element(), G4tgbMaterialMgr::FindOrBuildG4Isotope(), G4tgbMaterialMgr::FindOrBuildG4Material(), G4tgbRotationMatrixMgr::FindOrBuildG4RotMatrix(), G4tgbVolume::FindOrConstructG4Solid(), G4tgrParameterMgr::FindParameter(), G4tgbPlaceParamCircle::G4tgbPlaceParamCircle(), G4tgbPlaceParamLinear::G4tgbPlaceParamLinear(), G4tgbPlaceParamSquare::G4tgbPlaceParamSquare(), G4tgrElementFromIsotopes::G4tgrElementFromIsotopes(), G4tgrElementSimple::G4tgrElementSimple(), G4tgrIsotope::G4tgrIsotope(), G4tgrMaterialMixture::G4tgrMaterialMixture(), G4tgrMaterialSimple::G4tgrMaterialSimple(), G4tgrPlaceDivRep::G4tgrPlaceDivRep(), G4tgrPlaceParameterisation::G4tgrPlaceParameterisation(), G4tgrPlaceSimple::G4tgrPlaceSimple(), G4tgrRotationMatrix::G4tgrRotationMatrix(), G4tgrSolid::G4tgrSolid(), G4tgrSolidBoolean::G4tgrSolidBoolean(), G4tgrVolume::G4tgrVolume(), G4tgrVolumeAssembly::G4tgrVolumeAssembly(), G4tgrVolumeDivision::G4tgrVolumeDivision(), GetCurrentValue(), G4tgrUtils::GetDouble(), G4tgrUtils::GetString(), G4tgbVolumeMgr::GetTopLogVol(), G4tgbVolumeMgr::GetTopPhysVol(), G4tgrVolumeMgr::GetTopVolume(), G4tgrFileIn::GetWordsInLine(), G4tgrLineProcessor::ProcessLine(), G4tgrFileReader::ReadFiles(), G4tgbVolumeMgr::RegisterMe(), and G4tgbMaterialMixtureByVolume::TransformToFractionsByWeight().

00069 {
00070   return theVerboseLevel;
00071 }

void G4tgrMessenger::SetNewValue ( G4UIcommand command,
G4String  newValues 
) [virtual]

Reimplemented from G4UImessenger.

Definition at line 82 of file G4tgrMessenger.cc.

References G4UIcmdWithAnInteger::GetNewIntValue(), and SetVerboseLevel().

00083 {
00084   if( command == verboseCmd )
00085   {
00086     G4tgrMessenger::SetVerboseLevel(verboseCmd->GetNewIntValue(newValues)); 
00087   }
00088 }

void G4tgrMessenger::SetVerboseLevel ( G4int  verb  )  [static]

Definition at line 75 of file G4tgrMessenger.cc.

Referenced by SetNewValue().

00076 {
00077   theVerboseLevel = verb;
00078 }


The documentation for this class was generated from the following files:
Generated on Mon May 27 17:53:30 2013 for Geant4 by  doxygen 1.4.7