42#include <tools/sg/separator>
43#include <tools/sg/matrix>
44#include <tools/sg/rgba>
45#include <tools/sg/draw_style>
46#include <tools/sg/atb_vertices>
47#include <tools/sg/markers>
48#ifdef TOOLS_USE_FREETYPE
49#include <toolx/sg/text_freetype>
50#include <tools/sg/strings>
51#include <tools/font/lato_regular_ttf>
52#include <tools/font/roboto_bold_ttf>
53#include <toolx/sg/text_freetype_marker>
55#include <tools/sg/dummy_freetype>
56#include <tools/sg/text_hershey_marker>
60#include <tools/sg/dummy_freetype>
61#include <tools/sg/light_off>
62#include <tools/sg/plots>
63#include <tools/sg/h2plot_cp>
64#include <tools/sg/plotter_style>
65#include <tools/sg/event_dispatcher>
66#include <tools/sg/path>
67#include <tools/sg/search>
68#include <tools/histo/h1d>
69#include <tools/histo/h2d>
70#include <tools/sg/plotter_some_styles>
83#if defined(TOOLS_USE_FREETYPE)
85 fFreetypeNode->add_embedded_font(tools::sg::font_lato_regular_ttf(),tools::font::lato_regular_ttf);
86 fFreetypeNode->add_embedded_font(tools::sg::font_roboto_bold_ttf(),tools::font::roboto_bold_ttf);
110 size_t nWorlds = transportationManager->
GetNoWorlds();
111 std::vector<G4VPhysicalVolume*>::iterator iterWorld = transportationManager->
GetWorldsIterator();
113 for (
size_t i = 0; i < nWorlds; ++i, ++iterWorld) {
129 tools::sg::separator* sep =
new tools::sg::separator;
137 tools::sg::separator* sep =
new tools::sg::separator;
144 typedef std::vector<PVNodeID> PVPath;
146 const PVPath& fullPVPath = pPVModel->GetFullPVPath();
156 for (; iWorld < nWorlds; ++iWorld) {
157 if (fullPVPath[0].GetPhysicalVolume() ==
160 if (iWorld == nWorlds) {
162 "World mis-match - not possible(!?)");
171 const size_t depth = fullPVPath.size();
173 while (iDepth < depth) {
174 const auto& children = node->children();
175 const G4int nChildren = (
G4int)children.size();
178 for (; iChild < nChildren; ++iChild) {
180 if (child->
GetPVNodeID() == fullPVPath[iDepth])
break;
182 if (iChild != nChildren) {
214 if (a_polyline.size() == 0)
return;
216 tools::sg::separator* parentNode = 0;
218 parentNode =
new tools::sg::separator;
227 if(!parentNode)
return;
229 tools::sg::matrix* mtx =
new tools::sg::matrix;
235 parentNode->add(mtx);
238 {
const auto& colour =
GetColour(a_polyline);
239 tools::sg::rgba* mat =
new tools::sg::rgba();
241 tools::colorf(
float(colour.GetRed()),
242 float(colour.GetGreen()),
243 float(colour.GetBlue()),
244 float(colour.GetAlpha()));
245 parentNode->add(mat);}
247 {tools::sg::draw_style* ds =
new tools::sg::draw_style;
248 ds->style = tools::sg::draw_lines;
250 parentNode->add(ds);}
252 tools::sg::vertices* vtxs =
new tools::sg::vertices;
253 vtxs->mode = tools::gl::line_strip();
254 parentNode->add(vtxs);
256 {
for (
size_t i = 0; i < a_polyline.size(); ++i) {
257 vtxs->add(
float(a_polyline[i].x()),
float(a_polyline[i].y()),
float(a_polyline[i].z()));
266 if (a_polymarker.size() == 0)
return;
268 if (!currentNode)
return;
271 {tools::sg::matrix* mtx =
new tools::sg::matrix;
277 currentNode->add(mtx);}
279 {
const auto& colour =
GetColour(a_polymarker);
280 tools::sg::rgba* mat =
new tools::sg::rgba();
282 tools::colorf(
float(colour.GetRed()),
283 float(colour.GetGreen()),
284 float(colour.GetBlue()),
285 float(colour.GetAlpha()));
286 currentNode->add(mat);}
295 tools::sg::draw_style* ds =
new tools::sg::draw_style;
296 ds->style = tools::sg::draw_points;
298 currentNode->add(ds);
299 tools::sg::vertices* vtxs =
new tools::sg::vertices;
300 vtxs->mode = tools::gl::points();
301 {
for (
size_t i = 0; i < a_polymarker.size(); ++i) {
302 vtxs->add(
float(a_polymarker[i].x()),
float(a_polymarker[i].y()),
float(a_polymarker[i].z()));
304 currentNode->add(vtxs);
308 {tools::sg::markers* markers =
new tools::sg::markers;
312 diameter *=
fpScene->GetExtent().GetExtentRadius()/scale;
314 markers->size = diameter;
315 markers->style = tools::sg::marker_circle_line;
316 for (
size_t i = 0; i < a_polymarker.size(); ++i) {
317 markers->add(
float(a_polymarker[i].x()),
float(a_polymarker[i].y()),
float(a_polymarker[i].z()));
319 currentNode->add(markers);}
323 {tools::sg::markers* markers =
new tools::sg::markers;
327 side *=
fpScene->GetExtent().GetExtentRadius()/scale;
329 markers->size = side;
330 markers->style = tools::sg::marker_square_line;
331 for (
size_t i = 0; i < a_polymarker.size(); ++i) {
332 markers->add(
float(a_polymarker[i].x()),
float(a_polymarker[i].y()),
float(a_polymarker[i].z()));
334 currentNode->add(markers);}
346 tools::sg::separator* parentNode = 0;
348 parentNode =
new tools::sg::separator;
355 tools::sg::matrix* mtx =
new tools::sg::matrix;
356 mtx->set_translate(pos.x(),pos.y(),pos.z());
357 parentNode->add(mtx);
361 if (!parentNode)
return;
363 tools::sg::matrix* mtx =
new tools::sg::matrix;
369 parentNode->add(mtx);
376 tools::sg::rgba* mat =
new tools::sg::rgba();
378 tools::colorf(
float(colour.GetRed()),
379 float(colour.GetGreen()),
380 float(colour.GetBlue()),
381 float(colour.GetAlpha()));
382 parentNode->add(mat);}
384#ifdef TOOLS_USE_FREETYPE
385 toolx::sg::text_freetype_marker* text =
new toolx::sg::text_freetype_marker;
386 text->add_embedded_font(tools::sg::font_lato_regular_ttf(),tools::font::lato_regular_ttf);
387 text->font = tools::sg::font_lato_regular_ttf();
388 text->front_face = tools::sg::winding_cw;
391 tools::sg::text_hershey_marker* text =
new tools::sg::text_hershey_marker;
394 text->height = float(size);
395 text->strings.add(a_text.
GetText());
399 text->hjust = tools::sg::left;
402 text->hjust = tools::sg::center;
405 text->hjust = tools::sg::right;
409 parentNode->add(text);
446 std::vector<G4Point3D> vertices;
447 std::vector<G4Normal3D> normals;
451 typedef std::pair<G4Point3D,G4Point3D> Line;
452 std::vector<Line> lines;
453 auto insertIfNew = [&lines](
const Line& newLine) {
459 lines.push_back(newLine);
462 G4bool isAuxilaryEdgeVisible =
fpViewer->GetViewParameters().IsAuxEdgeVisible();
469 notLastFace = a_polyhedron.
GetNextFacet(nEdges, vertex, edgeFlag, normal);
470 vertices.push_back(vertex[0]);
471 vertices.push_back(vertex[1]);
472 vertices.push_back(vertex[2]);
473 normals.push_back(normal[0]);
474 normals.push_back(normal[1]);
475 normals.push_back(normal[2]);
476 if(isAuxilaryEdgeVisible||edgeFlag[0]>0)insertIfNew(Line(vertex[0],vertex[1]));
477 if(isAuxilaryEdgeVisible||edgeFlag[1]>0)insertIfNew(Line(vertex[1],vertex[2]));
481 if(isAuxilaryEdgeVisible||edgeFlag[2]>0)insertIfNew(Line(vertex[2],vertex[0]));
482 }
else if (nEdges == 4) {
485 vertices.push_back(vertex[2]);
486 vertices.push_back(vertex[3]);
487 vertices.push_back(vertex[0]);
488 normals.push_back(normal[2]);
489 normals.push_back(normal[3]);
490 normals.push_back(normal[0]);
491 if(isAuxilaryEdgeVisible||edgeFlag[2]>0)insertIfNew(Line(vertex[2],vertex[3]));
492 if(isAuxilaryEdgeVisible||edgeFlag[3]>0)insertIfNew(Line(vertex[3],vertex[0]));
495 <<
"ERROR: polyhedron face with unexpected number of edges (" << nEdges <<
')'
496 <<
"\n Tag: " <<
fpModel->GetCurrentTag()
500 }
while (notLastFace);
503 switch (drawing_style) {
520 if (!currentNode)
return;
522 tools::sg::separator* sep =
new tools::sg::separator;
523 currentNode->add(sep);
526 {tools::sg::matrix* mtx =
new tools::sg::matrix;
534 {
const auto& colour =
GetColour(a_polyhedron);
535 tools::sg::rgba* mat =
new tools::sg::rgba();
537 tools::colorf(
float(colour.GetRed()),
538 float(colour.GetGreen()),
539 float(colour.GetBlue()),
540 float(colour.GetAlpha()));
547 {tools::sg::draw_style* ds =
new tools::sg::draw_style;
548 ds->style = tools::sg::draw_filled;
552 tools::sg::atb_vertices* vtxs =
new tools::sg::atb_vertices;
553 vtxs->mode = tools::gl::triangles();
556 const auto nVerts = vertices.size();
557 for (
size_t i = 0; i < nVerts; i++) {
558 vtxs->add(
float(vertices[i].x()),
float(vertices[i].y()),
float(vertices[i].z()));
559 vtxs->add_normal(
float(normals[i].x()),
float(normals[i].y()),
float(normals[i].z()));
567 {tools::sg::draw_style* ds =
new tools::sg::draw_style;
568 ds->style = tools::sg::draw_lines;
572 tools::sg::vertices* vtxs =
new tools::sg::vertices;
573 vtxs->mode = tools::gl::lines();
576 for (
const auto& line: lines) {
577 vtxs->add(
float(line.first.x()),
float(line.first.y()),
float(line.first.z()));
578 vtxs->add(
float(line.second.x()),
float(line.second.y()),
float(line.second.z()));
591 tools::sg::plots& a_plots,
592 tools::sg::plotter& a_plotter,
594 if(a_style==
"reset") {
595 a_plotter.reset_style(
true);
597 }
else if( (a_style==
"inlib_default")|| (a_style==
"default")) {
598 tools::sg::set_inlib_default_style(
G4cout,a_styles.cmaps(),a_plotter,tools::sg::font_hershey());
599 }
else if(a_style==
"ROOT_default") {
600 tools::sg::set_ROOT_default_style(
G4cout,a_styles.cmaps(),a_plotter,tools::sg::font_roboto_bold_ttf());
601 }
else if(a_style==
"hippodraw") {
602 tools::sg::set_hippodraw_style(
G4cout,a_styles.cmaps(),a_plotter,tools::sg::font_lato_regular_ttf());
604 tools::sg::style_from_res(a_styles,a_style,a_plotter,
false);
608inline tools::xml::styles::style_t*
find_style(tools::xml::styles& a_styles,
const std::string& a_name) {
609 tools_vforit(tools::xml::styles::named_style_t,a_styles.named_styles(),it){
610 if((*it).first==a_name)
return &((*it).second);
616 const std::vector<G4String>& a_plotter_styles,
617 const std::vector<G4Plotter::RegionStyle>& a_region_styles) {
621 tools::xml::styles _tools_styles(
G4cout);
622 _tools_styles.add_colormap(
"default",tools::sg::style_default_colormap());
623 _tools_styles.add_colormap(
"ROOT",tools::sg::style_ROOT_colormap());
626 tools::xml::styles::style_t _tools_style;
628 const G4String& param = (*its).first;
629 if(param.find(
'.')==std::string::npos) {
630 const G4String& value = (*its).second;
631 _tools_style.push_back(tools::xml::styles::style_item_t(param,value));
634 _tools_styles.add_style((*it).first,_tools_style);
640 const G4String& param = (*its).first;
641 std::string::size_type pos = param.rfind(
'.');
642 if(pos!=std::string::npos) {
643 std::string sub_style = (*it).first+
"."+param.substr(0,pos);
644 G4String parameter = param.substr(pos+1,param.size()-pos);
645 const G4String& value = (*its).second;
646 tools::xml::styles::style_t* _tools_style =
find_style(_tools_styles,sub_style);
648 _tools_style->push_back(tools::xml::styles::style_item_t(parameter,value));
650 tools::xml::styles::style_t _tools_style_2;
651 _tools_style_2.push_back(tools::xml::styles::style_item_t(parameter,value));
652 _tools_styles.add_style(sub_style,_tools_style_2);
658 {
unsigned int number = a_plots.number();
659 for(
unsigned int index=0;index<number;index++) {
660 tools::sg::plotter* _plotter = a_plots.find_plotter(index);
662 tools_vforcit(
G4String,a_plotter_styles,it) {
668 tools::sg::plotter* _plotter = a_plots.find_plotter((*it).first);
676 const std::vector<G4Plotter::RegionParameter>& a_region_parameters) {
685 tools::sg::plotter* _plotter = a_plots.find_plotter((*it).first);
687 const G4String& parameter = (*it).second.first;
688 const G4String& value = (*it).second.second;
689 tools::sg::field* fd = _plotter->find_field_by_name(parameter);
690 if(!fd) fd = _plotter->find_field_by_name(_plotter->s_cls()+
"."+parameter);
691 if(fd) {
if(fd->s2value(value))
continue;}
695 if(!_plotter->set_from_string(
G4cout,a_cmaps,parameter,value)) {
696 G4cout <<
"G4ToolsSGSceneHandler::SetPlotterParameters: plotter.set_from_string() failed for field "
697 << tools::sout(parameter) <<
", and value " << tools::sout(value) <<
"."
711 tools::sg::plotter* _plotter = a_plots.find_plotter((*it).first);
713 int hid = (*it).second;
714 std::ostringstream os;
716 std::string cmd(
"/analysis/h1/get ");
717 cmd += std::string(os.str());
724 if(hexString.size()) {
726 std::istringstream is(hexString);
728 tools::histo::h1d* _h = (tools::histo::h1d*)ptr;
729 tools::sg::plottable* p =
new tools::sg::h1d2plot_cp(*_h);
730 _plotter->add_plottable(p);
734 "G4ToolsSGSceneHandler::SetPlotterHistograms: cannot get histogram - maybe doesn't exist?"
735 "\n Maybe this app does not do analysis at all?"
741 tools::sg::plotter* _plotter = a_plots.find_plotter((*it).first);
743 int hid = (*it).second;
744 std::ostringstream os;
746 std::string cmd(
"/analysis/h2/get ");
747 cmd += std::string(os.str());
754 if(hexString.size()) {
756 std::istringstream is(hexString);
758 tools::histo::h2d* _h = (tools::histo::h2d*)ptr;
759 tools::sg::plottable* p =
new tools::sg::h2d2plot_cp(*_h);
760 _plotter->add_plottable(p);
764 "G4ToolsSGSceneHandler::SetPlotterHistograms: cannot get histogram - maybe doesn't exist?"
765 "\n Maybe this app does not do analysis at all?"
775 virtual tools::sg::return_action
action() {
776 if(
const tools::sg::size_event* sz_evt = tools::sg::event_cast<tools::sg::event,tools::sg::size_event>(*m_event)){
777 m_plots.adjust_size(sz_evt->width(),sz_evt->height());
778 m_event_action->set_done(
true);
779 return tools::sg::return_to_render;
781 return tools::sg::return_none;
795 parent::operator=(a_from);
803 tools::sg::search_action sa(
G4cout);
804 const tools::sg::search_action::paths_t& paths = tools::sg::find_paths<tools::sg::plots>(sa,a_sg);
805 tools_vforcit(tools::sg::path_t,paths,it) {
806 tools::sg::plots* _plots = tools::sg::tail<tools::sg::plots>(*it);
819 if (!currentNode)
return;
821 currentNode->add(
new tools::sg::light_off());
823 tools::sg::plots* _plots =
new tools::sg::plots(*
fFreetypeNode);
824 currentNode->add(_plots);
826 _plots->view_border =
false;
829 {tools::sg::event_dispatcher* dpt =
new tools::sg::event_dispatcher;
830 dpt->add_callback(
new plots_cbk(*_plots));
831 currentNode->add(dpt);}
835 tools::sg::cmaps_t _cmaps;
836 _cmaps[
"default"] = tools::sg::style_default_colormap();
837 _cmaps[
"ROOT"] = tools::sg::style_ROOT_colormap();
849 if (!pSceneHandler) {
850 G4cout <<
"G4ToolsSGSceneHandler::Messenger::SetNewValue: no current sceneHandler. Please create one." <<
G4endl;
854 if(!tsg_scene_handler) {
855 G4cout <<
"G4ToolsSGSceneHandler::Messenger::SetNewValue: current sceneHandler not a G4ToolsSGSceneHandler." <<
G4endl;
858 if(a_cmd==print_plotter_params) {
859 tools::sg::dummy_freetype _ttf;
860 tools::sg::plotter _plotter(_ttf);
861 _plotter.print_available_customization(
G4cout);
void G4Exception(const char *originOfException, const char *exceptionCode, G4ExceptionSeverity severity, const char *description)
HepGeom::Normal3D< G4double > G4Normal3D
HepGeom::Point3D< G4double > G4Point3D
G4GLOB_DLL std::ostream G4cerr
G4GLOB_DLL std::ostream G4cout
std::vector< NamedStyle > Styles
std::pair< G4String, Style > NamedStyle
std::pair< G4String, G4String > StyleItem
static G4PlotterManager & GetInstance()
const Styles & GetStyles() const
std::pair< unsigned int, G4String > RegionStyle
unsigned int GetRows() const
const std::vector< RegionParameter > & GetRegionParameters() const
const std::vector< G4String > & GetStyles() const
const std::vector< Region_h2 > & GetRegionH2s() const
const std::vector< RegionStyle > & GetRegionStyles() const
std::pair< unsigned int, Parameter > RegionParameter
const std::vector< Region_h1 > & GetRegionH1s() const
unsigned int GetColumns() const
void SetMarkerType(MarkerType)
MarkerType GetMarkerType() const
static G4TransportationManager * GetTransportationManager()
std::vector< G4VPhysicalVolume * >::iterator GetWorldsIterator()
std::size_t GetNoWorlds() const
G4int ApplyCommand(const char *aCommand)
G4int GetVerboseLevel() const
G4String GetCurrentValues(const char *aCommand)
static G4UImanager * GetUIpointer()
void SetVerboseLevel(G4int val)
G4Point3D GetPosition() const
const G4Colour & GetTextColour(const G4Text &)
const G4Colour & GetColour()
G4Transform3D fObjectTransformation
G4double GetMarkerSize(const G4VMarker &, MarkerSizeType &)
G4VSceneHandler(G4VGraphicsSystem &system, G4int id, const G4String &name="")
const G4VisAttributes * fpVisAttribs
G4bool fReadyForTransients
G4ViewParameters::DrawingStyle GetDrawingStyle(const G4VisAttributes *)
void StandardSpecialMeshRendering(const G4Mesh &)
static G4VisManager * GetVisManager()
G4VSceneHandler * GetCurrentSceneHandler() const
const G4VisAttributes * GetVisAttributes() const
G4int GetNoFacets() const
G4bool GetNextFacet(G4int &n, G4Point3D *nodes, G4int *edgeFlags=nullptr, G4Normal3D *normals=nullptr) const
plots_cbk(const plots_cbk &a_from)
plots_cbk(tools::sg::plots &a_plots)
virtual tools::sg::return_action action()
plots_cbk & operator=(const plots_cbk &a_from)
tools::sg::plots & m_plots