Ignore:
Timestamp:
Jun 18, 2010, 11:42:07 AM (14 years ago)
Author:
garnier
Message:

update geant4-09-04-beta-cand-01 interfaces-V09-03-09 vis-V09-03-08

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

Legend:

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

    r1294 r1315  
    1 $Id: History,v 1.63 2010/05/30 10:22:26 allison Exp $
     1$Id: History,v 1.64 2010/06/14 14:33:34 gcosmo Exp $
    22-------------------------------------------------------------------
    33
     
    2424History file for Ray Tracer category
    2525---------------------------------------
     26
     2714th June 2010  Gabriele Cosmo  (raytracer-V09-03-02)
     28- Added missing virtual destructor to G4VRTScanner, G4RTXScanner and
     29  G4RTSimpleScanner.
    2630
    273130th May 2010  John Allison  (raytracer-V09-03-01)
  • trunk/source/visualization/RayTracer/include/G4RTSimpleScanner.hh

    r954 r1315  
    2525//
    2626//
    27 // $Id: G4RTSimpleScanner.hh,v 1.3 2006/06/29 21:23:25 gunter Exp $
    28 // GEANT4 tag $Name: $
     27// $Id: G4RTSimpleScanner.hh,v 1.4 2010/06/14 14:33:34 gcosmo Exp $
     28// GEANT4 tag $Name: vis-V09-03-08 $
    2929//
    3030//
     
    4545
    4646  G4RTSimpleScanner();
     47  virtual ~G4RTSimpleScanner();
    4748
    48   // Compiler defaults for destructor, copy constructor and
    49   // assignmemt.
     49  // Compiler defaults for copy constructor and assignmemt.
    5050
    5151  virtual const G4String& GetGSName() const;
  • trunk/source/visualization/RayTracer/include/G4RTXScanner.hh

    r954 r1315  
    2525//
    2626//
    27 // $Id: G4RTXScanner.hh,v 1.4 2006/06/29 21:23:31 gunter Exp $
    28 // GEANT4 tag $Name: $
     27// $Id: G4RTXScanner.hh,v 1.5 2010/06/14 14:33:34 gcosmo Exp $
     28// GEANT4 tag $Name: vis-V09-03-08 $
    2929//
    3030//
     
    5353
    5454  G4RTXScanner();
     55  virtual ~G4RTXScanner();
    5556
    56   // Compiler defaults for destructor, copy constructor and
    57   // assignmemt.
     57  // Compiler defaults for copy constructor and assignmemt.
    5858
    5959  virtual const G4String& GetGSName() const;
  • trunk/source/visualization/RayTracer/include/G4VRTScanner.hh

    r954 r1315  
    2525//
    2626//
    27 // $Id: G4VRTScanner.hh,v 1.5 2006/06/29 21:23:53 gunter Exp $
    28 // GEANT4 tag $Name: $
     27// $Id: G4VRTScanner.hh,v 1.6 2010/06/14 14:33:34 gcosmo Exp $
     28// GEANT4 tag $Name: vis-V09-03-08 $
    2929//
    3030//
     
    4444public: // with description
    4545
     46  G4VRTScanner();
     47  virtual ~G4VRTScanner();
     48 
    4649  virtual const G4String& GetGSName() const = 0;
    4750  // Get name that acts as graphics system name.
     
    6669};
    6770
    68 inline void G4VRTScanner::Draw
    69 (unsigned char, unsigned char, unsigned char)
    70 {}
     71inline
     72void G4VRTScanner::Draw(unsigned char, unsigned char, unsigned char) {}
    7173
    7274#endif
  • trunk/source/visualization/RayTracer/src/G4RTSimpleScanner.cc

    r954 r1315  
    2525//
    2626//
    27 // $Id: G4RTSimpleScanner.cc,v 1.4 2007/05/22 17:10:42 allison Exp $
    28 // GEANT4 tag $Name: $
     27// $Id: G4RTSimpleScanner.cc,v 1.5 2010/06/14 14:33:34 gcosmo Exp $
     28// GEANT4 tag $Name: vis-V09-03-08 $
    2929//
    3030//
     
    3333
    3434G4RTSimpleScanner::G4RTSimpleScanner():
    35   theNRow(0), theNColumn(0), theIRow(0), theIColumn(0)
     35  G4VRTScanner(), theNRow(0), theNColumn(0), theIRow(0), theIColumn(0)
    3636{
    3737  theGSName = "RayTracer";
    3838  theGSNickname = "RayTracer";
    3939}
     40
     41G4RTSimpleScanner::~G4RTSimpleScanner(){}
    4042
    4143const G4String& G4RTSimpleScanner::GetGSName() const
  • trunk/source/visualization/RayTracer/src/G4RTXScanner.cc

    r1136 r1315  
    2525//
    2626//
    27 // $Id: G4RTXScanner.cc,v 1.7 2009/09/16 16:56:52 allison Exp $
    28 // GEANT4 tag $Name: $
     27// $Id: G4RTXScanner.cc,v 1.8 2010/06/14 14:33:34 gcosmo Exp $
     28// GEANT4 tag $Name: vis-V09-03-08 $
    2929//
    3030//
     
    4848
    4949G4RTXScanner::G4RTXScanner():
    50   theNRow(0), theNColumn(0), theIRow(0), theIColumn(0)
     50  G4VRTScanner(), theNRow(0), theNColumn(0), theIRow(0), theIColumn(0)
    5151{
    5252  theGSName = "RayTracerX";
    5353  theGSNickname = "RayTracerX";
    5454}
     55
     56G4RTXScanner::~G4RTXScanner() {}
    5557
    5658const G4String& G4RTXScanner::GetGSName() const
Note: See TracChangeset for help on using the changeset viewer.