Changeset 1294


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

CVS update

Location:
trunk/source/visualization
Files:
14 edited

Legend:

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

    r1140 r1294  
    1 $Id: History,v 1.27 2009/10/21 14:59:17 allison Exp $
     1$Id: History,v 1.28 2010/05/30 10:18:32 allison Exp $
    22-------------------------------------------------------------------
    33
     
    2020History file for visualization/FukuiRenderer sub-category
    2121---------------------------------------------------------
     22
     2330th May 2010  John Allison  (DAWN-V09-03-00)
     24- G4DAWN/FukuiRendererSceneHandler: Added AddCompound(const G4VDigi&).
    2225
    232621st October 2009  John Allison  (DAWN-V09-02-00 coworks greps-V09-02-02)
  • trunk/source/visualization/FukuiRenderer/include/G4DAWNFILESceneHandler.hh

    r1140 r1294  
    2525//
    2626//
    27 // $Id: G4DAWNFILESceneHandler.hh,v 1.17 2009/10/21 14:59:17 allison Exp $
    28 // GEANT4 tag $Name: $
     27// $Id: G4DAWNFILESceneHandler.hh,v 1.18 2010/05/30 10:18:32 allison Exp $
     28// GEANT4 tag $Name: vis-V09-03-06 $
    2929//
    3030// Satoshi TANAKA
     
    9898    G4VSceneHandler::AddCompound(hit);
    9999  }
     100  void AddCompound ( const G4VDigi& digi) {
     101    G4VSceneHandler::AddCompound(digi);
     102  }
    100103  void AddCompound ( const G4THitsMap<G4double> & hits) {
    101104    G4VSceneHandler::AddCompound(hits);
  • trunk/source/visualization/FukuiRenderer/include/G4FukuiRendererSceneHandler.hh

    r1140 r1294  
    2525//
    2626//
    27 // $Id: G4FukuiRendererSceneHandler.hh,v 1.16 2009/10/21 14:59:17 allison Exp $
    28 // GEANT4 tag $Name: $
     27// $Id: G4FukuiRendererSceneHandler.hh,v 1.17 2010/05/30 10:18:32 allison Exp $
     28// GEANT4 tag $Name: vis-V09-03-06 $
    2929//
    3030//
     
    100100  void AddCompound ( const G4VHit& hit) {
    101101    G4VSceneHandler::AddCompound(hit);
     102  }
     103  void AddCompound ( const G4VDigi& digi) {
     104    G4VSceneHandler::AddCompound(digi);
    102105  }
    103106  void AddCompound ( const G4THitsMap<G4double> & hits) {
  • trunk/source/visualization/HepRep/History

    r1228 r1294  
    1 .$Id: History,v 1.132 2009/11/23 05:42:28 perl Exp $
     1.$Id: History,v 1.133 2010/05/30 10:28:02 allison Exp $
    22-------------------------------------------------------------------
    33
     
    2020History file for visualization/HepRep sub-category
    2121--------------------------------------------------
     22
     2330th May 2010  John Allison  (vis-HepRep-V09-03-00)
     24- G4HepRep[File}SceneHandler: Added AddCompound(const G4VDigi&).
    2225
    232622nd November 2009  Joseph Perl  (vis-HepRep-V09-02-03)
  • trunk/source/visualization/HepRep/include/G4HepRepFileSceneHandler.hh

    r1140 r1294  
    2525//
    2626//
    27 // $Id: G4HepRepFileSceneHandler.hh,v 1.31 2009/10/21 15:08:35 allison Exp $
    28 // GEANT4 tag $Name: $
     27// $Id: G4HepRepFileSceneHandler.hh,v 1.32 2010/05/30 10:28:02 allison Exp $
     28// GEANT4 tag $Name: vis-V09-03-06 $
    2929//
    3030//
     
    8484  void AddCompound (const G4THitsMap<G4double>& hits) {
    8585    G4VSceneHandler::AddCompound(hits);
     86  }
     87  void AddCompound (const G4VDigi& digi) {
     88    G4VSceneHandler::AddCompound(digi);
    8689  }
    8790  // void PreAddSolid(const G4Transform3D& objectTransformation,
  • trunk/source/visualization/HepRep/include/G4HepRepSceneHandler.hh

    r1228 r1294  
    2424// ********************************************************************
    2525//
    26 // $Id: G4HepRepSceneHandler.hh,v 1.44 2009/11/23 05:42:28 perl Exp $
    27 // GEANT4 tag $Name: $
     26// $Id: G4HepRepSceneHandler.hh,v 1.45 2010/05/30 10:28:02 allison Exp $
     27// GEANT4 tag $Name: vis-V09-03-06 $
    2828//
    2929
     
    8383        void AddCompound (const G4VTrajectory&);
    8484        void AddCompound (const G4VHit& hit);
     85        void AddCompound (const G4VDigi& digi) {
     86          G4VSceneHandler::AddCompound(digi);
     87        }
    8588        void AddCompound (const G4THitsMap<G4double>& hits) {
    8689          G4VSceneHandler::AddCompound(hits);
  • trunk/source/visualization/RayTracer/History

    r1228 r1294  
    1 $Id: History,v 1.60 2009/11/15 12:33:54 allison Exp $
     1$Id: History,v 1.63 2010/05/30 10:22:26 allison Exp $
    22-------------------------------------------------------------------
    33
     
    2424History file for Ray Tracer category
    2525---------------------------------------
     26
     2730th May 2010  John Allison  (raytracer-V09-03-01)
     28- G4RayTracerSceneHandler: Added AddCompound(const G4VDigi&).
     29
     3029th May 2010  John Allison  (raytracer-V09-03-00)
     31- G4RayTrajectory.hh: Added DrawTrajectory() ready for i_mode migration.
    2632
    273315th November 2009  John Allison  (raytracer-V09-02-02)
  • trunk/source/visualization/RayTracer/include/G4RayTracerSceneHandler.hh

    r1140 r1294  
    2525//
    2626//
    27 // $Id: G4RayTracerSceneHandler.hh,v 1.12 2009/10/21 15:24:53 allison Exp $
    28 // GEANT4 tag $Name: $
     27// $Id: G4RayTracerSceneHandler.hh,v 1.13 2010/05/30 10:21:25 allison Exp $
     28// GEANT4 tag $Name: vis-V09-03-06 $
    2929
    3030// John Allison  17th March 2000
     
    6565  void AddCompound(const G4VTrajectory&){}
    6666  void AddCompound(const G4VHit&){}
     67  void AddCompound(const G4VDigi&){}
    6768  void AddCompound(const G4THitsMap<G4double>&) {}
    6869
  • trunk/source/visualization/RayTracer/include/G4RayTrajectory.hh

    r954 r1294  
    2525//
    2626//
    27 // $Id: G4RayTrajectory.hh,v 1.15 2006/06/29 21:23:45 gunter Exp $
    28 // GEANT4 tag $Name: $
     27// $Id: G4RayTrajectory.hh,v 1.16 2010/05/29 21:09:40 allison Exp $
     28// GEANT4 tag $Name: vis-V09-03-06 $
    2929//
    3030//
     
    7070   virtual void AppendStep(const G4Step*);
    7171   virtual void ShowTrajectory(std::ostream&) const;
     72   virtual void DrawTrajectory() const {;}
    7273   virtual void DrawTrajectory(G4int) const {;}
    7374   virtual int GetPointEntries() const {return positionRecord->size();}
  • trunk/source/visualization/VRML/History

    r1140 r1294  
    1 $Id: History,v 1.17 2009/10/21 15:27:21 allison Exp $
     1$Id: History,v 1.19 2010/05/30 10:14:39 allison Exp $
    22-------------------------------------------------------------------
    33
     
    2020History file for visualization/VRML sub-category
    2121------------------------------------------------
     22
     2330th May 2010  John Allison (VRML-V09-03-00)
     24- G4VRML[1/2][File}SceneHandler: Added AddCompound(const G4VDigi&).
    2225
    232621st October 2009  John Allison  (VRML-V09-02-01 coworks greps-V09-02-02)
  • trunk/source/visualization/VRML/include/G4VRML1FileSceneHandler.hh

    r1140 r1294  
    2525//
    2626//
    27 // $Id: G4VRML1FileSceneHandler.hh,v 1.18 2009/10/21 15:27:21 allison Exp $
    28 // GEANT4 tag $Name: $
     27// $Id: G4VRML1FileSceneHandler.hh,v 1.19 2010/05/30 10:14:39 allison Exp $
     28// GEANT4 tag $Name: vis-V09-03-06 $
    2929//
    3030// G4VRML1FileSceneHandler.hh
     
    7272        void AddCompound ( const G4VHit& hit) {
    7373          G4VSceneHandler::AddCompound(hit);
     74        }
     75        void AddCompound ( const G4VDigi& digi) {
     76          G4VSceneHandler::AddCompound(digi);
    7477        }
    7578        void AddCompound ( const G4THitsMap<G4double> & hits) {
  • trunk/source/visualization/VRML/include/G4VRML1SceneHandler.hh

    r1140 r1294  
    2525//
    2626//
    27 // $Id: G4VRML1SceneHandler.hh,v 1.15 2009/10/21 15:27:21 allison Exp $
    28 // GEANT4 tag $Name: $
     27// $Id: G4VRML1SceneHandler.hh,v 1.16 2010/05/30 10:08:32 allison Exp $
     28// GEANT4 tag $Name: vis-V09-03-06 $
    2929//
    3030// G4VRML1SceneHandler.hh
     
    7777        void AddCompound ( const G4VHit& hit) {
    7878          G4VSceneHandler::AddCompound(hit);
     79        }
     80        void AddCompound ( const G4VDigi& digi) {
     81          G4VSceneHandler::AddCompound(digi);
    7982        }
    8083        void AddCompound ( const G4THitsMap<G4double> & hits) {
  • trunk/source/visualization/VRML/include/G4VRML2FileSceneHandler.hh

    r1140 r1294  
    2525//
    2626//
    27 // $Id: G4VRML2FileSceneHandler.hh,v 1.17 2009/10/21 15:27:21 allison Exp $
    28 // GEANT4 tag $Name: $
     27// $Id: G4VRML2FileSceneHandler.hh,v 1.18 2010/05/30 10:14:39 allison Exp $
     28// GEANT4 tag $Name: vis-V09-03-06 $
    2929//
    3030// G4VRML2FileSceneHandler.hh
     
    7272        void AddCompound ( const G4VHit& hit) {
    7373          G4VSceneHandler::AddCompound(hit);
     74        }
     75        void AddCompound ( const G4VDigi& digi) {
     76          G4VSceneHandler::AddCompound(digi);
    7477        }
    7578        void AddCompound ( const G4THitsMap<G4double> & hits) {
  • trunk/source/visualization/VRML/include/G4VRML2SceneHandler.hh

    r1140 r1294  
    2525//
    2626//
    27 // $Id: G4VRML2SceneHandler.hh,v 1.14 2009/10/21 15:27:21 allison Exp $
    28 // GEANT4 tag $Name: $
     27// $Id: G4VRML2SceneHandler.hh,v 1.15 2010/05/30 10:08:32 allison Exp $
     28// GEANT4 tag $Name: vis-V09-03-06 $
    2929//
    3030// G4VRML2SceneHandler.hh
     
    7575        void AddCompound ( const G4VHit& hit) {
    7676          G4VSceneHandler::AddCompound(hit);
     77        }
     78        void AddCompound ( const G4VDigi& digi) {
     79          G4VSceneHandler::AddCompound(digi);
    7780        }
    7881        void AddCompound ( const G4THitsMap<G4double> & hits) {
Note: See TracChangeset for help on using the changeset viewer.