61 :
G4VViewer(sceneHandler, sceneHandler.IncrementViewCount(), name)
62 , fSceneHandler(sceneHandler)
65 strcpy(fG4PrimViewer,
"dawn");
66 if(std::getenv(
"G4DAWNFILE_VIEWER") != NULL)
68 strcpy(fG4PrimViewer, std::getenv(
"G4DAWNFILE_VIEWER"));
72 if(!strcmp(fG4PrimViewer,
"NONE"))
74 strcpy(fG4PrimViewerInvocation,
"");
78 strcpy(fG4PrimViewerInvocation, fG4PrimViewer);
79 strcat(fG4PrimViewerInvocation,
" ");
80 strcat(fG4PrimViewerInvocation, fSceneHandler.GetG4PrimFileName());
85 strcpy(fPSViewer,
"gv");
86 if(std::getenv(
"G4DAWNFILE_PS_VIEWER") != NULL)
88 strcpy(fPSViewer, std::getenv(
"G4DAWNFILE_PS_VIEWER"));
145#if defined DEBUG_FR_VIEW
147 G4cout <<
"***** G4DAWNFILEViewer::ShowView () " <<
G4endl;
150 if(fSceneHandler.FRIsInModeling())
155 fSceneHandler.FREndModeling();
161 if(!strcmp(fG4PrimViewer,
"NONE"))
163 strcpy(fG4PrimViewerInvocation,
"");
167 strcpy(fG4PrimViewerInvocation, fG4PrimViewer);
168 strcat(fG4PrimViewerInvocation,
" ");
169 strcat(fG4PrimViewerInvocation, fSceneHandler.GetG4PrimFileName());
176 G4cout <<
"ERROR: Failed to generate file ";
181 G4cout <<
"File " << fSceneHandler.GetG4PrimFileName();
188 ed <<
"Error " << iErr <<
" when calling system with \""
196 G4cout <<
"File " << fSceneHandler.GetG4PrimFileName();
251#if defined DEBUG_FR_VIEW
254 G4cout <<
"***** G4DAWNFILEViewer::SendViewParameters() ";
261 const G4double MIN_HALF_ANGLE = 0.01;
262 const G4double MAX_HALF_ANGLE = 0.499 * pi;
267 G4double radius = fSceneHandler.GetScene()->GetExtent().GetExtentRadius();
269 G4double half_view_angle = std::fabs(
fVP.GetFieldHalfAngle());
270 if(half_view_angle > MAX_HALF_ANGLE)
272 half_view_angle = MAX_HALF_ANGLE;
275 if(half_view_angle < MIN_HALF_ANGLE)
278 camera_distance = radius * HOW_FAR;
283 camera_distance = radius / std::sin(half_view_angle);
284 camera_distance -=
fVP.GetDolly();
287 if(camera_distance < radius)
292 G4cout <<
" Camera cannot enter inside objects" <<
G4endl;
294 camera_distance = radius;
298 const G4Vector3D& camera_direction =
fVP.GetViewpointDirection().unit();
299 const G4double v_angle = (180.0 / pi) * camera_direction.
theta();
300 const G4double h_angle = (180.0 / pi) * camera_direction.
phi();
304 std::ofstream gui_out(
".DAWN_1.history");
309 gui_out << camera_distance <<
G4endl;
310 gui_out << v_angle <<
G4endl;
311 gui_out << h_angle <<
G4endl;
316 fSceneHandler.GetScene()->GetStandardTargetPoint() +
317 fVP.GetCurrentTargetPoint();
318 gui_out << target_point.
x() <<
G4endl;
319 gui_out << target_point.
y() <<
G4endl;
320 gui_out << target_point.
z() <<
G4endl;
324 if(half_view_angle < MIN_HALF_ANGLE)
326 gui_out << zoom_factor <<
G4endl;
330 const G4double FR_HALF_SCREEN_SIZE = 0.5;
331 G4double focal_distance = FR_HALF_SCREEN_SIZE / std::tan(half_view_angle);
332 focal_distance *= zoom_factor;
334 gui_out <<
"fd" << focal_distance <<
G4endl;
337 gui_out <<
"0.001" <<
G4endl;
347 gui_out << 19.0 <<
G4endl;
348 gui_out << 71.0 <<
G4endl;
355 gui_out << 70.0 <<
G4endl;