Geant4 11.3.0
Toolkit for the simulation of the passage of particles through matter
Loading...
Searching...
No Matches
G4ToolsSGSceneHandler.cc File Reference
#include "G4ToolsSGSceneHandler.hh"
#include "G4ToolsSGNode.hh"
#include "G4TransportationManager.hh"
#include "G4Polyline.hh"
#include "G4Polymarker.hh"
#include "G4Circle.hh"
#include "G4Square.hh"
#include "G4Polyhedron.hh"
#include "G4Text.hh"
#include "G4Mesh.hh"
#include "G4PlotterManager.hh"
#include <tools/sg/separator>
#include <tools/sg/matrix>
#include <tools/sg/rgba>
#include <tools/sg/draw_style>
#include <tools/sg/atb_vertices>
#include <tools/sg/markers>
#include <tools/sg/dummy_freetype>
#include <tools/sg/text_hershey_marker>
#include <tools/sg/light_off>
#include <tools/sg/plots>
#include <tools/sg/h2plot_cp>
#include <tools/sg/plotter_style>
#include <tools/sg/event_dispatcher>
#include <tools/sg/path>
#include <tools/sg/search>
#include <tools/histo/h1d>
#include <tools/histo/h2d>
#include <tools/sg/plotter_some_styles>
#include <utility>
#include "G4UImanager.hh"

Go to the source code of this file.

Classes

class  plots_cbk
 

Functions

void SetRegionStyles (tools::xml::styles &a_styles, tools::sg::plots &a_plots, tools::sg::plotter &a_plotter, const G4String &a_style)
 
tools::xml::styles::style_t * find_style (tools::xml::styles &a_styles, const std::string &a_name)
 
void SetPlotterStyles (tools::sg::plots &a_plots, const std::vector< G4String > &a_plotter_styles, const std::vector< G4Plotter::RegionStyle > &a_region_styles)
 
void SetPlotterParameters (tools::sg::cmaps_t &a_cmaps, tools::sg::plots &a_plots, const std::vector< G4Plotter::RegionParameter > &a_region_parameters)
 

Function Documentation

◆ find_style()

tools::xml::styles::style_t * find_style ( tools::xml::styles & a_styles,
const std::string & a_name )
inline

Definition at line 608 of file G4ToolsSGSceneHandler.cc.

608 {
609 tools_vforit(tools::xml::styles::named_style_t,a_styles.named_styles(),it){
610 if((*it).first==a_name) return &((*it).second);
611 }
612 return 0;
613}

Referenced by SetPlotterStyles().

◆ SetPlotterParameters()

void SetPlotterParameters ( tools::sg::cmaps_t & a_cmaps,
tools::sg::plots & a_plots,
const std::vector< G4Plotter::RegionParameter > & a_region_parameters )
inline

Definition at line 675 of file G4ToolsSGSceneHandler.cc.

676 {
677 // parameter/field examples :
678 // title_automated
679 // title
680 // bins_style.0.color
681 // x_axis.divisions
682 // x_axis.line_style.color
683 // background_style.back_color
684 tools_vforcit(G4Plotter::RegionParameter,a_region_parameters,it) {
685 tools::sg::plotter* _plotter = a_plots.find_plotter((*it).first);
686 if(_plotter) {
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;}
692 // look for sf_enum for which value is given with a string, or
693 // for sf<bool> for which value given with true/false, or
694 // for a style, for example: bins_style.0.color:
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) << "."
698 << std::endl;
699 }
700 }
701 }
702}
G4GLOB_DLL std::ostream G4cout
std::pair< unsigned int, Parameter > RegionParameter
Definition G4Plotter.hh:44

Referenced by G4ToolsSGSceneHandler::AddPrimitive().

◆ SetPlotterStyles()

void SetPlotterStyles ( tools::sg::plots & a_plots,
const std::vector< G4String > & a_plotter_styles,
const std::vector< G4Plotter::RegionStyle > & a_region_styles )
inline

Definition at line 615 of file G4ToolsSGSceneHandler.cc.

617 {
618
620
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());
624
625 {tools_vforcit(G4PlotterManager::NamedStyle,_styles,it) {
626 tools::xml::styles::style_t _tools_style;
627 tools_vforcit(G4PlotterManager::StyleItem,(*it).second,its) {
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));
632 }
633 }
634 _tools_styles.add_style((*it).first,_tools_style);
635 }}
636
637 // sub styles:
638 {tools_vforcit(G4PlotterManager::NamedStyle,_styles,it) {
639 tools_vforcit(G4PlotterManager::StyleItem,(*it).second,its) {
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);
647 if(_tools_style) {
648 _tools_style->push_back(tools::xml::styles::style_item_t(parameter,value));
649 } else {
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);
653 }
654 }
655 }
656 }}
657
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);
661 if(_plotter) {
662 tools_vforcit(G4String,a_plotter_styles,it) {
663 SetRegionStyles(_tools_styles,a_plots,*_plotter,*it);
664 }
665 }
666 }}
667 {tools_vforcit(G4Plotter::RegionStyle,a_region_styles,it) {
668 tools::sg::plotter* _plotter = a_plots.find_plotter((*it).first);
669 if(_plotter) {
670 SetRegionStyles(_tools_styles,a_plots,*_plotter,(*it).second);
671 }
672 }}
673}
void SetRegionStyles(tools::xml::styles &a_styles, tools::sg::plots &a_plots, tools::sg::plotter &a_plotter, const G4String &a_style)
tools::xml::styles::style_t * find_style(tools::xml::styles &a_styles, const std::string &a_name)
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
Definition G4Plotter.hh:42

Referenced by G4ToolsSGSceneHandler::AddPrimitive().

◆ SetRegionStyles()

void SetRegionStyles ( tools::xml::styles & a_styles,
tools::sg::plots & a_plots,
tools::sg::plotter & a_plotter,
const G4String & a_style )
inline

Definition at line 590 of file G4ToolsSGSceneHandler.cc.

593 {
594 if(a_style=="reset") {
595 a_plotter.reset_style(true);
596 a_plots.touch(); //to apply indirectly plots::set_plotter_layout() on _plotter.
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());
603 } else {
604 tools::sg::style_from_res(a_styles,a_style,a_plotter,false);
605 }
606}

Referenced by SetPlotterStyles().