Ignore:
Timestamp:
Jan 5, 2011, 12:19:12 PM (14 years ago)
Author:
garnier
Message:

update

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/source/visualization/management/src/G4VisCommandsSceneAdd.cc

    r1346 r1348  
    2525//
    2626//
    27 // $Id: G4VisCommandsSceneAdd.cc,v 1.84 2010/11/06 18:34:26 allison Exp $
     27// $Id: G4VisCommandsSceneAdd.cc,v 1.85 2010/12/11 16:50:10 allison Exp $
    2828// GEANT4 tag $Name:  $
    2929// /vis/scene commands - John Allison  9th August 1998
     
    6666#include "G4TransportationManager.hh"
    6767#include "G4PropagatorInField.hh"
     68#include "G4Trajectory.hh"
     69#include "G4TrajectoryPoint.hh"
    6870#include "G4RichTrajectory.hh"
    6971#include "G4RichTrajectoryPoint.hh"
     72#include "G4SmoothTrajectory.hh"
     73#include "G4SmoothTrajectoryPoint.hh"
    7074#include "G4AttDef.hh"
    7175#include "G4ios.hh"
     
    14591463  UImanager->SetVerboseLevel(keepVerbose);
    14601464
    1461   if (rich) {
    1462     if (verbosity >= G4VisManager::warnings) {
    1463       G4cout <<
    1464         "Attributes available for modeling and filtering with"
    1465         "\n\"/vis/modeling/trajectories/create/drawByAttribute\" and"
    1466         "\n\"/vis/filtering/trajectories/create/attributeFilter\" commands:\n"
    1467              << G4RichTrajectory().GetAttDefs()
     1465  if (verbosity >= G4VisManager::warnings) {
     1466    G4cout <<
     1467      "Attributes available for modeling and filtering with"
     1468      "\n\"/vis/modeling/trajectories/create/drawByAttribute\" and"
     1469      "\n\"/vis/filtering/trajectories/create/attributeFilter\" commands:"
     1470           << G4endl;
     1471    if (rich) {
     1472      G4cout << G4RichTrajectory().GetAttDefs()
    14681473             << G4RichTrajectoryPoint().GetAttDefs();
     1474    } else if (smooth) {
     1475      G4cout << G4SmoothTrajectory().GetAttDefs()
     1476             << G4SmoothTrajectoryPoint().GetAttDefs();
     1477    } else {
     1478      G4cout << G4Trajectory().GetAttDefs()
     1479             << G4TrajectoryPoint().GetAttDefs();
    14691480    }
    14701481  }
Note: See TracChangeset for help on using the changeset viewer.