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

#include <G4UIcommand.hh>

+ Inheritance diagram for G4UIcommand:

Public Types

enum  CommandType {
  BaseClassCmd , WithoutParameterCmd , WithABoolCmd , WithAnIntegerCmd ,
  WithALongIntCmd , WithADoubleCmd , WithADoubleAndUnitCmd , With3VectorCmd ,
  With3VectorAndUnitCmd , WithAStringCmd , CmdDirectory = -1
}
 

Public Member Functions

 G4UIcommand ()=default
 
 G4UIcommand (const char *theCommandPath, G4UImessenger *theMessenger, G4bool tBB=true)
 
virtual ~G4UIcommand ()
 
G4bool operator== (const G4UIcommand &right) const
 
G4bool operator!= (const G4UIcommand &right) const
 
virtual G4int DoIt (const G4String &parameterList)
 
G4String GetCurrentValue ()
 
void AvailableForStates (G4ApplicationState s1)
 
void AvailableForStates (G4ApplicationState s1, G4ApplicationState s2)
 
void AvailableForStates (G4ApplicationState s1, G4ApplicationState s2, G4ApplicationState s3)
 
void AvailableForStates (G4ApplicationState s1, G4ApplicationState s2, G4ApplicationState s3, G4ApplicationState s4)
 
void AvailableForStates (G4ApplicationState s1, G4ApplicationState s2, G4ApplicationState s3, G4ApplicationState s4, G4ApplicationState s5)
 
G4bool IsAvailable ()
 
virtual void List ()
 
void SetRange (const char *rs)
 
const G4StringGetRange () const
 
std::size_t GetGuidanceEntries () const
 
const G4StringGetGuidanceLine (G4int i) const
 
const G4StringGetCommandPath () const
 
const G4StringGetCommandName () const
 
std::size_t GetParameterEntries () const
 
G4UIparameterGetParameter (G4int i) const
 
std::vector< G4ApplicationState > * GetStateList ()
 
G4UImessengerGetMessenger () const
 
void SetParameter (G4UIparameter *const newParameter)
 
void SetGuidance (const char *aGuidance)
 
const G4String GetTitle () const
 
void SetToBeBroadcasted (G4bool val)
 
G4bool ToBeBroadcasted () const
 
void SetToBeFlushed (G4bool val)
 
G4bool ToBeFlushed () const
 
void SetWorkerThreadOnly (G4bool val=true)
 
G4bool IsWorkerThreadOnly () const
 
void CommandFailed (G4int errCode, G4ExceptionDescription &ed)
 
void CommandFailed (G4ExceptionDescription &ed)
 
G4int IfCommandFailed ()
 
const G4StringGetFailureDescription ()
 
void ResetFailure ()
 
CommandType GetCommandType () const
 
void SetCommandType (CommandType)
 
void SetDefaultSortFlag (G4bool val)
 

Static Public Member Functions

static G4String ConvertToString (G4bool boolVal)
 
static G4String ConvertToString (G4int intValue)
 
static G4String ConvertToString (G4long longValue)
 
static G4String ConvertToString (G4double doubleValue)
 
static G4String ConvertToString (G4double doubleValue, const char *unitName)
 
static G4String ConvertToString (const G4ThreeVector &vec)
 
static G4String ConvertToString (const G4ThreeVector &vec, const char *unitName)
 
static G4bool ConvertToBool (const char *st)
 
static G4int ConvertToInt (const char *st)
 
static G4long ConvertToLongInt (const char *st)
 
static G4double ConvertToDouble (const char *st)
 
static G4double ConvertToDimensionedDouble (const char *st)
 
static G4ThreeVector ConvertTo3Vector (const char *st)
 
static G4ThreeVector ConvertToDimensioned3Vector (const char *st)
 
static G4double ValueOf (const char *unitName)
 
static G4String CategoryOf (const char *unitName)
 
static G4String UnitsList (const char *unitCategory)
 

Protected Member Functions

G4int CheckNewValue (const char *newValue)
 

Protected Attributes

G4bool toBeBroadcasted = false
 
G4bool toBeFlushed = false
 
G4bool workerThreadOnly = false
 
G4int commandFailureCode = 0
 
G4String failureDescription = ""
 
G4bool ifSort = false
 

Detailed Description

Definition at line 50 of file G4UIcommand.hh.

Member Enumeration Documentation

◆ CommandType

Enumerator
BaseClassCmd 
WithoutParameterCmd 
WithABoolCmd 
WithAnIntegerCmd 
WithALongIntCmd 
WithADoubleCmd 
WithADoubleAndUnitCmd 
With3VectorCmd 
With3VectorAndUnitCmd 
WithAStringCmd 
CmdDirectory 

Definition at line 178 of file G4UIcommand.hh.

Constructor & Destructor Documentation

◆ G4UIcommand() [1/2]

◆ G4UIcommand() [2/2]

G4UIcommand::G4UIcommand ( const char * theCommandPath,
G4UImessenger * theMessenger,
G4bool tBB = true )

Definition at line 44 of file G4UIcommand.cc.

45 : toBeBroadcasted(tBB), messenger(theMessenger)
46{
47 G4String comStr = theCommandPath;
48 G4UIcommandCommonConstructorCode(comStr);
49 availabelStateList = {G4State_PreInit, G4State_Init, G4State_Idle,
51}
@ G4State_EventProc
@ G4State_Init
@ G4State_Idle
@ G4State_Abort
@ G4State_GeomClosed
@ G4State_PreInit
G4bool toBeBroadcasted

◆ ~G4UIcommand()

G4UIcommand::~G4UIcommand ( )
virtual

Definition at line 97 of file G4UIcommand.cc.

98{
99 G4UImanager* fUImanager = G4UImanager::GetUIpointer();
100 if (fUImanager != nullptr) {
101 fUImanager->RemoveCommand(this);
102 }
103
104 for (const auto& p : parameter) {
105 delete p;
106 }
107}
void RemoveCommand(G4UIcommand *aCommand)
static G4UImanager * GetUIpointer()

Member Function Documentation

◆ AvailableForStates() [1/5]

void G4UIcommand::AvailableForStates ( G4ApplicationState s1)

Definition at line 234 of file G4UIcommand.cc.

235{
236 availabelStateList = {s1};
237}

◆ AvailableForStates() [2/5]

void G4UIcommand::AvailableForStates ( G4ApplicationState s1,
G4ApplicationState s2 )

Definition at line 240 of file G4UIcommand.cc.

241{
242 availabelStateList = {s1, s2};
243}

◆ AvailableForStates() [3/5]

void G4UIcommand::AvailableForStates ( G4ApplicationState s1,
G4ApplicationState s2,
G4ApplicationState s3 )

Definition at line 246 of file G4UIcommand.cc.

248{
249 availabelStateList = {s1, s2, s3};
250}

◆ AvailableForStates() [4/5]

void G4UIcommand::AvailableForStates ( G4ApplicationState s1,
G4ApplicationState s2,
G4ApplicationState s3,
G4ApplicationState s4 )

Definition at line 253 of file G4UIcommand.cc.

255{
256 availabelStateList = {s1, s2, s3, s4};
257}

◆ AvailableForStates() [5/5]

void G4UIcommand::AvailableForStates ( G4ApplicationState s1,
G4ApplicationState s2,
G4ApplicationState s3,
G4ApplicationState s4,
G4ApplicationState s5 )

Definition at line 260 of file G4UIcommand.cc.

263{
264 availabelStateList = {s1, s2, s3, s4, s5};
265}

◆ CategoryOf()

◆ CheckNewValue()

G4int G4UIcommand::CheckNewValue ( const char * newValue)
protected

Definition at line 476 of file G4UIcommand.cc.

477{
478 if (!G4UIparsing::RangeCheck(*this, newValue)) {
480 }
481 return 0; // succeeded
482}
@ fParameterOutOfRange
G4bool RangeCheck(const G4UIparameter &p, const char *value)

Referenced by DoIt().

◆ CommandFailed() [1/2]

void G4UIcommand::CommandFailed ( G4ExceptionDescription & ed)
inline

Definition at line 164 of file G4UIcommand.hh.

165 {
167 failureDescription = ed.str();
168 }
G4int commandFailureCode
G4String failureDescription

◆ CommandFailed() [2/2]

◆ ConvertTo3Vector()

G4ThreeVector G4UIcommand::ConvertTo3Vector ( const char * st)
static

Definition at line 452 of file G4UIcommand.cc.

453{
454 G4double vx;
455 G4double vy;
456 G4double vz;
457 std::istringstream is(st);
458 is >> vx >> vy >> vz;
459 return G4ThreeVector(vx, vy, vz);
460}
CLHEP::Hep3Vector G4ThreeVector
double G4double
Definition G4Types.hh:83

Referenced by G4UIcmdWith3Vector::GetNew3VectorValue(), G4VisCommandsViewerSet::SetNewValue(), and G4AttCheck::Standard().

◆ ConvertToBool()

◆ ConvertToDimensioned3Vector()

G4ThreeVector G4UIcommand::ConvertToDimensioned3Vector ( const char * st)
static

Definition at line 463 of file G4UIcommand.cc.

464{
465 G4double vx;
466 G4double vy;
467 G4double vz;
468 char unts[30];
469 std::istringstream is(st);
470 is >> vx >> vy >> vz >> unts;
471 G4String unt = unts;
472 G4double uv = ValueOf(unt);
473 return G4ThreeVector(vx * uv, vy * uv, vz * uv);
474}
static G4double ValueOf(const char *unitName)

Referenced by G4UIcmdWith3VectorAndUnit::GetNew3VectorValue(), G4GenericMessenger::SetNewValue(), and G4AttCheck::Standard().

◆ ConvertToDimensionedDouble()

G4double G4UIcommand::ConvertToDimensionedDouble ( const char * st)
static

Definition at line 439 of file G4UIcommand.cc.

440{
441 G4double vl;
442 char unts[30];
443
444 std::istringstream is(st);
445 is >> vl >> unts;
446 G4String unt = unts;
447
448 return (vl * ValueOf(unt));
449}

Referenced by G4UIcmdWithADoubleAndUnit::GetNewDoubleValue(), G4TrajectoryDrawerUtils::GetPointsAndTimes(), G4GenericMessenger::SetNewValue(), G4VisCommandsViewerSet::SetNewValue(), G4VisCommandViewerInterpolate::SetNewValue(), and G4AttCheck::Standard().

◆ ConvertToDouble()

G4double G4UIcommand::ConvertToDouble ( const char * st)
static

◆ ConvertToInt()

◆ ConvertToLongInt()

G4long G4UIcommand::ConvertToLongInt ( const char * st)
static

Definition at line 427 of file G4UIcommand.cc.

428{
429 return G4UIparsing::StoT<G4long>(st);
430}

Referenced by G4UIcmdWithALongInt::GetNewLongIntValue().

◆ ConvertToString() [1/7]

G4String G4UIcommand::ConvertToString ( const G4ThreeVector & vec)
static

Definition at line 390 of file G4UIcommand.cc.

391{
392 std::ostringstream os;
394 os << std::setprecision(17);
395 }
396 os << vec.x() << " " << vec.y() << " " << vec.z();
397 return os.str();
398}
double z() const
double x() const
double y() const
static G4bool DoublePrecisionStr()

◆ ConvertToString() [2/7]

G4String G4UIcommand::ConvertToString ( const G4ThreeVector & vec,
const char * unitName )
static

Definition at line 401 of file G4UIcommand.cc.

402{
403 G4double uv = ValueOf(unitName);
404
405 std::ostringstream os;
407 os << std::setprecision(17);
408 }
409 os << vec.x() / uv << " " << vec.y() / uv << " " << vec.z() / uv << " " << unitName;
410 return os.str();
411}

◆ ConvertToString() [3/7]

G4String G4UIcommand::ConvertToString ( G4bool boolVal)
static

Definition at line 350 of file G4UIcommand.cc.

351{
352 return boolVal ? "1" : "0";
353}

Referenced by G4tgrParameterMgr::AddParameterNumber(), G4tgbRotationMatrix::BuildG4RotMatrix(), G4tgbPlaceParameterisation::CheckNExtraData(), G4tgbVolume::CheckNoSolidParams(), G4tgrUtils::CheckWLsize(), G4UIcmdWith3VectorAndUnit::ConvertToStringWithDefaultUnit(), G4UIcmdWithADoubleAndUnit::ConvertToStringWithDefaultUnit(), G4ClonedRichTrajectory::CreateAttValues(), G4ClonedSmoothTrajectory::CreateAttValues(), G4ClonedTrajectory::CreateAttValues(), G4RichTrajectory::CreateAttValues(), G4SmoothTrajectory::CreateAttValues(), G4Trajectory::CreateAttValues(), G4TheMTRayTracer::CreateBitMap(), G4TrajectoriesModel::CreateCurrentAttValues(), G4UIcmdWith3VectorAndUnit::DoIt(), G4UIcmdWithADoubleAndUnit::DoIt(), G4tgrFileIn::DumpException(), G4tgbGeometryDumper::DumpPVParameterised(), G4tgbGeometryDumper::DumpPVPlacement(), G4tgbGeometryDumper::DumpRotationMatrix(), G4tgbVolume::FindOrConstructG4Solid(), G4MolecularConfiguration::G4MolecularConfiguration(), G4MolecularConfiguration::G4MolecularConfiguration(), G4MolecularConfiguration::G4MolecularConfiguration(), G4tgrSolidMultiUnion::G4tgrSolidMultiUnion(), G4tgrMaterialSimple::GetComponent(), G4DNAChemistryManager::GetCurrentValue(), G4HepRepMessenger::GetCurrentValue(), G4PersistencyCenterMessenger::GetCurrentValue(), G4VITSteppingVerbose::GetCurrentValue(), G4tgrUtils::GetDouble(), G4tgrMaterialSimple::GetFraction(), G4ScoreLogColorMap::GetMapColor(), G4tgrUtils::GetRotationFromDirection(), G4tgrVolume::GetVolume(), G4EnergySplitter::GetVoxelID(), G4MolecularConfiguration::IonizeMolecule(), G4MolecularConfiguration::MoveOneElectron(), G4DNAMolecularReactionTable::PrintTable(), G4MolecularConfiguration::RemoveElectron(), G4GenericMessenger::SetNewValue(), G4VisCommandsViewerSet::SetNewValue(), G4AttCheck::Standard(), G4EmTableUtil::StoreMscTable(), and G4TheMTRayTracer::Trace().

◆ ConvertToString() [4/7]

G4String G4UIcommand::ConvertToString ( G4double doubleValue)
static

Definition at line 368 of file G4UIcommand.cc.

369{
370 std::ostringstream os;
372 os << std::setprecision(17);
373 }
374 os << doubleValue;
375 return os.str();
376}

◆ ConvertToString() [5/7]

G4String G4UIcommand::ConvertToString ( G4double doubleValue,
const char * unitName )
static

Definition at line 379 of file G4UIcommand.cc.

380{
381 std::ostringstream os;
383 os << std::setprecision(17);
384 }
385 os << doubleValue / ValueOf(unitName) << " " << unitName;
386 return os.str();
387}

◆ ConvertToString() [6/7]

G4String G4UIcommand::ConvertToString ( G4int intValue)
static

Definition at line 356 of file G4UIcommand.cc.

357{
358 return G4UIparsing::TtoS(intValue);
359}
G4String TtoS(T value)

◆ ConvertToString() [7/7]

G4String G4UIcommand::ConvertToString ( G4long longValue)
static

Definition at line 362 of file G4UIcommand.cc.

363{
364 return G4UIparsing::TtoS(longValue);
365}

◆ DoIt()

G4int G4UIcommand::DoIt ( const G4String & parameterList)
virtual

Reimplemented in G4UIcmdWith3VectorAndUnit, and G4UIcmdWithADoubleAndUnit.

Definition at line 122 of file G4UIcommand.cc.

123{
124 G4String correctParameters;
125 std::size_t n_parameterEntry = parameter.size();
126 if (n_parameterEntry != 0) {
127 G4String aToken;
128 G4String correctToken;
129 G4Tokenizer parameterToken(parameterList);
130 for (std::size_t i_thParameter = 0; i_thParameter < n_parameterEntry; ++i_thParameter) {
131 if (i_thParameter > 0) {
132 correctParameters.append(" ");
133 }
134 aToken = parameterToken();
135 if (aToken.length() > 0 && aToken[0] == '"') {
136 while (aToken.back() != '"' || (aToken.length() == 1 && aToken[0] == '"')) {
137 G4String additionalToken = parameterToken();
138 if (additionalToken.empty()) {
139 return G4int(fParameterUnreadable + i_thParameter);
140 }
141 aToken += " ";
142 aToken += additionalToken;
143 }
144 }
145 else if (i_thParameter == n_parameterEntry - 1
146 && parameter[i_thParameter]->GetParameterType() == 's')
147 {
148 G4String anotherToken;
149 while (!((anotherToken = parameterToken()).empty())) {
150 std::size_t idxs = anotherToken.find('#');
151 if (idxs == std::string::npos) {
152 aToken += " ";
153 aToken += anotherToken;
154 }
155 else if (idxs > 0) {
156 aToken += " ";
157 aToken += anotherToken.substr(0, idxs);
158 break;
159 }
160 else {
161 break;
162 }
163 }
164 }
165
166 if (aToken.empty() || aToken == "!") {
167 if (parameter[i_thParameter]->IsOmittable()) {
168 if (parameter[i_thParameter]->GetCurrentAsDefault()) {
169 G4Tokenizer cvSt(messenger->GetCurrentValue(this));
170 G4String parVal;
171 for (std::size_t ii = 0; ii < i_thParameter; ++ii) {
172 parVal = cvSt();
173 if (parVal[0] == '"') {
174 while (parVal.back() != '"') {
175 G4String additionalToken = cvSt();
176 if (additionalToken.empty()) {
177 return G4int(fParameterUnreadable + i_thParameter);
178 }
179 parVal += " ";
180 parVal += additionalToken;
181 }
182 }
183 }
184 G4String aCVToken = cvSt();
185 if (aCVToken[0] == '"') {
186 while (aCVToken.back() != '"') {
187 G4String additionalToken = cvSt();
188 if (additionalToken.empty()) {
189 return G4int(fParameterUnreadable + i_thParameter);
190 }
191 aCVToken += " ";
192 aCVToken += additionalToken;
193 }
194 }
195 correctParameters.append(aCVToken);
196 }
197 else {
198 correctParameters.append(parameter[i_thParameter]->GetDefaultValue());
199 }
200 }
201 else {
202 return G4int(fParameterUnreadable + i_thParameter);
203 }
204 }
205 else {
206 G4int stat = parameter[i_thParameter]->CheckNewValue(aToken);
207 if (stat != 0) {
208 return stat + G4int(i_thParameter);
209 }
210 correctParameters.append(aToken);
211 }
212 }
213 }
214
215 if (CheckNewValue(correctParameters) != 0) {
216 return fParameterOutOfRange + 99;
217 }
218
220 return 0;
221 }
222
223 messenger->SetNewValue(this, std::move(correctParameters));
224 return 0;
225}
int G4int
Definition G4Types.hh:85
@ fParameterUnreadable
G4int CheckNewValue(const char *newValue)
G4bool workerThreadOnly
G4bool IsMasterThread()

Referenced by G4UImanager::ApplyCommand(), G4UIcmdWith3VectorAndUnit::DoIt(), and G4UIcmdWithADoubleAndUnit::DoIt().

◆ GetCommandName()

◆ GetCommandPath()

const G4String & G4UIcommand::GetCommandPath ( ) const
inline

◆ GetCommandType()

CommandType G4UIcommand::GetCommandType ( ) const
inline

Definition at line 193 of file G4UIcommand.hh.

193{ return commandType; }

◆ GetCurrentValue()

G4String G4UIcommand::GetCurrentValue ( )

Definition at line 228 of file G4UIcommand.cc.

229{
230 return messenger->GetCurrentValue(this);
231}

◆ GetFailureDescription()

const G4String & G4UIcommand::GetFailureDescription ( )
inline

Definition at line 170 of file G4UIcommand.hh.

170{ return failureDescription; }

Referenced by G4UImanager::ApplyCommand().

◆ GetGuidanceEntries()

std::size_t G4UIcommand::GetGuidanceEntries ( ) const
inline

Definition at line 123 of file G4UIcommand.hh.

123{ return commandGuidance.size(); }

Referenced by G4VVisCommand::CopyGuidanceFrom(), G4UIcommandTree::CreateHTML(), and G4OpenGLQtViewer::updateViewerPropertiesTableWidget().

◆ GetGuidanceLine()

const G4String & G4UIcommand::GetGuidanceLine ( G4int i) const
inline

◆ GetMessenger()

G4UImessenger * G4UIcommand::GetMessenger ( ) const
inline

Definition at line 130 of file G4UIcommand.hh.

130{ return messenger; }

◆ GetParameter()

G4UIparameter * G4UIcommand::GetParameter ( G4int i) const
inline

Definition at line 128 of file G4UIcommand.hh.

128{ return parameter[i]; }

Referenced by G4UIcmdWith3VectorAndUnit::ConvertToStringWithBestUnit(), G4UIcmdWithADoubleAndUnit::ConvertToStringWithBestUnit(), G4UIcmdWith3VectorAndUnit::ConvertToStringWithDefaultUnit(), G4UIcmdWithADoubleAndUnit::ConvertToStringWithDefaultUnit(), G4VVisCommand::CopyParametersFrom(), G4UIcommandTree::CreateHTML(), G4UIcmdWith3VectorAndUnit::DoIt(), G4UIcmdWithADoubleAndUnit::DoIt(), G4UIcmdWithAString::SetCandidates(), G4UIcmdWith3VectorAndUnit::SetDefaultUnit(), G4UIcmdWithADoubleAndUnit::SetDefaultUnit(), G4UIcmdWith3Vector::SetDefaultValue(), G4UIcmdWith3VectorAndUnit::SetDefaultValue(), G4UIcmdWithABool::SetDefaultValue(), G4UIcmdWithADouble::SetDefaultValue(), G4UIcmdWithADoubleAndUnit::SetDefaultValue(), G4UIcmdWithALongInt::SetDefaultValue(), G4UIcmdWithAnInteger::SetDefaultValue(), G4UIcmdWithAString::SetDefaultValue(), G4UIcmdWithNucleusLimits::SetDefaultValue(), G4UIcmdWith3Vector::SetParameterName(), G4UIcmdWith3VectorAndUnit::SetParameterName(), G4UIcmdWithABool::SetParameterName(), G4UIcmdWithADouble::SetParameterName(), G4UIcmdWithADoubleAndUnit::SetParameterName(), G4UIcmdWithALongInt::SetParameterName(), G4UIcmdWithAnInteger::SetParameterName(), G4UIcmdWithAString::SetParameterName(), G4UIcmdWithNucleusLimits::SetParameterName(), G4UIcmdWith3VectorAndUnit::SetUnitCandidates(), G4UIcmdWithADoubleAndUnit::SetUnitCandidates(), and G4OpenGLQtViewer::updateViewerPropertiesTableWidget().

◆ GetParameterEntries()

◆ GetRange()

const G4String & G4UIcommand::GetRange ( ) const
inline

Definition at line 122 of file G4UIcommand.hh.

122{ return rangeExpression; }

Referenced by G4UIcommandTree::CreateHTML().

◆ GetStateList()

std::vector< G4ApplicationState > * G4UIcommand::GetStateList ( )
inline

Definition at line 129 of file G4UIcommand.hh.

129{ return &availabelStateList; }

Referenced by G4UIcommandTree::CreateHTML().

◆ GetTitle()

const G4String G4UIcommand::GetTitle ( ) const
inline

Definition at line 147 of file G4UIcommand.hh.

148 {
149 return (commandGuidance.empty()) ? G4String("...Title not available...") : commandGuidance[0];
150 }

◆ IfCommandFailed()

G4int G4UIcommand::IfCommandFailed ( )
inline

Definition at line 169 of file G4UIcommand.hh.

169{ return commandFailureCode; }

Referenced by G4UImanager::ApplyCommand().

◆ IsAvailable()

G4bool G4UIcommand::IsAvailable ( )

Definition at line 268 of file G4UIcommand.cc.

269{
271
272 for (const auto& s : availabelStateList) {
273 if (s == currentState) {
274 return true;
275 }
276 }
277
278 return false;
279}
G4ApplicationState
const G4ApplicationState & GetCurrentState() const
static G4StateManager * GetStateManager()

Referenced by G4UImanager::ApplyCommand().

◆ IsWorkerThreadOnly()

G4bool G4UIcommand::IsWorkerThreadOnly ( ) const
inline

Definition at line 157 of file G4UIcommand.hh.

157{ return workerThreadOnly; }

Referenced by G4UIcommandTree::RemoveCommand().

◆ List()

void G4UIcommand::List ( )
virtual

Definition at line 323 of file G4UIcommand.cc.

324{
325 G4cout << G4endl;
326 G4cout << G4endl;
327 if (commandPath.back() != '/') {
328 G4cout << "Command " << commandPath << G4endl;
329 }
330 if (workerThreadOnly) {
331 G4cout << " ---- available only in worker thread" << G4endl;
332 }
333
334 G4cout << "Guidance :" << G4endl;
335 for (const auto& i_thGuidance : commandGuidance) {
336 G4cout << i_thGuidance << G4endl;
337 }
338
339 if (!rangeExpression.empty()) {
340 G4cout << " Range of parameters : " << rangeExpression << G4endl;
341 }
342
343 for (const auto& i_thParameter : parameter) {
344 i_thParameter->List();
345 }
346 G4cout << G4endl;
347}
#define G4endl
Definition G4ios.hh:67
G4GLOB_DLL std::ostream G4cout

Referenced by G4VBasicShell::TerminalHelp().

◆ operator!=()

G4bool G4UIcommand::operator!= ( const G4UIcommand & right) const

Definition at line 116 of file G4UIcommand.cc.

117{
118 return (commandPath != right.GetCommandPath());
119}
const G4String & GetCommandPath() const

◆ operator==()

G4bool G4UIcommand::operator== ( const G4UIcommand & right) const

Definition at line 110 of file G4UIcommand.cc.

111{
112 return (commandPath == right.GetCommandPath());
113}

◆ ResetFailure()

void G4UIcommand::ResetFailure ( )
inline

Definition at line 171 of file G4UIcommand.hh.

172 {
175 }

Referenced by G4UImanager::ApplyCommand(), and G4UIcontrolMessenger::SetNewValue().

◆ SetCommandType()

void G4UIcommand::SetCommandType ( CommandType typ)

Definition at line 76 of file G4UIcommand.cc.

77{
78 if (messenger == nullptr) { // this must be a directory
79 if (typ != CmdDirectory) {
81 ed << "A UI command <" << commandPath << "> is defined without vaild messenger.";
82 G4Exception("G4UIcommand::SetCommandType", "UI2031", FatalException, ed);
83 }
84 else if (commandPath.back() != '/') {
86 ed << "G4UIcommand Warning : \n"
87 << " <" << commandPath << "> must be a directory."
88 << " '/' is appended.";
89 G4Exception("G4UIcommand::SetCommandType", "UI2032", JustWarning, ed);
90 commandPath += "/";
91 }
92 }
93 commandType = typ;
94}
@ JustWarning
@ FatalException
void G4Exception(const char *originOfException, const char *exceptionCode, G4ExceptionSeverity severity, const char *description)
std::ostringstream G4ExceptionDescription

Referenced by G4UIcmdWith3Vector::G4UIcmdWith3Vector(), G4UIcmdWith3VectorAndUnit::G4UIcmdWith3VectorAndUnit(), G4UIcmdWithABool::G4UIcmdWithABool(), G4UIcmdWithADouble::G4UIcmdWithADouble(), G4UIcmdWithADoubleAndUnit::G4UIcmdWithADoubleAndUnit(), G4UIcmdWithALongInt::G4UIcmdWithALongInt(), G4UIcmdWithAnInteger::G4UIcmdWithAnInteger(), G4UIcmdWithAString::G4UIcmdWithAString(), G4UIcmdWithoutParameter::G4UIcmdWithoutParameter(), G4UIdirectory::G4UIdirectory(), and G4UIdirectory::G4UIdirectory().

◆ SetDefaultSortFlag()

void G4UIcommand::SetDefaultSortFlag ( G4bool val)
inline

Definition at line 196 of file G4UIcommand.hh.

196{ ifSort = val; }

Referenced by G4UIcommandTree::AddNewCommand().

◆ SetGuidance()

void G4UIcommand::SetGuidance ( const char * aGuidance)
inline

Definition at line 145 of file G4UIcommand.hh.

145{ commandGuidance.emplace_back(aGuidance); }

Referenced by G4VVisCommand::CopyGuidanceFrom(), G4GenericMessenger::DeclareMethodWithUnit(), G4GenericMessenger::DeclareProperty(), G4GenericMessenger::DeclarePropertyWithUnit(), G4FieldSetupMessenger::G4FieldSetupMessenger(), G4ModelCmdActive< M >::G4ModelCmdActive(), G4ModelCmdAddInt< M >::G4ModelCmdAddInt(), G4ModelCmdAddInterval< M >::G4ModelCmdAddInterval(), G4ModelCmdAddIntervalContext< M >::G4ModelCmdAddIntervalContext(), G4ModelCmdAddString< M >::G4ModelCmdAddString(), G4ModelCmdAddValue< M >::G4ModelCmdAddValue(), G4ModelCmdAddValueContext< M >::G4ModelCmdAddValueContext(), G4ModelCmdDraw< M >::G4ModelCmdDraw(), G4ModelCmdInvert< M >::G4ModelCmdInvert(), G4ModelCmdReset< M >::G4ModelCmdReset(), G4ModelCmdSetAuxPtsFillStyle< M >::G4ModelCmdSetAuxPtsFillStyle(), G4ModelCmdSetAuxPtsSize< M >::G4ModelCmdSetAuxPtsSize(), G4ModelCmdSetAuxPtsSizeType< M >::G4ModelCmdSetAuxPtsSizeType(), G4ModelCmdSetAuxPtsType< M >::G4ModelCmdSetAuxPtsType(), G4ModelCmdSetAuxPtsVisible< M >::G4ModelCmdSetAuxPtsVisible(), G4ModelCmdSetDrawAuxPts< M >::G4ModelCmdSetDrawAuxPts(), G4ModelCmdSetDrawLine< M >::G4ModelCmdSetDrawLine(), G4ModelCmdSetDrawStepPts< M >::G4ModelCmdSetDrawStepPts(), G4ModelCmdSetLineVisible< M >::G4ModelCmdSetLineVisible(), G4ModelCmdSetStepPtsFillStyle< M >::G4ModelCmdSetStepPtsFillStyle(), G4ModelCmdSetStepPtsSize< M >::G4ModelCmdSetStepPtsSize(), G4ModelCmdSetStepPtsSizeType< M >::G4ModelCmdSetStepPtsSizeType(), G4ModelCmdSetStepPtsType< M >::G4ModelCmdSetStepPtsType(), G4ModelCmdSetStepPtsVisible< M >::G4ModelCmdSetStepPtsVisible(), G4ModelCmdSetString< M >::G4ModelCmdSetString(), G4ModelCmdSetTimeSliceInterval< M >::G4ModelCmdSetTimeSliceInterval(), G4ModelCmdVerbose< M >::G4ModelCmdVerbose(), and G4VisCommandModelCreate< Factory >::SetNewValue().

◆ SetParameter()

◆ SetRange()

void G4UIcommand::SetRange ( const char * rs)
inline

Definition at line 120 of file G4UIcommand.hh.

120{ rangeExpression = rs; }

◆ SetToBeBroadcasted()

void G4UIcommand::SetToBeBroadcasted ( G4bool val)
inline

Definition at line 152 of file G4UIcommand.hh.

152{ toBeBroadcasted = val; }

Referenced by G4UIcommandTree::AddNewCommand().

◆ SetToBeFlushed()

void G4UIcommand::SetToBeFlushed ( G4bool val)
inline

Definition at line 154 of file G4UIcommand.hh.

154{ toBeFlushed = val; }
G4bool toBeFlushed

◆ SetWorkerThreadOnly()

void G4UIcommand::SetWorkerThreadOnly ( G4bool val = true)
inline

Definition at line 156 of file G4UIcommand.hh.

156{ workerThreadOnly = val; }

Referenced by G4UIcommandTree::AddNewCommand().

◆ ToBeBroadcasted()

G4bool G4UIcommand::ToBeBroadcasted ( ) const
inline

Definition at line 153 of file G4UIcommand.hh.

153{ return toBeBroadcasted; }

Referenced by G4UIcommandTree::AddNewCommand(), and G4UImanager::ApplyCommand().

◆ ToBeFlushed()

G4bool G4UIcommand::ToBeFlushed ( ) const
inline

Definition at line 155 of file G4UIcommand.hh.

155{ return toBeFlushed; }

◆ UnitsList()

G4String G4UIcommand::UnitsList ( const char * unitCategory)
static

Definition at line 294 of file G4UIcommand.cc.

295{
297
298 auto ucatIter = std::find_if(std::cbegin(UTbl), std::cend(UTbl), [&unitCategory](const auto& ud) {
299 return ud->GetName() == unitCategory;
300 });
301
302 if (ucatIter == std::cend(UTbl)) {
303 G4cerr << "Unit category <" << unitCategory << "> is not defined." << G4endl;
304 return G4String();
305 }
306
307 G4String symList;
308 G4String nameList;
309 G4UnitsContainer& UCnt = (*ucatIter)->GetUnitsList();
310
311 for (const auto& uDef : UCnt) {
312 symList += uDef->GetSymbol();
313 symList += " ";
314 nameList += uDef->GetName();
315 nameList += " ";
316 }
317 symList += nameList;
318 G4StrUtil::rstrip(symList);
319 return symList;
320}
std::vector< G4UnitDefinition * > G4UnitsContainer
std::vector< G4UnitsCategory * > G4UnitsTable
G4GLOB_DLL std::ostream G4cerr
static G4UnitsTable & GetUnitsTable()

Referenced by G4UIparameter::SetDefaultUnit(), G4UIcmdWith3VectorAndUnit::SetUnitCategory(), and G4UIcmdWithADoubleAndUnit::SetUnitCategory().

◆ ValueOf()

Member Data Documentation

◆ commandFailureCode

G4int G4UIcommand::commandFailureCode = 0
protected

Definition at line 205 of file G4UIcommand.hh.

Referenced by CommandFailed(), CommandFailed(), IfCommandFailed(), and ResetFailure().

◆ failureDescription

G4String G4UIcommand::failureDescription = ""
protected

Definition at line 206 of file G4UIcommand.hh.

Referenced by CommandFailed(), CommandFailed(), GetFailureDescription(), and ResetFailure().

◆ ifSort

G4bool G4UIcommand::ifSort = false
protected

Definition at line 208 of file G4UIcommand.hh.

Referenced by G4UIdirectory::IfSort(), SetDefaultSortFlag(), and G4UIdirectory::Sort().

◆ toBeBroadcasted

G4bool G4UIcommand::toBeBroadcasted = false
protected

Definition at line 201 of file G4UIcommand.hh.

Referenced by G4UIcommand(), SetToBeBroadcasted(), and ToBeBroadcasted().

◆ toBeFlushed

G4bool G4UIcommand::toBeFlushed = false
protected

Definition at line 202 of file G4UIcommand.hh.

Referenced by SetToBeFlushed(), and ToBeFlushed().

◆ workerThreadOnly

G4bool G4UIcommand::workerThreadOnly = false
protected

Definition at line 203 of file G4UIcommand.hh.

Referenced by DoIt(), IsWorkerThreadOnly(), List(), and SetWorkerThreadOnly().


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