source: trunk/geant4/visualization/management/include/G4VisExecutive.icc@ 689

Last change on this file since 689 was 632, checked in by garnier, 18 years ago

commit sur geant4

  • Property svn:mime-type set to text/cpp
File size: 5.2 KB
RevLine 
[531]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//
[632]27// $Id: G4VisExecutive.icc,v 1.18 2007/11/30 14:47:30 lgarnier Exp $
[593]28// GEANT4 tag $Name: $
[531]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
50// Needing external packages or libraries...
51
52#ifdef G4VIS_USE_DAWN
53#include "G4FukuiRenderer.hh"
54#endif
55
56#ifdef G4VIS_USE_OPENGLX
57#include "G4OpenGLImmediateX.hh"
58#include "G4OpenGLStoredX.hh"
59#endif
60
61#ifdef G4VIS_USE_OPENGLWIN32
62#include "G4OpenGLImmediateWin32.hh"
63#include "G4OpenGLStoredWin32.hh"
64#endif
65
66#ifdef G4VIS_USE_OPENGLXM
67#include "G4OpenGLImmediateXm.hh"
68#include "G4OpenGLStoredXm.hh"
69#endif
70
71#ifdef G4VIS_USE_OPENGLQT
[533]72#include "G4OpenGLImmediateQt.hh"
73#include "G4OpenGLStoredQt.hh"
[531]74#endif
75
76#ifdef G4VIS_USE_OIX
77#include "G4OpenInventorX.hh"
78#endif
79
80#ifdef G4VIS_USE_OIWIN32
81#include "G4OpenInventorWin32.hh"
82#endif
83
84#ifdef G4VIS_USE_RAYTRACERX
85#include "G4RayTracerX.hh"
86#endif
87
88#ifdef G4VIS_USE_VRML
89#include "G4VRML1.hh"
90#include "G4VRML2.hh"
91#endif
92
93G4VisExecutive::G4VisExecutive () {}
94
95void G4VisExecutive::RegisterGraphicsSystems () {
96
97 // Graphics Systems not needing external packages or libraries...
98 RegisterGraphicsSystem (new G4ASCIITree);
[612]99#ifdef G4VIS_USE_DAWN
100// RegisterGraphicsSystem (new G4DAWNFILE);
101#endif
[531]102 RegisterGraphicsSystem (new G4HepRep);
103 RegisterGraphicsSystem (new G4HepRepFile);
104 RegisterGraphicsSystem (new G4RayTracer);
105 RegisterGraphicsSystem (new G4VRML1File);
106 RegisterGraphicsSystem (new G4VRML2File);
107 // Graphics systems needing external packages or libraries...
108
109#ifdef G4VIS_USE_DAWN
110 RegisterGraphicsSystem (new G4FukuiRenderer);
111#endif
112
113#ifdef G4VIS_USE_OPENGLX
114 RegisterGraphicsSystem (new G4OpenGLImmediateX);
115 RegisterGraphicsSystem (new G4OpenGLStoredX);
116#endif
117
118#ifdef G4VIS_USE_OPENGLWIN32
119 RegisterGraphicsSystem (new G4OpenGLImmediateWin32);
120 RegisterGraphicsSystem (new G4OpenGLStoredWin32);
121#endif
122
123#ifdef G4VIS_USE_OPENGLXM
124 RegisterGraphicsSystem (new G4OpenGLImmediateXm);
125 RegisterGraphicsSystem (new G4OpenGLStoredXm);
126#endif
127
128#ifdef G4VIS_USE_OPENGLQT
129 RegisterGraphicsSystem (new G4OpenGLImmediateQt);
130 RegisterGraphicsSystem (new G4OpenGLStoredQt);
131#endif
132
133#ifdef G4VIS_USE_OIX
134 RegisterGraphicsSystem (new G4OpenInventorX);
135#endif
136
137#ifdef G4VIS_USE_OIWIN32
138 RegisterGraphicsSystem (new G4OpenInventorWin32);
139#endif
140
141#ifdef G4VIS_USE_RAYTRACERX
142 RegisterGraphicsSystem (new G4RayTracerX);
143#endif
144
145#ifdef G4VIS_USE_VRML
146 RegisterGraphicsSystem (new G4VRML1);
147 RegisterGraphicsSystem (new G4VRML2);
148#endif
149
150}
151
152void
153G4VisExecutive::RegisterModelFactories()
154{
155 // Trajectory draw models
156 RegisterModelFactory(new G4TrajectoryGenericDrawerFactory());
157 RegisterModelFactory(new G4TrajectoryDrawByChargeFactory());
158 RegisterModelFactory(new G4TrajectoryDrawByParticleIDFactory());
159 RegisterModelFactory(new G4TrajectoryDrawByOriginVolumeFactory());
160 RegisterModelFactory(new G4TrajectoryDrawByAttributeFactory());
161
162 // Trajectory filter models
163 RegisterModelFactory(new G4TrajectoryChargeFilterFactory());
164 RegisterModelFactory(new G4TrajectoryParticleFilterFactory());
165 RegisterModelFactory(new G4TrajectoryOriginVolumeFilterFactory());
166 RegisterModelFactory(new G4TrajectoryAttributeFilterFactory());
167
168 // Hit filter models
169 RegisterModelFactory(new G4HitAttributeFilterFactory());
170}
171
172#endif
Note: See TracBrowser for help on using the repository browser.