g4display
g4display_options.h
Go to the documentation of this file.
1 #ifndef G4DISPLAY_H_OPTIONS
2 #define G4DISPLAY_H_OPTIONS 1
3 
4 // gemc
5 #include "goptions.h"
6 
7 
8 constexpr const char* G4DISPLAY_LOGGER = "g4display";
9 constexpr const char* G4SCENE_LOGGER = "g4scene";
10 
11 namespace g4display {
12 
13 // G4View
14 struct G4View {
15  string driver;
16  string dimension;
17  string position;
19 };
20 
21 G4View getG4View(GOptions* gopts);
22 
23 
24 // G4Camera
25 struct G4Camera {
26  string phi;
27  string theta;
28 };
29 
30 G4Camera getG4Camera(GOptions* gopts);
31 
32 // Dawn
33 struct G4Dawn {
34  string phi;
35  string theta;
36 };
37 
38 G4Dawn getG4Dawn(GOptions* gopts);
39 
40 GOptions defineOptions();
41 }
42 
43 #endif
constexpr const char * G4SCENE_LOGGER
constexpr const char * G4DISPLAY_LOGGER
GOptions defineOptions()
G4Dawn getG4Dawn(GOptions *gopts)
G4Camera getG4Camera(GOptions *gopts)
G4View getG4View(GOptions *gopts)