Ignore:
Timestamp:
Feb 26, 2009, 12:23:33 PM (17 years ago)
Author:
garnier
Message:

John update

Location:
trunk/source/graphics_reps/src
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/source/graphics_reps/src/G4PolyhedronArbitrary.cc

    r830 r932  
    1818// * This  code  implementation is the result of  the  scientific and *
    1919// * technical work of the GEANT4 collaboration and of QinetiQ Ltd,   *
    20 // * subject DEFCON 705 IPR conditions.                               *
     20// * subject to DEFCON 705 IPR conditions.                            *
    2121// * By using,  copying,  modifying or  distributing the software (or *
    2222// * any work based  on the software)  you  agree  to acknowledge its *
     
    2424// * acceptance of all terms of the Geant4 Software license.          *
    2525// ********************************************************************
     26//
    2627//
    2728// %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
  • trunk/source/graphics_reps/src/G4VMarker.cc

    r850 r932  
    2525//
    2626//
    27 // $Id: G4VMarker.cc,v 1.11 2006/06/29 19:07:21 gunter Exp $
    28 // GEANT4 tag $Name: HEAD $
     27// $Id: G4VMarker.cc,v 1.12 2009/02/24 10:58:04 allison Exp $
     28// GEANT4 tag $Name: greps-V09-02-00 $
    2929//
    3030//
     
    8686}
    8787
    88 const G4String& G4VMarker::GetInfo() const { return fInfo ;}
     88G4VMarker::SizeType G4VMarker::GetSizeType () const {
     89  SizeType type = none;
     90  if (fWorldSize) type = world;
     91  else if (fScreenSize) type = screen;
     92  return type;
     93}
    8994
    90 void G4VMarker::SetInfo( const G4String& info ){ fInfo = info ;}
    91 
     95void G4VMarker::SetSize (SizeType sizeType, G4double size) {
     96  fWorldSize = fScreenSize = 0.;
     97  if (sizeType == world) fWorldSize = size;
     98  else if (sizeType == screen) fScreenSize = size;
     99}
  • trunk/source/graphics_reps/src/G4VVisManager.cc

    r850 r932  
    4040G4VVisManager* G4VVisManager::GetConcreteInstance ()
    4141{
     42  printf("G4VVisManager::GetConcreteInstance %d\n",fpConcreteInstance);
    4243  return fpConcreteInstance;
    4344}
Note: See TracChangeset for help on using the changeset viewer.