Ignore:
Timestamp:
Nov 2, 2009, 3:49:55 PM (16 years ago)
Author:
garnier
Message:

debug updates

Location:
trunk/source/visualization/RayTracer
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/source/visualization/RayTracer/History

    r1096 r1136  
    1 $Id: History,v 1.56 2009/08/19 08:39:19 lgarnier Exp $
     1$Id: History,v 1.58 2009/09/16 16:58:26 allison Exp $
    22-------------------------------------------------------------------
    33
     
    2525---------------------------------------
    2626
     2716 September 2009  John Allison  (raytracer-V09-02-00)
     28- Cosmetic adjustments and tagging.
     29
    273019 August 2009 Laurent Garnier
    28  - G4RayTracerViewer.cc, G4RayTracerXViewer.cc : Fix an bad use of fVP
    29    parameters
     31- G4RayTracerViewer.cc, G4RayTracerXViewer.cc : Fix an bad use of fVP
     32  parameters
    3033
    313418 August 2009 Laurent Garnier
    32  - G4RayTracerXViewer, G4RTXScanner : Fix a crash introduce by the
    33    new way of handling window size hints (January 2009)
     35- G4RayTracerXViewer, G4RTXScanner : Fix a crash introduce by the
     36  new way of handling window size hints (January 2009)
    3437
    35384th April 2008  John Allison  (raytracer-V09-01-00)
    36  - Fixed gcc-4.3.0 compiler warnings.
     39- Fixed gcc-4.3.0 compiler warnings.
    3740
    384114th June 2007  John Allison  (raytracer-V08-03-01)
  • trunk/source/visualization/RayTracer/include/G4RayTracerXViewer.hh

    r1096 r1136  
    2525//
    2626//
    27 // $Id: G4RayTracerXViewer.hh,v 1.4 2009/08/18 14:13:57 lgarnier Exp $
     27// $Id: G4RayTracerXViewer.hh,v 1.5 2009/09/16 16:56:52 allison Exp $
    2828// GEANT4 tag $Name:  $
    2929
     
    4141  G4RayTracerXViewer(G4VSceneHandler&,const G4String& name);
    4242  virtual ~G4RayTracerXViewer();
    43   void Initialise ();
     43  void Initialise();
    4444};
    4545
  • trunk/source/visualization/RayTracer/src/G4RTXScanner.cc

    r1096 r1136  
    2525//
    2626//
    27 // $Id: G4RTXScanner.cc,v 1.6 2009/08/18 10:47:15 lgarnier Exp $
     27// $Id: G4RTXScanner.cc,v 1.7 2009/09/16 16:56:52 allison Exp $
    2828// GEANT4 tag $Name:  $
    2929//
     
    120120  // Window size and position...
    121121  int xOffset = 0, yOffset = 0;
     122  XSizeHints* size_hints = XAllocSizeHints();
    122123  unsigned int width, height;
    123   XSizeHints* size_hints = XAllocSizeHints();
    124124  const G4String& XGeometryString = vp.GetXGeometryString();
    125125  if (!XGeometryString.empty()) {
     
    152152  } else {
    153153    G4cout << "ERROR: Geometry string \""
    154            << XGeometryString     
    155            << "\" is empty.  Using \"600x600\"."
     154           << XGeometryString
     155           << "\" is empty.  Using \"600x600\"."
    156156           << G4endl;
    157157    width = 600;
    158     height = 600; 
     158    height = 600;
    159159  }
    160160  size_hints->width = width;
  • trunk/source/visualization/RayTracer/src/G4RayTracerXViewer.cc

    r1096 r1136  
    2525//
    2626//
    27 // $Id: G4RayTracerXViewer.cc,v 1.7 2009/08/19 08:39:19 lgarnier Exp $
     27// $Id: G4RayTracerXViewer.cc,v 1.8 2009/09/16 16:56:52 allison Exp $
    2828// GEANT4 tag $Name:  $
    2929
     
    4646                    name,
    4747                    new G4TheRayTracer(new G4RTJpegMaker, new G4RTXScanner))
    48 {
    49 }
     48{}
     49
     50G4RayTracerXViewer::~G4RayTracerXViewer() {}
    5051
    5152void G4RayTracerXViewer::Initialise() {
     
    6465}
    6566
    66 G4RayTracerXViewer::~G4RayTracerXViewer() {}
    67 
    6867#endif
Note: See TracChangeset for help on using the changeset viewer.