Geant4  10.03.p01
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
G4VGraphicsScene.hh
Go to the documentation of this file.
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: G4VGraphicsScene.hh 99153 2016-09-07 08:05:30Z gcosmo $
28 // John Allison 19th July 1996
29 //
30 // Class Description:
31 // Abstract interface class for a graphics scene handler.
32 // It is a minimal scene handler for the GEANT4 kernel.
33 // See G4VSceneHandler for a fuller description. G4VSceneHandler is
34 // the full abstract interface to graphics systems.
35 
36 #ifndef G4VGRAPHICSSCENE_HH
37 #define G4VGRAPHICSSCENE_HH
38 
39 #include "globals.hh"
40 #include "G4Transform3D.hh"
41 
42 class G4VisAttributes;
43 class G4VSolid;
44 class G4Box;
45 class G4Cons;
46 class G4Orb;
47 class G4Para;
48 class G4Torus;
49 class G4Trap;
50 class G4Trd;
51 class G4Tubs;
52 class G4Sphere;
53 
54 class G4Ellipsoid;
55 class G4Polycone;
56 class G4Polyhedra;
57 
59 class G4VTrajectory;
60 class G4VHit;
61 class G4VDigi;
62 template <typename T> class G4THitsMap;
63 class G4Polyline;
64 class G4Scale;
65 class G4Text;
66 class G4Circle;
67 class G4Square;
68 class G4Polymarker;
69 class G4Polyhedron;
70 class G4VisExtent;
71 class G4StatDouble;
72 
74 
75 public: // With description
76 
78  virtual ~G4VGraphicsScene();
79 
81  // Methods for adding solids to the scene handler. They
82  // must always be called in the triplet PreAddSolid, AddSolid and
83  // PostAddSolid. The transformation and visualization attributes
84  // must be set by the call to PreAddSolid. A possible default
85  // implementation is to request the solid to provide a G4Polyhedron
86  // or similar primitive - see, for example, G4VSceneHandler in the
87  // Visualization Category.
88 
89  virtual void PreAddSolid (const G4Transform3D& objectTransformation,
90  const G4VisAttributes& visAttribs) = 0;
91  // objectTransformation is the transformation in the world
92  // coordinate system of the object about to be added, and
93  // visAttribs is its visualization attributes.
94 
95  virtual void PostAddSolid () = 0;
96 
97  // From geometry/solids/CSG
98  virtual void AddSolid (const G4Box&) = 0;
99  virtual void AddSolid (const G4Cons&) = 0;
100  virtual void AddSolid (const G4Orb&) = 0;
101  virtual void AddSolid (const G4Para&) = 0;
102  virtual void AddSolid (const G4Sphere&) = 0;
103  virtual void AddSolid (const G4Torus&) = 0;
104  virtual void AddSolid (const G4Trap&) = 0;
105  virtual void AddSolid (const G4Trd&) = 0;
106  virtual void AddSolid (const G4Tubs&) = 0;
107 
108  // From geometry/solids/specific
109  virtual void AddSolid (const G4Ellipsoid&) = 0;
110  virtual void AddSolid (const G4Polycone&) = 0;
111  virtual void AddSolid (const G4Polyhedra&) = 0;
112 
113  // For solids not above.
114  virtual void AddSolid (const G4VSolid&) = 0;
115 
117  // Methods for adding "compound" GEANT4 objects to the scene
118  // handler. These methods may either (a) invoke "user code" that
119  // uses the "user interface", G4VVisManager (see, for example,
120  // G4VSceneHandler in the Visualization Category, which for
121  // trajectories uses G4VTrajectory::DrawTrajectory, via
122  // G4TrajectoriesModel in the Modeling Category) or (b) invoke
123  // AddPrimitives below (between calls to Begin/EndPrimitives) or (c)
124  // use graphics-system-specific code or (d) any combination of the
125  // above.
126 
127  virtual void AddCompound (const G4VTrajectory&) = 0;
128  virtual void AddCompound (const G4VHit&) = 0;
129  virtual void AddCompound (const G4VDigi&) = 0;
130  virtual void AddCompound (const G4THitsMap<G4double>&) = 0;
131  virtual void AddCompound (const G4THitsMap<G4StatDouble>&) = 0;
132 
134  // Methods for adding graphics primitives to the scene handler. A
135  // sequence of calls to AddPrimitive must be sandwiched between
136  // calls to BeginPrimitives and EndPrimitives. A sequence is any
137  // number of calls that have the same transformation.
138 
139  virtual void BeginPrimitives
140  (const G4Transform3D& objectTransformation = G4Transform3D()) = 0;
141  // objectTransformation is the transformation in the world
142  // coordinate system of the object about to be added.
143 
144  virtual void EndPrimitives () = 0;
145 
146  virtual void BeginPrimitives2D
147  (const G4Transform3D& objectTransformation = G4Transform3D()) = 0;
148 
149  virtual void EndPrimitives2D () = 0;
150  // The x,y coordinates of the primitives passed to AddPrimitive are
151  // intrepreted as screen coordinates, -1 < x,y < 1. The
152  // z-coordinate is ignored.
153 
154  virtual void AddPrimitive (const G4Polyline&) = 0;
155  virtual void AddPrimitive (const G4Scale&) = 0;
156  virtual void AddPrimitive (const G4Text&) = 0;
157  virtual void AddPrimitive (const G4Circle&) = 0;
158  virtual void AddPrimitive (const G4Square&) = 0;
159  virtual void AddPrimitive (const G4Polymarker&) = 0;
160  virtual void AddPrimitive (const G4Polyhedron&) = 0;
161 
162  virtual const G4VisExtent& GetExtent() const;
163  // The concrete class should overload this or
164  // G4VisExtent::NullExtent will be returned.
165  // See G4VScenHandler for example.
166 
167 };
168 
169 #endif
virtual void PostAddSolid()=0
Definition: G4Para.hh:77
Definition: G4Text.hh:73
Definition: G4Box.hh:64
Definition: G4Tubs.hh:85
virtual void BeginPrimitives(const G4Transform3D &objectTransformation=G4Transform3D())=0
Definition: G4VHit.hh:48
Definition: G4Trd.hh:72
virtual void AddSolid(const G4Box &)=0
virtual void AddPrimitive(const G4Polyline &)=0
Definition: G4Cons.hh:83
HepGeom::Transform3D G4Transform3D
Definition: G4Orb.hh:61
virtual void EndPrimitives2D()=0
virtual const G4VisExtent & GetExtent() const
virtual void AddCompound(const G4VTrajectory &)=0
virtual void BeginPrimitives2D(const G4Transform3D &objectTransformation=G4Transform3D())=0
virtual void PreAddSolid(const G4Transform3D &objectTransformation, const G4VisAttributes &visAttribs)=0
virtual void EndPrimitives()=0
virtual ~G4VGraphicsScene()