Geant4 Cross Reference |
1 // 1 // 2 // ******************************************* 2 // ******************************************************************** 3 // * License and Disclaimer << 3 // * DISCLAIMER * 4 // * 4 // * * 5 // * The Geant4 software is copyright of th << 5 // * The following disclaimer summarizes all the specific disclaimers * 6 // * the Geant4 Collaboration. It is provided << 6 // * of contributors to this software. The specific disclaimers,which * 7 // * conditions of the Geant4 Software License << 7 // * govern, are listed with their locations in: * 8 // * LICENSE and available at http://cern.ch/ << 8 // * http://cern.ch/geant4/license * 9 // * include a list of copyright holders. << 10 // * 9 // * * 11 // * Neither the authors of this software syst 10 // * Neither the authors of this software system, nor their employing * 12 // * institutes,nor the agencies providing fin 11 // * institutes,nor the agencies providing financial support for this * 13 // * work make any representation or warran 12 // * work make any representation or warranty, express or implied, * 14 // * regarding this software system or assum 13 // * regarding this software system or assume any liability for its * 15 // * use. Please see the license in the file << 14 // * use. * 16 // * for the full disclaimer and the limitatio << 17 // * 15 // * * 18 // * This code implementation is the result << 16 // * This code implementation is the intellectual property of the * 19 // * technical work of the GEANT4 collaboratio << 17 // * GEANT4 collaboration. * 20 // * By using, copying, modifying or distri << 18 // * By copying, distributing or modifying the Program (or any work * 21 // * any work based on the software) you ag << 19 // * based on the Program) you indicate your acceptance of this * 22 // * use in resulting scientific publicati << 20 // * statement, and all its terms. * 23 // * acceptance of all terms of the Geant4 Sof << 24 // ******************************************* 21 // ******************************************************************** 25 // 22 // >> 23 // >> 24 // $Id: G4HepRepFileViewer.cc,v 1.6 2002/02/02 04:00:27 perl Exp $ >> 25 // GEANT4 tag $Name: geant4-04-01 $ 26 26 27 #include "G4HepRepFileViewer.hh" 27 #include "G4HepRepFileViewer.hh" 28 28 >> 29 #include "G4ios.hh" >> 30 #include "g4std/strstream" >> 31 29 #include "G4VSceneHandler.hh" 32 #include "G4VSceneHandler.hh" 30 33 31 #include "G4HepRepFileSceneHandler.hh" 34 #include "G4HepRepFileSceneHandler.hh" 32 35 33 // HepRep << 36 //HepRep 34 #include "G4HepRepFileXMLWriter.hh" << 37 #include "HepRepXMLWriter.hh" 35 38 36 G4HepRepFileViewer::G4HepRepFileViewer(G4VScen << 39 G4HepRepFileViewer::G4HepRepFileViewer 37 const G << 40 (G4VSceneHandler& sceneHandler, const G4String& name): 38 : G4VViewer(sceneHandler, sceneHandler.Incre << 41 G4VViewer(sceneHandler, sceneHandler.IncrementViewCount(), name) { 39 { << 42 hepRepXMLWriter = ((G4HepRepFileSceneHandler*)(&sceneHandler))->GetHepRepXMLWriter(); 40 hepRepXMLWriter = << 41 ((G4HepRepFileSceneHandler*) (&sceneHandle << 42 // Make changes to view parameters for HepRe << 43 fVP.SetCulling(false); << 44 fDefaultVP.SetCulling(false); << 45 } 43 } 46 44 47 G4HepRepFileViewer::~G4HepRepFileViewer() { Sh << 45 G4HepRepFileViewer::~G4HepRepFileViewer() {} 48 46 49 void G4HepRepFileViewer::SetView() << 47 void G4HepRepFileViewer::SetView() { 50 { << 51 #ifdef G4HEPREPFILEDEBUG 48 #ifdef G4HEPREPFILEDEBUG 52 G4cout << "G4HepRepFileViewer::SetView() cal 49 G4cout << "G4HepRepFileViewer::SetView() called.=" << G4endl; 53 #endif 50 #endif 54 } 51 } 55 52 56 void G4HepRepFileViewer::ClearView() << 53 void G4HepRepFileViewer::ClearView() { 57 { << 58 #ifdef G4HEPREPFILEDEBUG 54 #ifdef G4HEPREPFILEDEBUG 59 G4cout << "G4HepRepFileViewer::ClearView() c 55 G4cout << "G4HepRepFileViewer::ClearView() called." << G4endl; 60 #endif 56 #endif 61 } 57 } 62 58 63 void G4HepRepFileViewer::DrawView() << 59 void G4HepRepFileViewer::DrawView() { 64 { << 65 #ifdef G4HEPREPFILEDEBUG 60 #ifdef G4HEPREPFILEDEBUG 66 G4cout << "G4HepRepFileViewer::DrawView() ca 61 G4cout << "G4HepRepFileViewer::DrawView() called." << G4endl; 67 #endif 62 #endif 68 NeedKernelVisit(); // Always need to visit << 63 NeedKernelVisit (); // Always need to visit G4 kernel. 69 ProcessView(); << 64 ProcessView (); 70 } 65 } 71 66 72 void G4HepRepFileViewer::ShowView() << 67 void G4HepRepFileViewer::ShowView () { 73 { << 74 #ifdef G4HEPREPFILEDEBUG 68 #ifdef G4HEPREPFILEDEBUG 75 G4cout << "G4HepRepFileViewer::ShowView" << 69 G4cout << "G4HepRepFileViewer::ShowView" << G4endl; 76 #endif 70 #endif 77 G4VViewer::ShowView(); 71 G4VViewer::ShowView(); 78 72 79 if(hepRepXMLWriter->isOpen) << 73 hepRepXMLWriter->close(); 80 hepRepXMLWriter->close(); << 81 } 74 } 82 75