Geant4 Cross Reference |
1 // 1 // 2 // ******************************************* 2 // ******************************************************************** 3 // * License and Disclaimer 3 // * License and Disclaimer * 4 // * 4 // * * 5 // * The Geant4 software is copyright of th 5 // * The Geant4 software is copyright of the Copyright Holders of * 6 // * the Geant4 Collaboration. It is provided 6 // * the Geant4 Collaboration. It is provided under the terms and * 7 // * conditions of the Geant4 Software License 7 // * conditions of the Geant4 Software License, included in the file * 8 // * LICENSE and available at http://cern.ch/ 8 // * LICENSE and available at http://cern.ch/geant4/license . These * 9 // * include a list of copyright holders. 9 // * include a list of copyright holders. * 10 // * 10 // * * 11 // * Neither the authors of this software syst 11 // * Neither the authors of this software system, nor their employing * 12 // * institutes,nor the agencies providing fin 12 // * institutes,nor the agencies providing financial support for this * 13 // * work make any representation or warran 13 // * work make any representation or warranty, express or implied, * 14 // * regarding this software system or assum 14 // * regarding this software system or assume any liability for its * 15 // * use. Please see the license in the file 15 // * use. Please see the license in the file LICENSE and URL above * 16 // * for the full disclaimer and the limitatio 16 // * for the full disclaimer and the limitation of liability. * 17 // * 17 // * * 18 // * This code implementation is the result 18 // * This code implementation is the result of the scientific and * 19 // * technical work of the GEANT4 collaboratio 19 // * technical work of the GEANT4 collaboration. * 20 // * By using, copying, modifying or distri 20 // * By using, copying, modifying or distributing the software (or * 21 // * any work based on the software) you ag 21 // * any work based on the software) you agree to acknowledge its * 22 // * use in resulting scientific publicati 22 // * use in resulting scientific publications, and indicate your * 23 // * acceptance of all terms of the Geant4 Sof 23 // * acceptance of all terms of the Geant4 Software license. * 24 // ******************************************* 24 // ******************************************************************** 25 // 25 // 26 // 26 // >> 27 // $Id: G4GMocrenFileViewer.cc 70733 2013-06-05 10:05:57Z gcosmo $ 27 // 28 // 28 // 29 // 29 // Created: Mar. 31, 2009 Akinori Kimura 30 // Created: Mar. 31, 2009 Akinori Kimura 30 // 31 // 31 32 32 33 33 #define __G_ANSI_C__ 34 #define __G_ANSI_C__ 34 #define G4GMocrenFile_STRUCTURE_PRIORITY 1. 35 #define G4GMocrenFile_STRUCTURE_PRIORITY 1. 35 36 36 #include "G4ios.hh" 37 #include "G4ios.hh" 37 #include <cstdio> 38 #include <cstdio> 38 #include <cstring> 39 #include <cstring> 39 #include <cassert> 40 #include <cassert> 40 41 41 #include "G4VisManager.hh" 42 #include "G4VisManager.hh" 42 #include "G4Scene.hh" 43 #include "G4Scene.hh" 43 #include "G4Vector3D.hh" 44 #include "G4Vector3D.hh" 44 #include "G4VisExtent.hh" 45 #include "G4VisExtent.hh" 45 #include "G4LogicalVolume.hh" 46 #include "G4LogicalVolume.hh" 46 #include "G4VSolid.hh" 47 #include "G4VSolid.hh" 47 48 48 #include "G4GMocrenFile.hh" 49 #include "G4GMocrenFile.hh" 49 #include "G4GMocrenFileSceneHandler.hh" 50 #include "G4GMocrenFileSceneHandler.hh" 50 #include "G4GMocrenFileViewer.hh" 51 #include "G4GMocrenFileViewer.hh" 51 #include "G4GMocrenMessenger.hh" 52 #include "G4GMocrenMessenger.hh" 52 53 53 54 54 //----- constants 55 //----- constants 55 56 56 //-- for a debugging 57 //-- for a debugging 57 const G4bool GFDEBUG = false; << 58 const bool GFDEBUG = false; 58 59 59 //----- G4GMocrenFileViewer, constructor 60 //----- G4GMocrenFileViewer, constructor 60 G4GMocrenFileViewer::G4GMocrenFileViewer (G4GM 61 G4GMocrenFileViewer::G4GMocrenFileViewer (G4GMocrenFileSceneHandler& sceneHandler, 61 G4GMocrenMessenger &, 62 G4GMocrenMessenger &, 62 const G4String& name) 63 const G4String& name) 63 : G4VViewer (sceneHandler, sceneHandler.Incr 64 : G4VViewer (sceneHandler, sceneHandler.IncrementViewCount (), name), 64 kSceneHandler (sceneHandler) 65 kSceneHandler (sceneHandler) 65 { 66 { 66 // Set a g4.gdd-file viewer 67 // Set a g4.gdd-file viewer 67 std::strncpy( kG4GddViewer, "gMocren", 8); 68 std::strncpy( kG4GddViewer, "gMocren", 8); 68 if( std::getenv( "G4GMocrenFile_VIEWER" ) != << 69 if( getenv( "G4GMocrenFile_VIEWER" ) != NULL ) { 69 char * env = std::getenv( "G4GMocrenFile_V << 70 char * env = getenv( "G4GMocrenFile_VIEWER" ); 70 G4int len = (G4int)std::strlen(env); << 71 std::strncpy( kG4GddViewer, env, std::strlen(env)); 71 if(len >= 32) { << 72 G4Exception("G4GMocrenFileViewer::G4GMoc << 73 "gMocren1000", FatalExceptio << 74 "Invalid length of string se << 75 } << 76 std::strncpy( kG4GddViewer, env, sizeof(kG << 77 kG4GddViewer[sizeof(kG4GddViewer) - 1] = ' << 78 //std::strcpy( kG4GddViewer, getenv( "G4GM 72 //std::strcpy( kG4GddViewer, getenv( "G4GMocrenFile_VIEWER" ) ) ; 79 } 73 } 80 74 81 // string for viewer invocation 75 // string for viewer invocation 82 if ( !std::strcmp( kG4GddViewer, "NONE" ) ) 76 if ( !std::strcmp( kG4GddViewer, "NONE" ) ) { 83 77 84 //std::strcpy( kG4GddViewerInvocation, "" 78 //std::strcpy( kG4GddViewerInvocation, "" ); 85 kG4GddViewerInvocation[0] = '\0'; 79 kG4GddViewerInvocation[0] = '\0'; 86 } else { 80 } else { 87 81 88 std::strncpy( kG4GddViewerInvocation, kG4G << 82 std::strncpy( kG4GddViewerInvocation, kG4GddViewer, std::strlen(kG4GddViewer)); 89 sizeof(kG4GddViewerInvocation << 83 std::strncat( kG4GddViewerInvocation, " ", 1); 90 kG4GddViewerInvocation[sizeof(kG4GddViewer << 91 G4int n = sizeof(kG4GddViewerInvocation) << 92 - (G4int)std::strlen(kG4GddViewerI << 93 std::strncat( kG4GddViewerInvocation, " ", << 94 const char * gddfname = kSceneHandler.GetG 84 const char * gddfname = kSceneHandler.GetGddFileName(); 95 G4int len = (G4int)std::strlen(gddfname); << 85 std::strncat( kG4GddViewerInvocation, gddfname, std::strlen(gddfname) ); 96 if(len >= 64) { << 97 G4Exception("G4GMocrenFileViewer::G4GMoc << 98 "gMocren1001", FatalExceptio << 99 "Invalid length of the GDD f << 100 } << 101 n = sizeof(kG4GddViewerInvocation) << 102 - (G4int)std::strlen(kG4GddViewerInvocat << 103 std::strncat( kG4GddViewerInvocation, gddf << 104 } 86 } 105 87 106 } 88 } 107 89 108 //----- G4GMocrenFileViewer, destructor 90 //----- G4GMocrenFileViewer, destructor 109 G4GMocrenFileViewer::~G4GMocrenFileViewer () 91 G4GMocrenFileViewer::~G4GMocrenFileViewer () 110 {} 92 {} 111 93 112 //----- G4GMocrenFileViewer::SetView () 94 //----- G4GMocrenFileViewer::SetView () 113 void G4GMocrenFileViewer::SetView () 95 void G4GMocrenFileViewer::SetView () 114 { 96 { 115 if(GFDEBUG) 97 if(GFDEBUG) 116 if (G4VisManager::GetVerbosity() >= G4VisM 98 if (G4VisManager::GetVerbosity() >= G4VisManager::errors) 117 G4cout << "***** G4GMocrenFileViewer::Se 99 G4cout << "***** G4GMocrenFileViewer::SetView(): No effects" << G4endl; 118 100 119 // Do nothing, since DAWN is running as a di 101 // Do nothing, since DAWN is running as a different process. 120 // SendViewParameters () will do this job in 102 // SendViewParameters () will do this job instead. 121 } 103 } 122 104 123 105 124 //----- G4GMocrenFileViewer::ClearView() 106 //----- G4GMocrenFileViewer::ClearView() 125 void 107 void 126 G4GMocrenFileViewer::ClearView( void ) 108 G4GMocrenFileViewer::ClearView( void ) 127 { 109 { 128 if(GFDEBUG) { << 110 if(GFDEBUG) 129 if (G4VisManager::GetVerbosity() >= G4VisM << 111 if (G4VisManager::GetVerbosity() >= G4VisManager::errors) 130 G4cout << "***** G4GMocrenFileViewer::Cl 112 G4cout << "***** G4GMocrenFileViewer::ClearView (): No effects " << G4endl; 131 } << 113 132 } << 133 //if(kSceneHandler.kGddDest) { 114 //if(kSceneHandler.kGddDest) { 134 //kSceneHandler.kGddDest.close(); 115 //kSceneHandler.kGddDest.close(); 135 // Re-open with same filename... 116 // Re-open with same filename... 136 //kSceneHandler.kGddDest.open(kSceneHandle 117 //kSceneHandler.kGddDest.open(kSceneHandler.kGddFileName); 137 kSceneHandler.kFlagInModeling = false; 118 kSceneHandler.kFlagInModeling = false; 138 kSceneHandler.GFBeginModeling(); 119 kSceneHandler.GFBeginModeling(); 139 //} 120 //} 140 } 121 } 141 122 142 123 143 //----- G4GMocrenFileViewer::DrawView () 124 //----- G4GMocrenFileViewer::DrawView () 144 void G4GMocrenFileViewer::DrawView () 125 void G4GMocrenFileViewer::DrawView () 145 { 126 { 146 if(GFDEBUG) 127 if(GFDEBUG) 147 if (G4VisManager::GetVerbosity() >= G4VisM 128 if (G4VisManager::GetVerbosity() >= G4VisManager::errors) 148 G4cout << "***** G4GMocrenFileViewer::Dr 129 G4cout << "***** G4GMocrenFileViewer::DrawView () " << G4endl; 149 130 150 //----- 131 //----- 151 kSceneHandler.GFBeginModeling() ; 132 kSceneHandler.GFBeginModeling() ; 152 133 153 //----- Always visit G4 kernel 134 //----- Always visit G4 kernel 154 NeedKernelVisit (); 135 NeedKernelVisit (); 155 136 156 //----- Draw 137 //----- Draw 157 G4VViewer::ProcessView () ; 138 G4VViewer::ProcessView () ; 158 139 159 } // G4GMocrenFileViewer::DrawView () 140 } // G4GMocrenFileViewer::DrawView () 160 141 161 142 162 143 163 //----- G4GMocrenFileViewer::ShowView() 144 //----- G4GMocrenFileViewer::ShowView() 164 void G4GMocrenFileViewer::ShowView( void ) 145 void G4GMocrenFileViewer::ShowView( void ) 165 { 146 { 166 if(GFDEBUG) 147 if(GFDEBUG) 167 if (G4VisManager::GetVerbosity() >= G4VisM 148 if (G4VisManager::GetVerbosity() >= G4VisManager::errors) 168 G4cout << "***** G4GMocrenFileViewer::Sh 149 G4cout << "***** G4GMocrenFileViewer::ShowView () " << G4endl; 169 150 170 if( kSceneHandler.GFIsInModeling() ) 151 if( kSceneHandler.GFIsInModeling() ) 171 { 152 { 172 //----- End of modeling 153 //----- End of modeling 173 // !EndModeling, !DrawAll, !CloseDevice, 154 // !EndModeling, !DrawAll, !CloseDevice, 174 // close g4.gdd 155 // close g4.gdd 175 kSceneHandler.GFEndModeling(); 156 kSceneHandler.GFEndModeling(); 176 157 177 //----- Output DAWN GUI file 158 //----- Output DAWN GUI file 178 //SendViewParameters(); 159 //SendViewParameters(); 179 160 180 //----- string for viewer invocation 161 //----- string for viewer invocation 181 if ( !strcmp( kG4GddViewer, "NONE" ) ) { 162 if ( !strcmp( kG4GddViewer, "NONE" ) ) { 182 163 183 kG4GddViewerInvocation[0] = '\0'; 164 kG4GddViewerInvocation[0] = '\0'; 184 //std::strcpy( kG4GddViewerInvocation, "" ); 165 //std::strcpy( kG4GddViewerInvocation, "" ); 185 } else { 166 } else { 186 167 187 std::strncpy( kG4GddViewerInvocation, << 168 std::strncpy( kG4GddViewerInvocation, kG4GddViewer, std::strlen(kG4GddViewer)); 188 sizeof(kG4GddViewerInvoca << 169 std::strncat( kG4GddViewerInvocation, " ", 1); 189 kG4GddViewerInvocation[sizeof(kG4GddVi << 170 const char * gddfname = kSceneHandler.GetGddFileName(); 190 G4int n = sizeof(kG4GddViewerInvocatio << 171 std::strncat( kG4GddViewerInvocation, gddfname, std::strlen(gddfname)); 191 - (G4int)std::strlen(kG4GddVie << 192 std::strncat( kG4GddViewerInvocation, << 193 const char * gddfname = kSceneHandler. << 194 G4int len = (G4int)std::strlen(gddfnam << 195 if(len >= 64) { << 196 G4Exception("G4GMocrenFileViewer::Sh << 197 "gMocren1002", FatalExce << 198 "Invalid length of the G << 199 } << 200 n = sizeof(kG4GddViewerInvocation) << 201 - (G4int)std::strlen(kG4GddViewerInv << 202 std::strncat( kG4GddViewerInvocation, << 203 } 172 } 204 173 205 } 174 } 206 175 207 } // G4GMocrenFileViewer::ShowView() 176 } // G4GMocrenFileViewer::ShowView() 208 177 209 178