Geant4-11
Public Types | Public Member Functions | Protected Attributes
G4ASCIITree Class Reference

#include <G4ASCIITree.hh>

Inheritance diagram for G4ASCIITree:
G4VTree G4VGraphicsSystem

Public Types

enum  Functionality {
  noFunctionality , nonEuclidian , twoD , twoDStore ,
  threeD , threeDInteractive , virtualReality , fileWriter
}
 

Public Member Functions

void AddNickname (const G4String &nickname)
 
G4VSceneHandlerCreateSceneHandler (const G4String &name="")
 
G4VViewerCreateViewer (G4VSceneHandler &, const G4String &name="")
 
 G4ASCIITree ()
 
const G4StringGetDescription () const
 
Functionality GetFunctionality () const
 
const G4StringGetName () const
 
const G4StringGetNickname () const
 
const std::vector< G4String > & GetNicknames () const
 
G4String GetOutFileName () const
 
G4int GetVerbosity () const
 
virtual G4bool IsUISessionCompatible () const
 
void SetOutFileName (const G4String &name)
 
void SetVerbosity (G4int verbosity)
 
virtual ~G4ASCIITree ()
 

Protected Attributes

G4String fDescription
 
Functionality fFunctionality
 
G4String fName
 
std::vector< G4StringfNicknames
 
G4String fOutFileName
 
G4ASCIITreeMessengerfpMessenger
 
G4int fVerbosity
 

Detailed Description

Definition at line 40 of file G4ASCIITree.hh.

Member Enumeration Documentation

◆ Functionality

Enumerator
noFunctionality 
nonEuclidian 
twoD 
twoDStore 
threeD 
threeDInteractive 
virtualReality 
fileWriter 

Definition at line 49 of file G4VGraphicsSystem.hh.

49 {
51 ,nonEuclidian // e.g., tree representation of geometry hierarchy.
52 ,twoD // Simple 2D, e.g., X (no stored structures).
53 ,twoDStore // 2D with stored structures.
54 ,threeD // Passive 3D (with stored structures).
55 ,threeDInteractive // 3D with "pick" functionality.
56 ,virtualReality // Virtual Reality functionality.
57 ,fileWriter // File writer
58 };

Constructor & Destructor Documentation

◆ G4ASCIITree()

G4ASCIITree::G4ASCIITree ( )

Definition at line 37 of file G4ASCIITree.cc.

37 :
38 G4VTree ("ASCIITree",
39 "ATree",
40 "A graphics system to dump geometry hierarchy"
41 "\n to standard output as an ASCII stream.",
43 fVerbosity(1),
44 fOutFileName ("G4cout")
45{
47}
G4int fVerbosity
Definition: G4ASCIITree.hh:51
G4String fOutFileName
Definition: G4ASCIITree.hh:53
G4ASCIITreeMessenger * fpMessenger
Definition: G4ASCIITree.hh:52
G4VTree(const G4String &name, const G4String &nickname, const G4String &description, Functionality f)
Definition: G4VTree.cc:36

References fpMessenger.

◆ ~G4ASCIITree()

G4ASCIITree::~G4ASCIITree ( )
virtual

Definition at line 49 of file G4ASCIITree.cc.

49 {
50 delete fpMessenger;
51}

References fpMessenger.

Member Function Documentation

◆ AddNickname()

void G4VGraphicsSystem::AddNickname ( const G4String nickname)
inlineinherited

Definition at line 85 of file G4VGraphicsSystem.hh.

85{fNicknames.push_back(nickname);}
std::vector< G4String > fNicknames

References G4VGraphicsSystem::fNicknames.

◆ CreateSceneHandler()

G4VSceneHandler * G4ASCIITree::CreateSceneHandler ( const G4String name = "")
virtual

Implements G4VGraphicsSystem.

Definition at line 53 of file G4ASCIITree.cc.

53 {
54 G4VSceneHandler* pScene = new G4ASCIITreeSceneHandler (*this, name);
55 return pScene;
56}
const char * name(G4int ptype)

References G4InuclParticleNames::name().

◆ CreateViewer()

G4VViewer * G4ASCIITree::CreateViewer ( G4VSceneHandler scene,
const G4String name = "" 
)
virtual

Implements G4VGraphicsSystem.

Definition at line 58 of file G4ASCIITree.cc.

59 {
60 G4VViewer* pView =
62 if (pView) {
63 if (pView -> GetViewId () < 0) {
64 G4cout << "G4ASCIITree::CreateViewer: ERROR flagged by negative"
65 " view id in G4ASCIITreeViewer creation."
66 "\n Destroying view and returning null pointer."
67 << G4endl;
68 delete pView;
69 pView = 0;
70 }
71 }
72 else {
73 G4cout << "G4ASCIITree::CreateViewer: ERROR: null pointer on"
74 " new G4ASCIITreeViewer." << G4endl;
75 }
76 return pView;
77}
#define G4endl
Definition: G4ios.hh:57
G4GLOB_DLL std::ostream G4cout

References G4cout, G4endl, and G4InuclParticleNames::name().

◆ GetDescription()

const G4String & G4VGraphicsSystem::GetDescription ( ) const
inlineinherited

Definition at line 82 of file G4VGraphicsSystem.hh.

82{return fDescription;}

References G4VGraphicsSystem::fDescription.

◆ GetFunctionality()

Functionality G4VGraphicsSystem::GetFunctionality ( ) const
inlineinherited

Definition at line 83 of file G4VGraphicsSystem.hh.

83{return fFunctionality;}
Functionality fFunctionality

References G4VGraphicsSystem::fFunctionality.

Referenced by G4VisManager::EndOfRun().

◆ GetName()

const G4String & G4VGraphicsSystem::GetName ( ) const
inlineinherited

Definition at line 79 of file G4VGraphicsSystem.hh.

79{return fName;}

References G4VGraphicsSystem::fName.

Referenced by G4VSceneHandler::AddPrimitive().

◆ GetNickname()

const G4String & G4VGraphicsSystem::GetNickname ( ) const
inlineinherited

Definition at line 80 of file G4VGraphicsSystem.hh.

80{return fNicknames[0];}

References G4VGraphicsSystem::fNicknames.

Referenced by G4VisCommandViewerList::SetNewValue().

◆ GetNicknames()

const std::vector< G4String > & G4VGraphicsSystem::GetNicknames ( ) const
inlineinherited

Definition at line 81 of file G4VGraphicsSystem.hh.

81{return fNicknames;}

References G4VGraphicsSystem::fNicknames.

◆ GetOutFileName()

G4String G4ASCIITree::GetOutFileName ( ) const
inline

Definition at line 47 of file G4ASCIITree.hh.

47{return fOutFileName;}

References fOutFileName.

◆ GetVerbosity()

G4int G4ASCIITree::GetVerbosity ( ) const
inline

◆ IsUISessionCompatible()

G4bool G4VGraphicsSystem::IsUISessionCompatible ( ) const
virtualinherited

Reimplemented in G4OpenGLQt, G4OpenGLXm, G4OpenInventor, G4Qt3D, G4ToolsSGQtGLES, G4ToolsSGWindowsGLES, G4ToolsSGX11GLES, G4ToolsSGXtGLES, and G4VtkQt.

Definition at line 68 of file G4VGraphicsSystem.cc.

69{
70 return true;
71}

◆ SetOutFileName()

void G4ASCIITree::SetOutFileName ( const G4String name)
inline

Definition at line 49 of file G4ASCIITree.hh.

References fOutFileName, and G4InuclParticleNames::name().

◆ SetVerbosity()

void G4ASCIITree::SetVerbosity ( G4int  verbosity)
inline

Definition at line 48 of file G4ASCIITree.hh.

48{fVerbosity = verbosity;}

References fVerbosity.

Referenced by G4ASCIITreeMessenger::SetNewValue().

Field Documentation

◆ fDescription

G4String G4VGraphicsSystem::fDescription
protectedinherited

Definition at line 90 of file G4VGraphicsSystem.hh.

Referenced by G4VGraphicsSystem::GetDescription().

◆ fFunctionality

Functionality G4VGraphicsSystem::fFunctionality
protectedinherited

Definition at line 91 of file G4VGraphicsSystem.hh.

Referenced by G4VGraphicsSystem::GetFunctionality().

◆ fName

G4String G4VGraphicsSystem::fName
protectedinherited

Definition at line 88 of file G4VGraphicsSystem.hh.

Referenced by G4VGraphicsSystem::GetName().

◆ fNicknames

std::vector<G4String> G4VGraphicsSystem::fNicknames
protectedinherited

◆ fOutFileName

G4String G4ASCIITree::fOutFileName
protected

Definition at line 53 of file G4ASCIITree.hh.

Referenced by GetOutFileName(), and SetOutFileName().

◆ fpMessenger

G4ASCIITreeMessenger* G4ASCIITree::fpMessenger
protected

Definition at line 52 of file G4ASCIITree.hh.

Referenced by G4ASCIITree(), and ~G4ASCIITree().

◆ fVerbosity

G4int G4ASCIITree::fVerbosity
protected

Definition at line 51 of file G4ASCIITree.hh.

Referenced by GetVerbosity(), and SetVerbosity().


The documentation for this class was generated from the following files: