Ignore:
Timestamp:
Nov 16, 2009, 4:56:12 PM (15 years ago)
Author:
garnier
Message:

update contre CVS

Location:
trunk/source/visualization/management/include
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/source/visualization/management/include/G4Scene.hh

    r954 r1170  
    2525//
    2626//
    27 // $Id: G4Scene.hh,v 1.18 2006/11/14 14:59:54 allison Exp $
     27// $Id: G4Scene.hh,v 1.19 2009/11/04 12:49:16 allison Exp $
    2828// GEANT4 tag $Name:  $
    2929//
     
    8080  // scene is current.
    8181
     82  const std::vector<G4VModel*>& GetEndOfRunModelList () const;
     83  // Contains models which are described at the end of event when the
     84  // scene is current.
     85
    8286  const G4VisExtent& GetExtent () const;
    8387  // Overall extent of all objects in the scene.
     
    125129  // Prints warnings if warn is true.
    126130
     131  G4bool AddEndOfRunModel (G4VModel*, G4bool warn = false);
     132  // Adds models of type which are described at the end of run when
     133  // the scene is current.
     134  // Returns false if model is already in the list.
     135  // Prints warnings if warn is true.
     136
    127137  std::vector<G4VModel*>& SetRunDurationModelList ();
    128138  // Allows you to change the model list - do with care!
    129139
    130140  std::vector<G4VModel*>& SetEndOfEventModelList ();
     141  // Allows you to change the model list - do with care!
     142
     143  std::vector<G4VModel*>& SetEndOfRunModelList ();
    131144  // Allows you to change the model list - do with care!
    132145
     
    158171  std::vector<G4VModel*> fRunDurationModelList;
    159172  std::vector<G4VModel*> fEndOfEventModelList;
     173  std::vector<G4VModel*> fEndOfRunModelList;
    160174  G4VisExtent fExtent;
    161175  G4Point3D   fStandardTargetPoint;
  • trunk/source/visualization/management/include/G4Scene.icc

    r954 r1170  
    2525//
    2626//
    27 // $Id: G4Scene.icc,v 1.14 2006/11/14 14:59:54 allison Exp $
     27// $Id: G4Scene.icc,v 1.15 2009/11/04 12:49:16 allison Exp $
    2828// GEANT4 tag $Name:  $
    2929//
     
    5151G4Scene::GetEndOfEventModelList () const {
    5252  return fEndOfEventModelList;
     53}
     54
     55inline const std::vector<G4VModel*>&
     56G4Scene::GetEndOfRunModelList () const {
     57  return fEndOfRunModelList;
    5358}
    5459
     
    8085inline std::vector<G4VModel*>& G4Scene::SetEndOfEventModelList ()
    8186{
    82   return fRunDurationModelList;
     87  return fEndOfEventModelList;
     88}
     89
     90inline std::vector<G4VModel*>& G4Scene::SetEndOfRunModelList ()
     91{
     92  return fEndOfRunModelList;
    8393}
    8494
  • trunk/source/visualization/management/include/G4VSceneHandler.hh

    r1140 r1170  
    2525//
    2626//
    27 // $Id: G4VSceneHandler.hh,v 1.41 2009/10/21 14:26:59 allison Exp $
     27// $Id: G4VSceneHandler.hh,v 1.42 2009/11/04 12:55:33 allison Exp $
    2828// GEANT4 tag $Name:  $
    2929//
     
    270270  // hits, etc.
    271271
     272  void DrawEndOfRunModels();
     273  // Draws end-of-run models.
     274
    272275  //////////////////////////////////////////////////////////////
    273276  // Administration functions.
  • trunk/source/visualization/management/include/G4VisCommandsSceneAdd.hh

    r1140 r1170  
    2525//
    2626//
    27 // $Id: G4VisCommandsSceneAdd.hh,v 1.18 2009/10/30 15:58:50 allison Exp $
     27// $Id: G4VisCommandsSceneAdd.hh,v 1.19 2009/11/04 13:15:02 allison Exp $
    2828// GEANT4 tag $Name:  $
    2929
     
    142142  G4VisCommandSceneAddPSHits (const G4VisCommandSceneAddPSHits&);
    143143  G4VisCommandSceneAddPSHits& operator = (const G4VisCommandSceneAddPSHits&);
    144   G4UIcmdWithoutParameter* fpCommand;
     144  G4UIcmdWithAString* fpCommand;
    145145};
    146146
  • trunk/source/visualization/management/include/G4VisCommandsViewerSet.hh

    r1042 r1170  
    2626//
    2727// $Id: G4VisCommandsViewerSet.hh,v 1.23 2009/05/13 18:17:25 allison Exp $
    28 // GEANT4 tag $Name: HEAD $
     28// GEANT4 tag $Name: $
    2929
    3030// /vis/viewer/set commands - John Allison  16th May 2000
Note: See TracChangeset for help on using the changeset viewer.