1598 {
1599
1602
1604 if (!pScene) {
1606 G4warn <<
"ERROR: No current scene. Please create one." <<
G4endl;
1607 }
1608 return;
1609 } else {
1613 << "ERROR: Scene has no extent. Add volumes or use \"/vis/scene/add/extent\"."
1615 }
1616 return;
1617 }
1618 }
1619
1621 if (!pViewer) {
1624 "ERROR: G4VisCommandSceneAddLogo::SetNewValue: no viewer."
1625 "\n Auto direction needs a viewer."
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
1640 const G4VisExtent& sceneExtent = pScene->
GetExtent();
1641 if (userHeightUnit == "auto") {
1643 } else {
1645 }
1646
1648 xmid *= unit; ymid *= unit; zmid *= unit;
1649
1650 Direction logoDirection = X;
1651 if (direction == "auto") {
1652
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 {
1671 G4warn <<
"ERROR: Unrecogniseed direction: \""
1672 << direction <<
"\"." <<
G4endl;
1673 return;
1674 }
1675 }
1676
1677 G4bool autoPlacing =
false;
if (placement ==
"auto") autoPlacing =
true;
1678
1679
1680
1687
1688
1691 worried = true;
1694 "WARNING: Existing scene does not yet have any extent."
1695 "\n Maybe you have not yet added any geometrical object."
1697 }
1698 }
1699
1700
1701 const G4double halfHeight(height / 2.);
1703 const G4double freeHeightFraction (1. + 2. * comfort);
1704
1705
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;
1725 "WARNING: Not enough room in existing scene. Maybe logo is too large."
1727 }
1728 }
1729 if (worried) {
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."
1738 }
1739 }
1740
1741 G4double sxmid(xmid), symid(ymid), szmid(zmid);
1742 if (autoPlacing) {
1743
1744
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:
1750 sxmid = xmax + halfHeight + xComfort;
1751 symid = ymin - yComfort;
1752 szmid = zmin - zComfort;
1753 break;
1754 case minusX:
1755 sxmid = xmin - halfHeight - xComfort;
1756 symid = ymin - yComfort;
1757 szmid = zmax + zComfort;
1758 break;
1759 case Y:
1760 sxmid = xmin - xComfort;
1761 symid = ymax + halfHeight + yComfort;
1762 szmid = zmin - zComfort;
1763 break;
1764 case minusY:
1765 sxmid = xmax + xComfort;
1766 symid = ymin - halfHeight - yComfort;
1767 szmid = zmin - zComfort;
1768 break;
1769 case Z:
1770 sxmid = xmax + xComfort;
1771 symid = ymin - yComfort;
1772 szmid = zmax + halfHeight + zComfort;
1773 break;
1774 case minusZ:
1775 sxmid = xmin - xComfort;
1776 symid = ymin - yComfort;
1777 szmid = zmin - halfHeight - zComfort;
1778 break;
1779 }
1780 }
1781
1783 switch (logoDirection) {
1784 case X:
1786 break;
1787 case minusX:
1789 break;
1790 case Y:
1792 break;
1793 case minusY:
1795 break;
1796 case Z:
1797
1798 break;
1799 case minusZ:
1801 break;
1802 }
1804
1805 G4VisAttributes visAtts(G4Colour(red, green, blue));
1806 visAtts.SetForceSolid(true);
1807
1808 G4Logo* logo = new G4Logo(height,visAtts,transform);
1809 G4VModel* model =
1810 new G4CallbackModel<G4VisCommandSceneAddLogo::G4Logo>(logo);
1816 G4VisExtent extent(-h,h,-h2,h2,-h2,h2);
1817 model->
SetExtent(extent.Transform(transform));
1818
1819
1820 const G4String& currentSceneName = pScene -> GetName ();
1821 G4bool successful = pScene -> AddRunDurationModel (model, warn);
1822 if (successful) {
1824 G4cout <<
"G4 Logo of height " << userHeight <<
' ' << userHeightUnit
1825 << ", " << direction << "-direction, added to scene \""
1826 << currentSceneName << "\"";
1828 G4cout <<
"\n with extent " << extent
1831 }
1833 }
1834 }
1836
1838}
HepGeom::Vector3D< G4double > G4Vector3D
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 GetExtentRadius() const