QwGeant4
QweakSimVisManager.hh
Go to the documentation of this file.
1 //=============================================================================
2 //
3 // ---------------------------
4 // | Doxygen File Information |
5 // ---------------------------
6 /**
7 
8  \file QweakSimVisManager.hh
9  $Revision: 1.2 $
10  $Date: 2005/12/27 19:33:07 $
11  \author Klaus Hans Grimm
12 
13 */
14 //=============================================================================
15 //
16 //=============================================================================
17 //
18 // ---------------------------
19 // | Doxygen Class Information |
20 // ---------------------------
21 /**
22  \class QweakSimVisManager
23 
24  \brief N/A
25 
26  Placeholder for a long explaination
27 
28  */
29 //=============================================================================
30 //
31 //=============================================================================
32 // -----------------------
33 // | CVS File Information |
34 // -----------------------
35 //
36 // Last Update: $Author: grimm $
37 // Update Date: $Date: 2005/12/27 19:33:07 $
38 // CVS/RCS Revision: $Revision: 1.2 $
39 // Status: $State: Exp $
40 //
41 // ===================================
42 // CVS Revision Log at end of file !!
43 // ===================================
44 //
45 //=============================================================================
46 
47 
48 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
49 
50 // Example Visualization Manager implementing virtual function
51 // RegisterGraphicsSystems. Exploits C-pre-processor variables
52 // G4VIS_USE_DAWN, etc., which are set by the GNUmakefiles if
53 // environment variables of the same name are set.
54 
55 // So all you have to do is set environment variables and compile and
56 // instantiate this in your main().
57 
58 // Alternatively, you can implement an empty function here and just
59 // register the systems you want in your main(), e.g.:
60 // G4VisManager* myVisManager = new MyVisManager;
61 // myVisManager -> RegisterGraphicsSystem (new MyGraphicsSystem);
62 
63 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
64 
65 #ifndef QweakSimVisManager_h
66 #define QweakSimVisManager_h 1
67 
68 #ifdef G4VIS_USE
69 
70 #include "G4VisManager.hh"
71 
72 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
73 
74 class QweakSimVisManager: public G4VisManager {
75 
76 public:
77 
79 
80 private:
81 
82  void RegisterGraphicsSystems ();
83 
84 };
85 
86 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
87 
88 #endif
89 
90 #endif
91 
92 //=======================================================================================
93 // -----------------------
94 // | CVS File Information |
95 // -----------------------
96 //
97 // $Revisions$
98 // $Log: QweakSimVisManager.hh,v $
99 // Revision 1.2 2005/12/27 19:33:07 grimm
100 // - Redesign of Doxygen header containing CVS info like revision and date
101 // - Added CVS revision log at the end of file
102 //
103 //