source: trunk/source/visualization/management/include/G4VisExecutive.icc @ 1140

Last change on this file since 1140 was 1140, checked in by garnier, 15 years ago

update to CVS

  • Property svn:mime-type set to text/cpp
File size: 5.8 KB
Line 
1//
2// ********************************************************************
3// * License and Disclaimer                                           *
4// *                                                                  *
5// * The  Geant4 software  is  copyright of the Copyright Holders  of *
6// * the Geant4 Collaboration.  It is provided  under  the terms  and *
7// * conditions of the Geant4 Software License,  included in the file *
8// * LICENSE and available at  http://cern.ch/geant4/license .  These *
9// * include a list of copyright holders.                             *
10// *                                                                  *
11// * Neither the authors of this software system, nor their employing *
12// * institutes,nor the agencies providing financial support for this *
13// * work  make  any representation or  warranty, express or implied, *
14// * regarding  this  software system or assume any liability for its *
15// * use.  Please see the license in the file  LICENSE  and URL above *
16// * for the full disclaimer and the limitation of liability.         *
17// *                                                                  *
18// * This  code  implementation is the result of  the  scientific and *
19// * technical work of the GEANT4 collaboration.                      *
20// * By using,  copying,  modifying or  distributing the software (or *
21// * any work based  on the software)  you  agree  to acknowledge its *
22// * use  in  resulting  scientific  publications,  and indicate your *
23// * acceptance of all terms of the Geant4 Software license.          *
24// ********************************************************************
25//
26//
27// $Id: G4VisExecutive.icc,v 1.22 2009/10/12 11:54:50 akimura Exp $
28// GEANT4 tag $Name:  $
29//
30//
31// John Allison 24th January 1998.
32
33#ifndef G4VISEXECUTIVE_ICC
34#define G4VISEXECUTIVE_ICC
35
36// Supported drivers...
37
38// Not needing external packages or libraries...
39#include "G4ASCIITree.hh"
40#include "G4DAWNFILE.hh"
41#include "G4HepRep.hh"
42#include "G4HepRepFile.hh"
43#include "G4RayTracer.hh"
44#include "G4HitFilterFactories.hh"
45#include "G4TrajectoryFilterFactories.hh"
46#include "G4TrajectoryModelFactories.hh"
47#include "G4VRML1File.hh"
48#include "G4VRML2File.hh"
49#include "G4GMocrenFile.hh"
50
51// Needing external packages or libraries...
52
53#ifdef G4VIS_USE_DAWN
54#include "G4FukuiRenderer.hh"
55#endif
56
57#ifdef G4VIS_USE_OPENGLX
58#include "G4OpenGLImmediateX.hh"
59#include "G4OpenGLStoredX.hh"
60#endif
61
62#ifdef G4VIS_USE_OPENGLWIN32
63#include "G4OpenGLImmediateWin32.hh"
64#include "G4OpenGLStoredWin32.hh"
65#endif
66
67#ifdef G4VIS_USE_OPENGLXM
68#include "G4OpenGLImmediateXm.hh"
69#include "G4OpenGLStoredXm.hh"
70#endif
71
72#ifdef G4VIS_USE_OPENGLQT
73#include "G4OpenGLImmediateQt.hh"
74#include "G4OpenGLStoredQt.hh"
75#endif
76
77#ifdef G4VIS_USE_OIX
78#include "G4OpenInventorX.hh"
79#endif
80
81#ifdef G4VIS_USE_OIWIN32
82#include "G4OpenInventorWin32.hh"
83#endif
84
85#ifdef G4VIS_USE_RAYTRACERX
86#include "G4RayTracerX.hh"
87#endif
88
89#ifdef G4VIS_USE_VRML
90#include "G4VRML1.hh"
91#include "G4VRML2.hh"
92#endif
93
94// The inline keyword prevents the compiler making an external
95// reference even though they cannot actually be inlined since they
96// are virtual functions.  This prevents a "multiple definition" error
97// if it is included in more than one file.  However, as explained in
98// the class description in G4VisExecutive.hh, it should never be
99// necessary to #include "G4VisExecutive.hh" in more than one file
100// since after instantiation the object can be treated as a
101// G4VisManager.
102inline void
103G4VisExecutive::RegisterGraphicsSystems () {
104
105  // Graphics Systems not needing external packages or libraries...
106  RegisterGraphicsSystem (new G4ASCIITree);
107  RegisterGraphicsSystem (new G4DAWNFILE);
108  RegisterGraphicsSystem (new G4HepRep);
109  RegisterGraphicsSystem (new G4HepRepFile);
110  RegisterGraphicsSystem (new G4RayTracer);
111  RegisterGraphicsSystem (new G4VRML1File);
112  RegisterGraphicsSystem (new G4VRML2File);
113  RegisterGraphicsSystem (new G4GMocrenFile);
114  // Graphics systems needing external packages or libraries...
115
116#ifdef G4VIS_USE_DAWN
117  RegisterGraphicsSystem (new G4FukuiRenderer);
118#endif
119
120#ifdef G4VIS_USE_OPENGLX
121  RegisterGraphicsSystem (new G4OpenGLImmediateX);
122  RegisterGraphicsSystem (new G4OpenGLStoredX);
123#endif
124
125#ifdef G4VIS_USE_OPENGLWIN32
126  RegisterGraphicsSystem (new G4OpenGLImmediateWin32);
127  RegisterGraphicsSystem (new G4OpenGLStoredWin32);
128#endif
129
130#ifdef G4VIS_USE_OPENGLXM
131  RegisterGraphicsSystem (new G4OpenGLImmediateXm);
132  RegisterGraphicsSystem (new G4OpenGLStoredXm);
133#endif
134
135#ifdef G4VIS_USE_OPENGLQT
136  RegisterGraphicsSystem (new G4OpenGLImmediateQt);
137  RegisterGraphicsSystem (new G4OpenGLStoredQt);
138#endif
139
140#ifdef G4VIS_USE_OIX
141  RegisterGraphicsSystem (new G4OpenInventorX);
142#endif
143
144#ifdef G4VIS_USE_OIWIN32
145  RegisterGraphicsSystem (new G4OpenInventorWin32);
146#endif
147
148#ifdef G4VIS_USE_RAYTRACERX
149  RegisterGraphicsSystem (new G4RayTracerX);
150#endif
151
152#ifdef G4VIS_USE_VRML
153  RegisterGraphicsSystem (new G4VRML1);
154  RegisterGraphicsSystem (new G4VRML2);
155#endif
156
157}
158
159// See comments about inlining above.
160inline void
161G4VisExecutive::RegisterModelFactories()
162{
163   // Trajectory draw models
164   RegisterModelFactory(new G4TrajectoryGenericDrawerFactory());       
165   RegisterModelFactory(new G4TrajectoryDrawByChargeFactory());
166   RegisterModelFactory(new G4TrajectoryDrawByParticleIDFactory());
167   RegisterModelFactory(new G4TrajectoryDrawByOriginVolumeFactory()); 
168   RegisterModelFactory(new G4TrajectoryDrawByAttributeFactory()); 
169
170   // Trajectory filter models
171   RegisterModelFactory(new G4TrajectoryChargeFilterFactory());
172   RegisterModelFactory(new G4TrajectoryParticleFilterFactory());
173   RegisterModelFactory(new G4TrajectoryOriginVolumeFilterFactory());
174   RegisterModelFactory(new G4TrajectoryAttributeFilterFactory());
175
176   // Hit filter models
177   RegisterModelFactory(new G4HitAttributeFilterFactory());
178}
179
180#endif
Note: See TracBrowser for help on using the repository browser.