Import Geant4 3.1.0 source tree

This commit is contained in:
Gabriele Cosmo
2016-06-08 16:03:00 +02:00
parent cfcb558cfe
commit 137e303ecc
2843 changed files with 37082 additions and 38426 deletions
@@ -5,37 +5,43 @@
// based on the Program) you indicate your acceptance of this statement,
// and all its terms.
//
// $Id: G4VisCommandsViewerSet.hh,v 1.3 2000/05/19 09:17:47 johna Exp $
// GEANT4 tag $Name: geant4-03-00 $
// $Id: G4VisCommandsViewerSet.hh,v 1.8 2001/02/06 23:36:52 johna Exp $
// GEANT4 tag $Name: geant4-03-01 $
// /vis/viewer/set commands - John Allison 16th May 2000
#ifndef G4VISCOMMANDSVIEWERSET_HH
#define G4VISCOMMANDSVIEWERSET_HH
#include "G4VVisCommand.hh"
#include "G4VisCommandsViewer.hh"
#include "g4std/vector"
class G4UIcommand;
class G4UIcmdWithAString;
class G4UIcmdWithABool;
class G4UIcmdWithAnInteger;
class G4VisCommandsViewerSet: public G4VVisCommand {
class G4VisCommandsViewerSet: public G4VVisCommandViewer {
public:
// Uses compiler defaults for copy constructor and assignment.
G4VisCommandsViewerSet ();
~G4VisCommandsViewerSet ();
virtual ~G4VisCommandsViewerSet ();
G4String GetCurrentValue (G4UIcommand* command);
void SetNewValue (G4UIcommand* command, G4String newValue);
private:
G4String ConvertToString(G4bool blValue);
G4bool GetNewBoolValue(const G4String& paramString);
G4UIcmdWithAString* fpCommandAll;
G4UIcmdWithAString* fpCommandStyle;
G4UIcmdWithABool* fpCommandEdge;
G4UIcmdWithABool* fpCommandHiddenEdge;
G4UIcommand* fpCommandCulling;
G4VisCommandsViewerSet (const G4VisCommandsViewerSet&);
G4VisCommandsViewerSet& operator = (const G4VisCommandsViewerSet&);
G4UIcmdWithAString* fpCommandAll;
G4UIcmdWithABool* fpCommandAutoRefresh;
G4UIcommand* fpCommandCulling;
G4UIcmdWithABool* fpCommandEdge;
G4UIcmdWithABool* fpCommandHiddenEdge;
G4UIcmdWithABool* fpCommandHiddenMarker;
G4UIcmdWithAnInteger* fpCommandLineSegments;
G4UIcmdWithAString* fpCommandLightsMove;
G4UIcommand* fpCommandProjection;
G4UIcommand* fpCommandSectionPlane;
G4UIcmdWithAString* fpCommandStyle;
};
#endif