Ignore:
Timestamp:
Jun 2, 2010, 10:23:13 AM (15 years ago)
Author:
garnier
Message:

CVS update

Location:
trunk/source/graphics_reps
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/source/graphics_reps/History

    r1257 r1293  
    1 cvs log $Id: History,v 1.139 2010/05/07 16:06:18 allison Exp $
     1cvs log $Id: History,v 1.141 2010/05/30 11:15:52 allison Exp $
    22-------------------------------------------------------------------
    33
     
    1717     * Reverse chronological order (last date on top), please *
    1818     ----------------------------------------------------------
     19
     2030th May 2010  John Allison  (greps-V09-03-02)
     21- G4VVisManager: Added Draw(const G4VDigi&) and FilterDigi(const G4VDigi&).
     22- G4VGraphicsScene: Added AddCompound (const G4VDigi&).
     23
     2429th May 2010  John Allison  (greps-V09-03-01)
     25- G4VVisManager:
     26  o Removed IsDefaultDrawTrajectory.  A better way is...
     27  o Added DispatchToModel(const G4VTrajectory&), i.e., without i_mode, to
     28    distinguish usage and in preparation for i_mode migration.
    1929
    20307th May 2010  John Allison  (greps-V09-03-00)
  • trunk/source/graphics_reps/include/G4VGraphicsScene.hh

    r1228 r1293  
    2525//
    2626//
    27 // $Id: G4VGraphicsScene.hh,v 1.12 2009/10/21 15:36:22 allison Exp $
    28 // GEANT4 tag $Name: geant4-09-03 $
     27// $Id: G4VGraphicsScene.hh,v 1.13 2010/05/30 11:15:36 allison Exp $
     28// GEANT4 tag $Name: $
    2929// John Allison  19th July 1996
    3030//
     
    5757class G4VTrajectory;
    5858class G4VHit;
     59class G4VDigi;
    5960template <typename T> class G4THitsMap;
    6061class G4Polyline;
     
    116117  virtual void AddCompound (const G4VTrajectory&)        = 0;
    117118  virtual void AddCompound (const G4VHit&)               = 0;
     119  virtual void AddCompound (const G4VDigi&)              = 0;
    118120  virtual void AddCompound (const G4THitsMap<G4double>&) = 0;
    119121
  • trunk/source/graphics_reps/include/G4VVisManager.hh

    r1257 r1293  
    2525//
    2626//
    27 // $Id: G4VVisManager.hh,v 1.16 2010/05/07 16:05:56 allison Exp $
     27// $Id: G4VVisManager.hh,v 1.18 2010/05/30 11:15:36 allison Exp $
    2828// GEANT4 tag $Name:  $
    2929// John Allison 19/Oct/1996.
     
    8787class G4VSolid;
    8888class G4VHit;
     89class G4VDigi;
    8990class G4VTrajectory;
    9091class G4LogicalVolume;
     
    168169  virtual void Draw (const G4VHit&) = 0;
    169170
     171  virtual void Draw (const G4VDigi&) = 0;
     172
    170173  virtual void Draw (const G4VTrajectory&, G4int i_mode = 0) = 0;
    171174  // i_mode is a parameter that can be used to control the drawing of
     
    194197  // any, and redraw all views.
    195198
    196   virtual void DispatchToModel(const G4VTrajectory&, G4int i_mode = 0) = 0;
     199  virtual void DispatchToModel(const G4VTrajectory&) = 0;
     200  virtual void DispatchToModel(const G4VTrajectory&, G4int i_mode) = 0;
    197201  // Draw the trajectory.
    198202
     
    203207  // Hit filter
    204208
     209  virtual G4bool FilterDigi(const G4VDigi&) = 0;
     210  // Digi filter
     211
    205212protected:
    206213
     
    208215
    209216  static G4VVisManager* fpConcreteInstance;  // Pointer to real G4VisManager.
    210 
    211 public:
    212 
    213   static G4bool IsDefaultDrawTrajectory;
    214 
    215217};
    216218
  • trunk/source/graphics_reps/src/G4VVisManager.cc

    r1257 r1293  
    2525//
    2626//
    27 // $Id: G4VVisManager.cc,v 1.5 2010/05/07 16:05:56 allison Exp $
     27// $Id: G4VVisManager.cc,v 1.6 2010/05/29 21:35:16 allison Exp $
    2828// GEANT4 tag $Name:  $
    2929//
     
    4747  fpConcreteInstance = m;
    4848}
    49 
    50 G4bool G4VVisManager::IsDefaultDrawTrajectory = true;
Note: See TracChangeset for help on using the changeset viewer.