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

#include <G4VisCommandsSceneAdd.hh>

+ Inheritance diagram for G4VisCommandSceneAddLogo:

Public Member Functions

 G4VisCommandSceneAddLogo ()
 
virtual ~G4VisCommandSceneAddLogo ()
 
G4String GetCurrentValue (G4UIcommand *command)
 
void SetNewValue (G4UIcommand *command, G4String newValue)
 
- Public Member Functions inherited from G4VVisCommandScene
 G4VVisCommandScene ()
 
virtual ~G4VVisCommandScene ()
 
- Public Member Functions inherited from G4VVisCommand
 G4VVisCommand ()
 
virtual ~G4VVisCommand ()
 
- Public Member Functions inherited from G4UImessenger
 G4UImessenger ()=default
 
 G4UImessenger (const G4String &path, const G4String &dsc, G4bool commandsToBeBroadcasted=true)
 
virtual ~G4UImessenger ()
 
G4bool CommandsShouldBeInMaster () const
 

Additional Inherited Members

- Static Public Member Functions inherited from G4VVisCommand
static G4VisManagerGetVisManager ()
 
static void SetVisManager (G4VisManager *pVisManager)
 
static const G4ColourGetCurrentTextColour ()
 
- Protected Member Functions inherited from G4VVisCommandScene
G4String CurrentSceneName ()
 
- Protected Member Functions inherited from G4VVisCommand
void SetViewParameters (G4VViewer *viewer, const G4ViewParameters &viewParams)
 
void RefreshIfRequired (G4VViewer *viewer)
 
void InterpolateViews (G4VViewer *currentViewer, const std::vector< G4ViewParameters > &viewVector, const G4int nInterpolationPoints=50, const G4int waitTimePerPointmilliseconds=20, const G4String &exportString="")
 
void InterpolateToNewView (G4VViewer *currentViewer, const G4ViewParameters &oldVP, const G4ViewParameters &newVP, const G4int nInterpolationPoints=50, const G4int waitTimePerPointmilliseconds=20, const G4String &exportString="")
 
void Twinkle (G4VViewer *currentViewer, const G4ViewParameters &baseVP, const std::vector< std::vector< G4PhysicalVolumeModel::G4PhysicalVolumeNodeID > > &paths)
 
const G4StringConvertToColourGuidance ()
 
void ConvertToColour (G4Colour &colour, const G4String &redOrString, G4double green, G4double blue, G4double opacity)
 
G4bool ProvideValueOfUnit (const G4String &where, const G4String &unit, const G4String &category, G4double &value)
 
void CopyCameraParameters (G4ViewParameters &target, const G4ViewParameters &from)
 
void CheckSceneAndNotifyHandlers (G4Scene *=nullptr)
 
G4bool CheckView ()
 
void G4VisCommandsSceneAddUnsuccessful (G4VisManager::Verbosity verbosity)
 
void CopyGuidanceFrom (const G4UIcommand *fromCmd, G4UIcommand *toCmd, G4int startLine=0)
 
void CopyParametersFrom (const G4UIcommand *fromCmd, G4UIcommand *toCmd)
 
void DrawExtent (const G4VisExtent &)
 
- Protected Member Functions inherited from G4UImessenger
G4String ItoS (G4int i)
 
G4String LtoS (G4long l)
 
G4String DtoS (G4double a)
 
G4String BtoS (G4bool b)
 
G4int StoI (const G4String &s)
 
G4long StoL (const G4String &s)
 
G4double StoD (const G4String &s)
 
G4bool StoB (const 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)
 
- Static Protected Member Functions inherited from G4VVisCommand
static G4String ConvertToString (G4double x, G4double y, const char *unitName)
 
static G4bool ConvertToDoublePair (const G4String &paramString, G4double &xval, G4double &yval)
 
- Protected Attributes inherited from G4UImessenger
G4UIdirectorybaseDir = nullptr
 
G4String baseDirName = ""
 
G4bool commandsShouldBeInMaster = false
 
- Static Protected Attributes inherited from G4VVisCommand
static G4VisManagerfpVisManager = nullptr
 
static G4int fCurrentArrow3DLineSegmentsPerCircle = 6
 
static G4Colour fCurrentColour = G4Colour::White()
 
static G4double fCurrentLineWidth = 1.
 
static G4Colour fCurrentTextColour = G4Colour::Blue()
 
static G4Text::Layout fCurrentTextLayout = G4Text::left
 
static G4double fCurrentTextSize = 12.
 
static G4PhysicalVolumeModel::TouchableProperties fCurrentTouchableProperties
 
static G4VisExtent fCurrentExtentForField
 
static std::vector< G4PhysicalVolumesSearchScene::FindingsfCurrrentPVFindingsForField
 
static G4bool fThereWasAViewer = false
 
static G4ViewParameters fExistingVP
 
static G4SceneTreeItem fExistingSceneTree
 

Detailed Description

Definition at line 311 of file G4VisCommandsSceneAdd.hh.

Constructor & Destructor Documentation

◆ G4VisCommandSceneAddLogo()

G4VisCommandSceneAddLogo::G4VisCommandSceneAddLogo ( )

Definition at line 1540 of file G4VisCommandsSceneAdd.cc.

1540 {
1541 G4bool omitable;
1542 fpCommand = new G4UIcommand ("/vis/scene/add/logo", this);
1543 fpCommand -> SetGuidance ("Adds a G4 logo to the current scene.");
1544 fpCommand -> SetGuidance
1545 ("If \"unit\" is \"auto\", height is roughly one tenth of scene extent.");
1546 fpCommand -> SetGuidance
1547 ("\"direction\" is that of outward-facing normal to front face of logo."
1548 "\nIf \"direction\" is \"auto\", logo faces the user in the current viewer.");
1549 fpCommand -> SetGuidance
1550 ("\nIf \"placement\" is \"auto\", logo is placed at bottom right of screen"
1551 "\n when viewed from logo direction.");
1552 G4UIparameter* parameter;
1553 parameter = new G4UIparameter ("height", 'd', omitable = true);
1554 parameter->SetDefaultValue (1.);
1555 fpCommand->SetParameter (parameter);
1556 parameter = new G4UIparameter ("unit", 's', omitable = true);
1557 parameter->SetDefaultValue ("auto");
1558 fpCommand->SetParameter (parameter);
1559 parameter = new G4UIparameter ("direction", 's', omitable = true);
1560 parameter->SetGuidance ("auto|[-]x|[-]y|[-]z");
1561 parameter->SetDefaultValue ("auto");
1562 fpCommand->SetParameter (parameter);
1563 parameter = new G4UIparameter ("red", 'd', omitable = true);
1564 parameter->SetDefaultValue (0.);
1565 fpCommand->SetParameter (parameter);
1566 parameter = new G4UIparameter ("green", 'd', omitable = true);
1567 parameter->SetDefaultValue (1.);
1568 fpCommand->SetParameter (parameter);
1569 parameter = new G4UIparameter ("blue", 'd', omitable = true);
1570 parameter->SetDefaultValue (0.);
1571 fpCommand->SetParameter (parameter);
1572 parameter = new G4UIparameter ("placement", 's', omitable = true);
1573 parameter -> SetParameterCandidates("auto manual");
1574 parameter->SetDefaultValue ("auto");
1575 fpCommand->SetParameter (parameter);
1576 parameter = new G4UIparameter ("xmid", 'd', omitable = true);
1577 parameter->SetDefaultValue (0.);
1578 fpCommand->SetParameter (parameter);
1579 parameter = new G4UIparameter ("ymid", 'd', omitable = true);
1580 parameter->SetDefaultValue (0.);
1581 fpCommand->SetParameter (parameter);
1582 parameter = new G4UIparameter ("zmid", 'd', omitable = true);
1583 parameter->SetDefaultValue (0.);
1584 fpCommand->SetParameter (parameter);
1585 parameter = new G4UIparameter ("unit", 's', omitable = true);
1586 parameter->SetDefaultValue ("m");
1587 fpCommand->SetParameter (parameter);
1588}
bool G4bool
Definition G4Types.hh:86
void SetDefaultValue(const char *theDefaultValue)
void SetGuidance(const char *theGuidance)

◆ ~G4VisCommandSceneAddLogo()

G4VisCommandSceneAddLogo::~G4VisCommandSceneAddLogo ( )
virtual

Definition at line 1590 of file G4VisCommandsSceneAdd.cc.

1590 {
1591 delete fpCommand;
1592}

Member Function Documentation

◆ GetCurrentValue()

G4String G4VisCommandSceneAddLogo::GetCurrentValue ( G4UIcommand * command)
virtual

Reimplemented from G4UImessenger.

Definition at line 1594 of file G4VisCommandsSceneAdd.cc.

1594 {
1595 return "";
1596}

◆ SetNewValue()

void G4VisCommandSceneAddLogo::SetNewValue ( G4UIcommand * command,
G4String newValue )
virtual

Reimplemented from G4UImessenger.

Definition at line 1598 of file G4VisCommandsSceneAdd.cc.

1598 {
1599
1600 G4VisManager::Verbosity verbosity = fpVisManager->GetVerbosity();
1601 G4bool warn = verbosity >= G4VisManager::warnings;
1602
1603 G4Scene* pScene = fpVisManager->GetCurrentScene();
1604 if (!pScene) {
1605 if (verbosity >= G4VisManager::errors) {
1606 G4warn << "ERROR: No current scene. Please create one." << G4endl;
1607 }
1608 return;
1609 } else {
1610 if (pScene->GetExtent().GetExtentRadius() <= 0.) {
1611 if (verbosity >= G4VisManager::errors) {
1612 G4warn
1613 << "ERROR: Scene has no extent. Add volumes or use \"/vis/scene/add/extent\"."
1614 << G4endl;
1615 }
1616 return;
1617 }
1618 }
1619
1620 G4VViewer* pViewer = fpVisManager->GetCurrentViewer();
1621 if (!pViewer) {
1622 if (verbosity >= G4VisManager::errors) {
1623 G4warn <<
1624 "ERROR: G4VisCommandSceneAddLogo::SetNewValue: no viewer."
1625 "\n Auto direction needs a viewer."
1626 << G4endl;
1627 }
1628 return;
1629 }
1630
1631 G4double userHeight, red, green, blue, xmid, ymid, zmid;
1632 G4String userHeightUnit, direction, placement, positionUnit;
1633 std::istringstream is (newValue);
1634 is >> userHeight >> userHeightUnit >> direction
1635 >> red >> green >> blue
1636 >> placement
1637 >> xmid >> ymid >> zmid >> positionUnit;
1638
1639 G4double height = userHeight;
1640 const G4VisExtent& sceneExtent = pScene->GetExtent(); // Existing extent.
1641 if (userHeightUnit == "auto") {
1642 height *= 0.2 * sceneExtent.GetExtentRadius();
1643 } else {
1644 height *= G4UIcommand::ValueOf(userHeightUnit);
1645 }
1646
1647 G4double unit = G4UIcommand::ValueOf(positionUnit);
1648 xmid *= unit; ymid *= unit; zmid *= unit;
1649
1650 Direction logoDirection = X; // Initialise to keep some compilers happy.
1651 if (direction == "auto") {
1652 // Take cue from viewer
1653 const G4Vector3D& vp =
1655 if (vp.x() > vp.y() && vp.x() > vp.z()) logoDirection = X;
1656 else if (vp.x() < vp.y() && vp.x() < vp.z()) logoDirection = minusX;
1657 else if (vp.y() > vp.x() && vp.y() > vp.z()) logoDirection = Y;
1658 else if (vp.y() < vp.x() && vp.y() < vp.z()) logoDirection = minusY;
1659 else if (vp.z() > vp.x() && vp.z() > vp.y()) logoDirection = Z;
1660 else if (vp.z() < vp.x() && vp.z() < vp.y()) logoDirection = minusZ;
1661 }
1662 else if (direction[0] == 'x') logoDirection = X;
1663 else if (direction[0] == 'y') logoDirection = Y;
1664 else if (direction[0] == 'z') logoDirection = Z;
1665 else if (direction[0] == '-') {
1666 if (direction[1] == 'x') logoDirection = minusX;
1667 else if (direction[1] == 'y') logoDirection = minusY;
1668 else if (direction[1] == 'z') logoDirection = minusZ;
1669 } else {
1670 if (verbosity >= G4VisManager::errors) {
1671 G4warn << "ERROR: Unrecogniseed direction: \""
1672 << direction << "\"." << G4endl;
1673 return;
1674 }
1675 }
1676
1677 G4bool autoPlacing = false; if (placement == "auto") autoPlacing = true;
1678 // Parameters read and interpreted.
1679
1680 // Current scene extent
1681 const G4double xmin = sceneExtent.GetXmin();
1682 const G4double xmax = sceneExtent.GetXmax();
1683 const G4double ymin = sceneExtent.GetYmin();
1684 const G4double ymax = sceneExtent.GetYmax();
1685 const G4double zmin = sceneExtent.GetZmin();
1686 const G4double zmax = sceneExtent.GetZmax();
1687
1688 // Test existing extent and issue warnings...
1689 G4bool worried = false;
1690 if (sceneExtent.GetExtentRadius() == 0) {
1691 worried = true;
1692 if (verbosity >= G4VisManager::warnings) {
1693 G4warn <<
1694 "WARNING: Existing scene does not yet have any extent."
1695 "\n Maybe you have not yet added any geometrical object."
1696 << G4endl;
1697 }
1698 }
1699
1700 // Useful constants, etc...
1701 const G4double halfHeight(height / 2.);
1702 const G4double comfort(0.01); // 0.15 seems too big. 0.05 might be better.
1703 const G4double freeHeightFraction (1. + 2. * comfort);
1704
1705 // Test existing scene for room...
1706 G4bool room = true;
1707 switch (logoDirection) {
1708 case X:
1709 case minusX:
1710 if (freeHeightFraction * (xmax - xmin) < height) room = false;
1711 break;
1712 case Y:
1713 case minusY:
1714 if (freeHeightFraction * (ymax - ymin) < height) room = false;
1715 break;
1716 case Z:
1717 case minusZ:
1718 if (freeHeightFraction * (zmax - zmin) < height) room = false;
1719 break;
1720 }
1721 if (!room) {
1722 worried = true;
1723 if (verbosity >= G4VisManager::warnings) {
1724 G4warn <<
1725 "WARNING: Not enough room in existing scene. Maybe logo is too large."
1726 << G4endl;
1727 }
1728 }
1729 if (worried) {
1730 if (verbosity >= G4VisManager::warnings) {
1731 G4warn <<
1732 "WARNING: The logo you have asked for is bigger than the existing"
1733 "\n scene. Maybe you have added it too soon. It is recommended that"
1734 "\n you add the logo last so that it can be correctly auto-positioned"
1735 "\n so as not to be obscured by any existing object and so that the"
1736 "\n view parameters can be correctly recalculated."
1737 << G4endl;
1738 }
1739 }
1740
1741 G4double sxmid(xmid), symid(ymid), szmid(zmid);
1742 if (autoPlacing) {
1743 // Aim to place at bottom right of screen when viewed from logoDirection.
1744 // Give some comfort zone.
1745 const G4double xComfort = comfort * (xmax - xmin);
1746 const G4double yComfort = comfort * (ymax - ymin);
1747 const G4double zComfort = comfort * (zmax - zmin);
1748 switch (logoDirection) {
1749 case X: // y-axis up, z-axis to left?
1750 sxmid = xmax + halfHeight + xComfort;
1751 symid = ymin - yComfort;
1752 szmid = zmin - zComfort;
1753 break;
1754 case minusX: // y-axis up, z-axis to right?
1755 sxmid = xmin - halfHeight - xComfort;
1756 symid = ymin - yComfort;
1757 szmid = zmax + zComfort;
1758 break;
1759 case Y: // z-axis up, x-axis to left?
1760 sxmid = xmin - xComfort;
1761 symid = ymax + halfHeight + yComfort;
1762 szmid = zmin - zComfort;
1763 break;
1764 case minusY: // z-axis up, x-axis to right?
1765 sxmid = xmax + xComfort;
1766 symid = ymin - halfHeight - yComfort;
1767 szmid = zmin - zComfort;
1768 break;
1769 case Z: // y-axis up, x-axis to right?
1770 sxmid = xmax + xComfort;
1771 symid = ymin - yComfort;
1772 szmid = zmax + halfHeight + zComfort;
1773 break;
1774 case minusZ: // y-axis up, x-axis to left?
1775 sxmid = xmin - xComfort;
1776 symid = ymin - yComfort;
1777 szmid = zmin - halfHeight - zComfort;
1778 break;
1779 }
1780 }
1781
1782 G4Transform3D transform;
1783 switch (logoDirection) {
1784 case X: // y-axis up, z-axis to left?
1785 transform = G4RotateY3D(halfpi);
1786 break;
1787 case minusX: // y-axis up, z-axis to right?
1788 transform = G4RotateY3D(-halfpi);
1789 break;
1790 case Y: // z-axis up, x-axis to left?
1791 transform = G4RotateX3D(-halfpi) * G4RotateZ3D(pi);
1792 break;
1793 case minusY: // z-axis up, x-axis to right?
1794 transform = G4RotateX3D(halfpi);
1795 break;
1796 case Z: // y-axis up, x-axis to right?
1797 // No transformation required.
1798 break;
1799 case minusZ: // y-axis up, x-axis to left?
1800 transform = G4RotateY3D(pi);
1801 break;
1802 }
1803 transform = G4Translate3D(sxmid,symid,szmid) * transform;
1804
1805 G4VisAttributes visAtts(G4Colour(red, green, blue));
1806 visAtts.SetForceSolid(true); // Always solid.
1807
1808 G4Logo* logo = new G4Logo(height,visAtts,transform);
1809 G4VModel* model =
1810 new G4CallbackModel<G4VisCommandSceneAddLogo::G4Logo>(logo);
1811 model->SetType("G4Logo");
1812 model->SetGlobalTag("G4Logo");
1813 model->SetGlobalDescription("G4Logo: " + newValue);
1814 G4double& h = height;
1815 G4double h2 = h/2.;
1816 G4VisExtent extent(-h,h,-h2,h2,-h2,h2);
1817 model->SetExtent(extent.Transform(transform));
1818 // This extent gets "added" to existing scene extent in
1819 // AddRunDurationModel below.
1820 const G4String& currentSceneName = pScene -> GetName ();
1821 G4bool successful = pScene -> AddRunDurationModel (model, warn);
1822 if (successful) {
1823 if (verbosity >= G4VisManager::confirmations) {
1824 G4cout << "G4 Logo of height " << userHeight << ' ' << userHeightUnit
1825 << ", " << direction << "-direction, added to scene \""
1826 << currentSceneName << "\"";
1827 if (verbosity >= G4VisManager::parameters) {
1828 G4cout << "\n with extent " << extent
1829 << "\n at " << transform.getRotation()
1830 << " " << transform.getTranslation();
1831 }
1832 G4cout << G4endl;
1833 }
1834 }
1835 else G4VisCommandsSceneAddUnsuccessful(verbosity);
1836
1838}
#define G4warn
Definition G4Scene.cc:41
HepGeom::Transform3D G4Transform3D
HepGeom::RotateZ3D G4RotateZ3D
HepGeom::RotateX3D G4RotateX3D
HepGeom::RotateY3D G4RotateY3D
HepGeom::Translate3D G4Translate3D
double G4double
Definition G4Types.hh:83
HepGeom::Vector3D< G4double > G4Vector3D
Definition G4Vector3D.hh:34
#define G4endl
Definition G4ios.hh:67
G4GLOB_DLL std::ostream G4cout
const G4VisExtent & GetExtent() const
static G4double ValueOf(const char *unitName)
void SetType(const G4String &)
void SetGlobalDescription(const G4String &)
void SetGlobalTag(const G4String &)
void SetExtent(const G4VisExtent &)
const G4ViewParameters & GetViewParameters() const
void G4VisCommandsSceneAddUnsuccessful(G4VisManager::Verbosity verbosity)
void CheckSceneAndNotifyHandlers(G4Scene *=nullptr)
static G4VisManager * fpVisManager
const G4Vector3D & GetViewpointDirection() const
G4double GetYmin() const
G4double GetXmax() const
G4double GetExtentRadius() const
G4double GetYmax() const
G4double GetZmax() const
G4double GetZmin() const
G4double GetXmin() const
CLHEP::HepRotation getRotation() const
CLHEP::Hep3Vector getTranslation() const

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