76 lines
2.8 KiB
C++
76 lines
2.8 KiB
C++
//
|
|
// ********************************************************************
|
|
// * DISCLAIMER *
|
|
// * *
|
|
// * The following disclaimer summarizes all the specific disclaimers *
|
|
// * of contributors to this software. The specific disclaimers,which *
|
|
// * govern, are listed with their locations in: *
|
|
// * http://cern.ch/geant4/license *
|
|
// * *
|
|
// * Neither the authors of this software system, nor their employing *
|
|
// * institutes,nor the agencies providing financial support for this *
|
|
// * work make any representation or warranty, express or implied, *
|
|
// * regarding this software system or assume any liability for its *
|
|
// * use. *
|
|
// * *
|
|
// * This code implementation is the intellectual property of the *
|
|
// * 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: G4VisCommandsShow.hh,v 1.4.2.1 2001/06/28 19:16:10 gunter Exp $
|
|
// GEANT4 tag $Name: $
|
|
//
|
|
//
|
|
// /vis~/show/ commands
|
|
// John Allison 7th September 1997
|
|
|
|
#ifndef G4VISCOMMANDSSHOW_HH
|
|
#define G4VISCOMMANDSSHOW_HH
|
|
|
|
#include "globals.hh"
|
|
#include "G4VisManager.hh"
|
|
|
|
/////////////////////////////////////////////////// /vis~/show/... ////
|
|
//vis \hline
|
|
//vis /vis~/show/ &&
|
|
//vis ...menu of show commands. \\%
|
|
class G4VisCommandShow {
|
|
public:
|
|
G4String GetCommandName () const {return "/vis~/show/";}
|
|
G4String GetGuidance () const {
|
|
return "...menu of show commands.";
|
|
}
|
|
};
|
|
|
|
//////////////////////////////////////////// /vis~/show/view ////
|
|
//view \hline
|
|
//view /vis~/show/view &&
|
|
//view Make the view visible, if not so already (initiates
|
|
//view post-processing for
|
|
//view graphics systems which use such techniques). \\%
|
|
class G4VisCommandShowView {
|
|
public:
|
|
G4String GetCommandName () const {return "/vis~/show/view";}
|
|
G4String GetGuidance () const {
|
|
return "Make the view visible, if not so already (initiates "
|
|
"post-processing for "
|
|
"graphics systems which use such techniques).";
|
|
}
|
|
void SetValue () {
|
|
G4VisManager::PrintCommandDeprecation("Use \"/vis/viewer/update\".");
|
|
G4VisManager* pVMan = G4VisManager::GetInstance ();
|
|
if (pVMan -> IsValidView ()) {
|
|
if (pVMan -> GetVerboseLevel () > 1) {
|
|
pVMan -> PrintCurrentView ();
|
|
}
|
|
pVMan -> Show ();
|
|
}
|
|
}
|
|
};
|
|
|
|
#endif
|