Ignore:
Timestamp:
Nov 9, 2007, 3:32:25 PM (17 years ago)
Author:
garnier
Message:

r627@mac-90108: laurentgarnier | 2007-11-09 07:57:42 +0100
modif dans les includes directives

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/geant4/visualization/management/src/G4ViewParameters.cc

    r531 r593  
    2525//
    2626//
    27 // $Id: G4ViewParameters.cc,v 1.28 2006/09/19 16:02:31 allison Exp $
    28 // GEANT4 tag $Name: geant4-08-02-patch-01 $
     27// $Id: G4ViewParameters.cc,v 1.29 2007/04/03 13:33:16 allison Exp $
     28// GEANT4 tag $Name: geant4-09-00-ref-01 $
    2929//
    3030//
     
    7272  fWindowSizeHintY (600),
    7373  fAutoRefresh (false),
    74   fBackgroundColour (G4Colour(0.,0.,0.))          // Black
     74  fBackgroundColour (G4Colour(0.,0.,0.)),         // Black
     75  fPicking (false)
    7576{
    7677  fDefaultMarker.SetScreenSize (5.);
     
    273274      (fXGeometryString      != v.fXGeometryString)      ||
    274275      (fAutoRefresh          != v.fAutoRefresh)          ||
    275       (fBackgroundColour     != v.fBackgroundColour))
     276      (fBackgroundColour     != v.fBackgroundColour)     ||
     277      (fPicking              != v.fPicking)
     278      )
    276279    G4cout << "Difference in 1st batch." << G4endl;
    277280
     
    439442
    440443  os << "\n  Background colour: " << v.fBackgroundColour;
     444
     445  os << "\n  Picking requested: ";
     446  if (v.fPicking) os << "true";
     447  else os << "false";
    441448
    442449  return os;
     
    480487      (fXGeometryString      != v.fXGeometryString)      ||
    481488      (fAutoRefresh          != v.fAutoRefresh)          ||
    482       (fBackgroundColour     != v.fBackgroundColour))
     489      (fBackgroundColour     != v.fBackgroundColour)     ||
     490      (fPicking              != v.fPicking)
     491      )
    483492    return true;
    484493
Note: See TracChangeset for help on using the changeset viewer.