| [834] | 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: G4VTreeSceneHandler.hh,v 1.18 2006/06/29 21:24:47 gunter Exp $
|
|---|
| [850] | 28 | // GEANT4 tag $Name: HEAD $
|
|---|
| [834] | 29 | //
|
|---|
| 30 | //
|
|---|
| 31 | // John Allison 5th April 2001
|
|---|
| 32 | // A base class for a scene handler to dump geometry hierarchy.
|
|---|
| 33 | // In the derived class, override G4VScenehandler::RequestPrimitives
|
|---|
| 34 | // to implement dump of the geometry hierarchy.
|
|---|
| 35 |
|
|---|
| 36 | #ifndef G4VTREESCENEHANDLER_HH
|
|---|
| 37 | #define G4VTREESCENEHANDLER_HH
|
|---|
| 38 |
|
|---|
| 39 | #include "G4VSceneHandler.hh"
|
|---|
| 40 |
|
|---|
| 41 | #include "G4PhysicalVolumeModel.hh"
|
|---|
| 42 | #include <vector>
|
|---|
| 43 | #include <set>
|
|---|
| 44 |
|
|---|
| 45 | class G4VPhysicalVolume;
|
|---|
| 46 | class G4LogicalVolume;
|
|---|
| 47 | class G4ModelingParameters;
|
|---|
| 48 |
|
|---|
| 49 | class G4VTreeSceneHandler: public G4VSceneHandler {
|
|---|
| 50 |
|
|---|
| 51 | public:
|
|---|
| 52 | G4VTreeSceneHandler(G4VGraphicsSystem& system,
|
|---|
| 53 | const G4String& name);
|
|---|
| 54 | virtual ~G4VTreeSceneHandler ();
|
|---|
| 55 | void PreAddSolid (const G4Transform3D& objectTransformation,
|
|---|
| 56 | const G4VisAttributes&);
|
|---|
| 57 | void PostAddSolid ();
|
|---|
| 58 |
|
|---|
| 59 | ////////////////////////////////////////////////////////////////
|
|---|
| 60 | // Functions not used but required by the abstract interface.
|
|---|
| 61 |
|
|---|
| 62 | virtual void BeginPrimitives (const G4Transform3D&) {}
|
|---|
| 63 | virtual void EndPrimitives () {}
|
|---|
| 64 | virtual void AddPrimitive (const G4Polyline&) {}
|
|---|
| 65 | virtual void AddPrimitive (const G4Text&) {}
|
|---|
| 66 | virtual void AddPrimitive (const G4Circle&) {}
|
|---|
| 67 | virtual void AddPrimitive (const G4Square&) {}
|
|---|
| 68 | virtual void AddPrimitive (const G4Polyhedron&) {}
|
|---|
| 69 | virtual void AddPrimitive (const G4NURBS&) {}
|
|---|
| 70 | virtual void AddPrimitive (const G4Polymarker&) {}
|
|---|
| 71 | virtual void AddPrimitive (const G4Scale&) {}
|
|---|
| 72 |
|
|---|
| 73 | virtual void BeginModeling();
|
|---|
| 74 | virtual void EndModeling();
|
|---|
| 75 |
|
|---|
| 76 | protected:
|
|---|
| 77 |
|
|---|
| 78 | // In the derived class, override G4VScenehandler::RequestPrimitives
|
|---|
| 79 | // to implement dump of the geometry hierarchy.
|
|---|
| 80 | static G4int fSceneIdCount; // Counter for Tree scene handlers.
|
|---|
| 81 | const G4Transform3D* fpCurrentObjectTransformation;
|
|---|
| 82 | std::set<G4LogicalVolume*> fDrawnLVStore; // Stores encountered LVs.
|
|---|
| 83 | };
|
|---|
| 84 |
|
|---|
| 85 | #include "G4VTreeSceneHandler.icc"
|
|---|
| 86 |
|
|---|
| 87 | #endif
|
|---|