Import Geant4 10.5.1 source tree
This commit is contained in:
@@ -89,14 +89,14 @@ G4ProcTblElement & G4ProcTblElement::operator=(const G4ProcTblElement &right)
|
||||
|
||||
|
||||
//////////////////////////
|
||||
G4int G4ProcTblElement::operator==(const G4ProcTblElement &right) const
|
||||
G4bool G4ProcTblElement::operator==(const G4ProcTblElement &right) const
|
||||
{
|
||||
return (this == &right);
|
||||
}
|
||||
|
||||
|
||||
//////////////////////////
|
||||
G4int G4ProcTblElement::operator!=(const G4ProcTblElement &right) const
|
||||
G4bool G4ProcTblElement::operator!=(const G4ProcTblElement &right) const
|
||||
{
|
||||
return (this != &right);
|
||||
}
|
||||
|
||||
@@ -990,13 +990,13 @@ G4VProcess* G4ProcessManager::ActivateProcess(G4int index)
|
||||
}
|
||||
|
||||
// ///////////////////////////////////////
|
||||
G4int G4ProcessManager::operator==(const G4ProcessManager &right) const
|
||||
G4bool G4ProcessManager::operator==(const G4ProcessManager &right) const
|
||||
{
|
||||
return (this == &right);
|
||||
}
|
||||
|
||||
// ///////////////////////////////////////
|
||||
G4int G4ProcessManager::operator!=(const G4ProcessManager &right) const
|
||||
G4bool G4ProcessManager::operator!=(const G4ProcessManager &right) const
|
||||
{
|
||||
return (this != &right);
|
||||
}
|
||||
|
||||
@@ -132,13 +132,13 @@ G4ProcessTable & G4ProcessTable::operator=(const G4ProcessTable &)
|
||||
}
|
||||
|
||||
//////////////////////////
|
||||
G4int G4ProcessTable::operator==(const G4ProcessTable &right) const
|
||||
G4bool G4ProcessTable::operator==(const G4ProcessTable &right) const
|
||||
{
|
||||
return (this == &right);
|
||||
}
|
||||
|
||||
//////////////////////////
|
||||
G4int G4ProcessTable::operator!=(const G4ProcessTable &right) const
|
||||
G4bool G4ProcessTable::operator!=(const G4ProcessTable &right) const
|
||||
{
|
||||
return (this != &right);
|
||||
}
|
||||
|
||||
@@ -79,7 +79,7 @@ G4ProcessTableMessenger::G4ProcessTableMessenger(G4ProcessTable* pTable)
|
||||
listCmd = new G4UIcmdWithAString("/process/list",this);
|
||||
listCmd->SetGuidance("List up process names");
|
||||
listCmd->SetGuidance(" list [type] ");
|
||||
listCmd->SetGuidance(" type: process type [all:for all proceeses]");
|
||||
listCmd->SetGuidance(" type: process type [all:for all processes]");
|
||||
listCmd->SetParameterName("type", true);
|
||||
listCmd->SetDefaultValue("all");
|
||||
SetNumberOfProcessType();
|
||||
@@ -108,7 +108,7 @@ G4ProcessTableMessenger::G4ProcessTableMessenger(G4ProcessTable* pTable)
|
||||
procVerboseCmd->SetGuidance(" level: verbose level ");
|
||||
procVerboseCmd->SetGuidance(" name : process name ");
|
||||
procVerboseCmd->SetGuidance(" type : process type ");
|
||||
procVerboseCmd->SetGuidance(" [all] for all proceeses ");
|
||||
procVerboseCmd->SetGuidance(" [all] for all processes ");
|
||||
G4UIparameter* param = new G4UIparameter("verbose",'i',false);
|
||||
procVerboseCmd->SetParameter(param);
|
||||
param = new G4UIparameter("type",'s',true);
|
||||
|
||||
@@ -165,12 +165,12 @@ G4VProcess & G4VProcess::operator=(const G4VProcess &)
|
||||
return *this;
|
||||
}
|
||||
|
||||
G4int G4VProcess::operator==(const G4VProcess &right) const
|
||||
G4bool G4VProcess::operator==(const G4VProcess &right) const
|
||||
{
|
||||
return (this == &right);
|
||||
}
|
||||
|
||||
G4int G4VProcess::operator!=(const G4VProcess &right) const
|
||||
G4bool G4VProcess::operator!=(const G4VProcess &right) const
|
||||
{
|
||||
return (this != &right);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user