Geant4 11.3.0
Toolkit for the simulation of the passage of particles through matter
Loading...
Searching...
No Matches
G4UIparameter Class Reference

#include <G4UIparameter.hh>

Public Member Functions

 G4UIparameter ()=default
 
 G4UIparameter (char theType)
 
 G4UIparameter (const char *theName, char theType, G4bool theOmittable)
 
 ~G4UIparameter ()
 
G4int CheckNewValue (const char *newValue)
 
void List ()
 
void SetDefaultValue (const char *theDefaultValue)
 
void SetDefaultValue (G4int theDefaultValue)
 
void SetDefaultValue (G4long theDefaultValue)
 
void SetDefaultValue (G4double theDefaultValue)
 
void SetDefaultUnit (const char *theDefaultUnit)
 
const G4StringGetDefaultValue () const
 
char GetParameterType () const
 
void SetParameterRange (const char *theRange)
 
const G4StringGetParameterRange () const
 
void SetParameterName (const char *pName)
 
const G4StringGetParameterName () const
 
void SetParameterCandidates (const char *theString)
 
const G4StringGetParameterCandidates () const
 
void SetOmittable (G4bool om)
 
G4bool IsOmittable () const
 
void SetCurrentAsDefault (G4bool val)
 
G4bool GetCurrentAsDefault () const
 
const G4StringGetParameterGuidance () const
 
void SetGuidance (const char *theGuidance)
 

Detailed Description

Definition at line 44 of file G4UIparameter.hh.

Constructor & Destructor Documentation

◆ G4UIparameter() [1/3]

G4UIparameter::G4UIparameter ( )
default

◆ G4UIparameter() [2/3]

G4UIparameter::G4UIparameter ( char theType)

Definition at line 40 of file G4UIparameter.cc.

41{
42 parameterType = theType;
43}

◆ G4UIparameter() [3/3]

G4UIparameter::G4UIparameter ( const char * theName,
char theType,
G4bool theOmittable )

Definition at line 46 of file G4UIparameter.cc.

47{
48 parameterName = theName;
49 parameterType = theType;
50 omittable = theOmittable;
51}

◆ ~G4UIparameter()

G4UIparameter::~G4UIparameter ( )
default

Member Function Documentation

◆ CheckNewValue()

G4int G4UIparameter::CheckNewValue ( const char * newValue)

Definition at line 135 of file G4UIparameter.cc.

136{
137 if (!TypeCheck(newValue)) {
139 }
140 if (!G4UIparsing::RangeCheck(*this, newValue)) {
142 }
143 if (!CandidateCheck(newValue)) {
145 }
146 return 0; // succeeded
147}
@ fParameterOutOfCandidates
@ fParameterUnreadable
@ fParameterOutOfRange
G4bool RangeCheck(const G4UIparameter &p, const char *value)

◆ GetCurrentAsDefault()

G4bool G4UIparameter::GetCurrentAsDefault ( ) const
inline

Definition at line 103 of file G4UIparameter.hh.

103{ return currentAsDefaultFlag; }

Referenced by G4UIcommandTree::CreateHTML().

◆ GetDefaultValue()

◆ GetParameterCandidates()

const G4String & G4UIparameter::GetParameterCandidates ( ) const
inline

◆ GetParameterGuidance()

const G4String & G4UIparameter::GetParameterGuidance ( ) const
inline

Definition at line 107 of file G4UIparameter.hh.

107{ return parameterGuidance; }

◆ GetParameterName()

const G4String & G4UIparameter::GetParameterName ( ) const
inline

Definition at line 91 of file G4UIparameter.hh.

91{ return parameterName; }

Referenced by G4UIcommandTree::CreateHTML().

◆ GetParameterRange()

const G4String & G4UIparameter::GetParameterRange ( ) const
inline

Definition at line 88 of file G4UIparameter.hh.

88{ return rangeExpression; }

Referenced by G4UIcommandTree::CreateHTML().

◆ GetParameterType()

char G4UIparameter::GetParameterType ( ) const
inline

Definition at line 79 of file G4UIparameter.hh.

79{ return parameterType; }

Referenced by G4UIcommandTree::CreateHTML().

◆ IsOmittable()

G4bool G4UIparameter::IsOmittable ( ) const
inline

◆ List()

void G4UIparameter::List ( )

Definition at line 57 of file G4UIparameter.cc.

58{
59 G4cout << G4endl << "Parameter : " << parameterName << G4endl;
60 if (!parameterGuidance.empty()) {
61 G4cout << parameterGuidance << G4endl;
62 }
63 G4cout << " Parameter type : " << parameterType << G4endl;
64 if (omittable) {
65 G4cout << " Omittable : True" << G4endl;
66 }
67 else {
68 G4cout << " Omittable : False" << G4endl;
69 }
70 if (currentAsDefaultFlag) {
71 G4cout << " Default value : taken from the current value" << G4endl;
72 }
73 else if (!defaultValue.empty()) {
74 G4cout << " Default value : " << defaultValue << G4endl;
75 }
76 if (!rangeExpression.empty()) {
77 G4cout << " Parameter range : " << rangeExpression << G4endl;
78 }
79 if (!parameterCandidate.empty()) {
80 G4cout << " Candidates : " << parameterCandidate << G4endl;
81 }
82}
#define G4endl
Definition G4ios.hh:67
G4GLOB_DLL std::ostream G4cout

◆ SetCurrentAsDefault()

◆ SetDefaultUnit()

void G4UIparameter::SetDefaultUnit ( const char * theDefaultUnit)

Definition at line 103 of file G4UIparameter.cc.

104{
105 char type = (char)std::toupper(parameterType);
106 if (type != 'S') {
108 ed << "This method can be used only for a string-type parameter that is "
109 "used to specify a unit.\n"
110 << "This parameter <" << parameterName << "> is defined as ";
111 switch (type) {
112 case 'D':
113 ed << "double.";
114 break;
115 case 'I':
116 ed << "integer.";
117 break;
118 case 'L':
119 ed << "long int.";
120 break;
121 case 'B':
122 ed << "bool.";
123 break;
124 default:
125 ed << "undefined.";
126 }
127 G4Exception("G4UIparameter::SetDefaultUnit", "INTERCOM2010", FatalException, ed);
128 }
129 SetDefaultValue(theDefaultUnit);
131}
@ FatalException
void G4Exception(const char *originOfException, const char *exceptionCode, G4ExceptionSeverity severity, const char *description)
std::ostringstream G4ExceptionDescription
static G4String CategoryOf(const char *unitName)
static G4String UnitsList(const char *unitCategory)
void SetDefaultValue(const char *theDefaultValue)
void SetParameterCandidates(const char *theString)

Referenced by G4ScoringMessenger::G4ScoringMessenger(), and G4UserPhysicsListMessenger::G4UserPhysicsListMessenger().

◆ SetDefaultValue() [1/4]

void G4UIparameter::SetDefaultValue ( const char * theDefaultValue)
inline

Definition at line 68 of file G4UIparameter.hh.

68{ defaultValue = theDefaultValue; }

Referenced by G4GMocrenMessenger::G4GMocrenMessenger(), G4InteractorMessenger::G4InteractorMessenger(), G4MatScanMessenger::G4MatScanMessenger(), G4ParticleGunMessenger::G4ParticleGunMessenger(), G4PolarizationMessenger::G4PolarizationMessenger(), G4ProcessManagerMessenger::G4ProcessManagerMessenger(), G4ProcessTableMessenger::G4ProcessTableMessenger(), G4ScoringMessenger::G4ScoringMessenger(), G4UserPhysicsListMessenger::G4UserPhysicsListMessenger(), G4VisCommandGeometrySetColour::G4VisCommandGeometrySetColour(), G4VisCommandGeometrySetDaughtersInvisible::G4VisCommandGeometrySetDaughtersInvisible(), G4VisCommandGeometrySetForceAuxEdgeVisible::G4VisCommandGeometrySetForceAuxEdgeVisible(), G4VisCommandGeometrySetForceCloud::G4VisCommandGeometrySetForceCloud(), G4VisCommandGeometrySetForceLineSegmentsPerCircle::G4VisCommandGeometrySetForceLineSegmentsPerCircle(), G4VisCommandGeometrySetForceSolid::G4VisCommandGeometrySetForceSolid(), G4VisCommandGeometrySetForceWireframe::G4VisCommandGeometrySetForceWireframe(), G4VisCommandGeometrySetLineStyle::G4VisCommandGeometrySetLineStyle(), G4VisCommandGeometrySetLineWidth::G4VisCommandGeometrySetLineWidth(), G4VisCommandGeometrySetVisibility::G4VisCommandGeometrySetVisibility(), G4VisCommandSceneAddArrow::G4VisCommandSceneAddArrow(), G4VisCommandSceneAddAxes::G4VisCommandSceneAddAxes(), G4VisCommandSceneAddLine::G4VisCommandSceneAddLine(), G4VisCommandSceneAddLogicalVolume::G4VisCommandSceneAddLogicalVolume(), G4VisCommandSceneAddLogo::G4VisCommandSceneAddLogo(), G4VisCommandSceneAddScale::G4VisCommandSceneAddScale(), G4VisCommandSceneAddText::G4VisCommandSceneAddText(), G4VisCommandSceneAddText2D::G4VisCommandSceneAddText2D(), G4VisCommandSetColour::G4VisCommandSetColour(), G4VisCommandSetTextColour::G4VisCommandSetTextColour(), G4VisCommandSpecify::G4VisCommandSpecify(), G4VisCommandsTouchableSet::G4VisCommandsTouchableSet(), G4VisCommandsViewerSet::G4VisCommandsViewerSet(), G4VisCommandViewerCentreOn::G4VisCommandViewerCentreOn(), G4UIcmdWith3VectorAndUnit::SetDefaultUnit(), G4UIcmdWithADoubleAndUnit::SetDefaultUnit(), SetDefaultUnit(), G4GenericMessenger::Command::SetDefaultValue(), G4UIcmdWith3Vector::SetDefaultValue(), G4UIcmdWith3VectorAndUnit::SetDefaultValue(), G4UIcmdWithABool::SetDefaultValue(), G4UIcmdWithADouble::SetDefaultValue(), G4UIcmdWithADoubleAndUnit::SetDefaultValue(), G4UIcmdWithALongInt::SetDefaultValue(), G4UIcmdWithAnInteger::SetDefaultValue(), G4UIcmdWithAString::SetDefaultValue(), and G4UIcmdWithNucleusLimits::SetDefaultValue().

◆ SetDefaultValue() [2/4]

void G4UIparameter::SetDefaultValue ( G4double theDefaultValue)

Definition at line 97 of file G4UIparameter.cc.

98{
99 defaultValue = G4UIparsing::TtoS(theDefaultValue);
100}
G4String TtoS(T value)

◆ SetDefaultValue() [3/4]

void G4UIparameter::SetDefaultValue ( G4int theDefaultValue)

Definition at line 85 of file G4UIparameter.cc.

86{
87 defaultValue = G4UIparsing::TtoS(theDefaultValue);
88}

◆ SetDefaultValue() [4/4]

void G4UIparameter::SetDefaultValue ( G4long theDefaultValue)

Definition at line 91 of file G4UIparameter.cc.

92{
93 defaultValue = G4UIparsing::TtoS(theDefaultValue);
94}

◆ SetGuidance()

void G4UIparameter::SetGuidance ( const char * theGuidance)
inline

◆ SetOmittable()

◆ SetParameterCandidates()

◆ SetParameterName()

◆ SetParameterRange()


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