File: ba_plot.gv

package info (click to toggle)
bornagain 23.0-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 103,936 kB
  • sloc: cpp: 423,131; python: 40,997; javascript: 11,167; awk: 630; sh: 318; ruby: 173; xml: 130; makefile: 51; ansic: 24
file content (32 lines) | stat: -rw-r--r-- 919 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# ba_plot call chains
# 22nov23

digraph main
{
node [shape=box];
"API calls" -> parse_args;
"API calls" -> show_or_export;
"API calls" -> simargs;
"API calls" -> plot_simres;
"API calls" -> plot_simulation_result;
"API calls" -> plot_multicurve;
"API calls" -> make_plot;
"API calls" -> make_plot_row;
plot_multicurve -> save_results;
plot_multicurve -> insideplot_multicurve -> "plt.plot";
make_plot -> save_results;
make_plot -> "ax.imshow";
make_plot -> "MultiPlot.plot_colorlegend";
make_plot_row -> make_plot;
plot_simulation_result -> "ba.writeDatafield";
plot_simulation_result -> plot_specular_curve;
plot_simulation_result -> plot_simres;
plot_simulation_result -> matches_reference;
show_or_export -> "plt.savefig";
show_or_export -> "plt.show";
plot_simres -> "ax.imshow";
save_results -> "ba.writeDatafield";
save_results -> matches_reference;
plot_specular_curve -> plot_curve;
plot_curve -> "plt.plot";
}