31 lines
803 B
C++
31 lines
803 B
C++
// This code implementation is the intellectual property of
|
|
// the RD44 GEANT4 collaboration.
|
|
//
|
|
// By copying, distributing or modifying the Program (or any work
|
|
// based on the Program) you indicate your acceptance of this statement,
|
|
// and all its terms.
|
|
//
|
|
// $Id: G4VisToOldVisCommands.hh,v 1.1 1998/12/09 23:54:58 allison Exp $
|
|
// GEANT4 tag $Name: geant4-00 $
|
|
//
|
|
//
|
|
// Implements some /vis/ commands as /vis~/ temporarily.
|
|
// John Allison 9th December 1998.
|
|
|
|
#ifndef G4VISTOOLDVISCOMMANDS_HH
|
|
#define G4VISTOOLDVISCOMMANDS_HH
|
|
|
|
#include "G4UImessenger.hh"
|
|
#include "globals.hh"
|
|
|
|
#include <rw/tpordvec.h>
|
|
|
|
class G4VisToOldVisCommands: public G4UImessenger {
|
|
public:
|
|
G4VisToOldVisCommands ();
|
|
~G4VisToOldVisCommands ();
|
|
void SetNewValue (G4UIcommand* command, G4String newValues);
|
|
};
|
|
|
|
#endif
|