Geant4.10
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
Public Member Functions | Protected Attributes
G4ASCIITree Class Reference

#include <G4ASCIITree.hh>

Inheritance diagram for G4ASCIITree:
G4VTree G4VGraphicsSystem

Public Member Functions

 G4ASCIITree ()
 
virtual ~G4ASCIITree ()
 
G4VSceneHandlerCreateSceneHandler (const G4String &name="")
 
G4VViewerCreateViewer (G4VSceneHandler &, const G4String &name="")
 
G4int GetVerbosity () const
 
G4String GetOutFileName () const
 
void SetVerbosity (G4int verbosity)
 
void SetOutFileName (const G4String &name)
 
- Public Member Functions inherited from G4VTree
 G4VTree (const G4String &name, const G4String &nickname, const G4String &description, Functionality f)
 
virtual ~G4VTree ()
 
- Public Member Functions inherited from G4VGraphicsSystem
 G4VGraphicsSystem (const G4String &name, Functionality f)
 
 G4VGraphicsSystem (const G4String &name, const G4String &nickname, Functionality f)
 
 G4VGraphicsSystem (const G4String &name, const G4String &nickname, const G4String &description, Functionality f)
 
virtual ~G4VGraphicsSystem ()
 
const G4StringGetName () const
 
const G4StringGetNickname () const
 
const G4StringGetDescription () const
 
Functionality GetFunctionality () const
 
virtual G4bool IsUISessionCompatible () const
 
void SetName (const G4String &)
 
void SetNickname (const G4String &)
 
void SetDescription (const G4String &)
 
void SetFunctionality (Functionality)
 

Protected Attributes

G4int fVerbosity
 
G4ASCIITreeMessengerfpMessenger
 
G4String fOutFileName
 
- Protected Attributes inherited from G4VGraphicsSystem
G4String fName
 
G4String fNickname
 
G4String fDescription
 
Functionality fFunctionality
 

Additional Inherited Members

- Public Types inherited from G4VGraphicsSystem
enum  Functionality {
  noFunctionality, nonEuclidian, twoD, twoDStore,
  threeD, threeDInteractive, virtualReality
}
 

Detailed Description

Definition at line 41 of file G4ASCIITree.hh.

Constructor & Destructor Documentation

G4ASCIITree::G4ASCIITree ( )

Definition at line 38 of file G4ASCIITree.cc.

References fpMessenger.

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

Definition at line 50 of file G4ASCIITree.cc.

References fpMessenger.

50  {
51  delete fpMessenger;
52 }
G4ASCIITreeMessenger * fpMessenger
Definition: G4ASCIITree.hh:53

Member Function Documentation

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

Implements G4VGraphicsSystem.

Definition at line 54 of file G4ASCIITree.cc.

54  {
55  G4VSceneHandler* pScene = new G4ASCIITreeSceneHandler (*this, name);
56  return pScene;
57 }
G4VViewer * G4ASCIITree::CreateViewer ( G4VSceneHandler scene,
const G4String name = "" 
)
virtual

Implements G4VGraphicsSystem.

Definition at line 59 of file G4ASCIITree.cc.

References G4cout, and G4endl.

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

Definition at line 48 of file G4ASCIITree.hh.

References fOutFileName.

48 {return fOutFileName;}
G4String fOutFileName
Definition: G4ASCIITree.hh:54
G4int G4ASCIITree::GetVerbosity ( ) const
inline
void G4ASCIITree::SetOutFileName ( const G4String name)
inline

Definition at line 50 of file G4ASCIITree.hh.

References fOutFileName.

50 {fOutFileName = name;}
const XML_Char * name
G4String fOutFileName
Definition: G4ASCIITree.hh:54
void G4ASCIITree::SetVerbosity ( G4int  verbosity)
inline

Definition at line 49 of file G4ASCIITree.hh.

References fVerbosity.

49 {fVerbosity = verbosity;}
G4int fVerbosity
Definition: G4ASCIITree.hh:52

Field Documentation

G4String G4ASCIITree::fOutFileName
protected

Definition at line 54 of file G4ASCIITree.hh.

Referenced by GetOutFileName(), and SetOutFileName().

G4ASCIITreeMessenger* G4ASCIITree::fpMessenger
protected

Definition at line 53 of file G4ASCIITree.hh.

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

G4int G4ASCIITree::fVerbosity
protected

Definition at line 52 of file G4ASCIITree.hh.

Referenced by GetVerbosity(), and SetVerbosity().


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