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 /// \file persistency/gdml/G01/load_gdml.cc << 27 /// \brief Main program of the persistency/gdm << 28 // << 29 // 26 // >> 27 // $Id: load_gdml.cc,v 1.8.2.1 2010/03/18 10:38:58 gcosmo Exp $ >> 28 // GEANT4 tag $Name: geant4-09-03-patch-01 $ 30 // 29 // 31 // 30 // 32 // ------------------------------------------- 31 // -------------------------------------------------------------- 33 // GEANT 4 - load_gdml 32 // GEANT 4 - load_gdml 34 // 33 // 35 // ------------------------------------------- 34 // -------------------------------------------------------------- 36 35 37 #include "FTFP_BERT.hh" << 36 #include <vector> 38 #include "G01ActionInitialization.hh" << 37 39 #include "G01DetectorConstruction.hh" << 38 #include "G4RunManager.hh" 40 #include "G01PrimaryGeneratorAction.hh" << 39 #include "G4UImanager.hh" >> 40 #include "G4UIsession.hh" >> 41 #include "G4UIterminal.hh" >> 42 #include "G4UItcsh.hh" 41 43 42 #include "G4GDMLParser.hh" << 43 #include "G4LogicalVolumeStore.hh" 44 #include "G4LogicalVolumeStore.hh" 44 #include "G4RunManagerFactory.hh" << 45 #include "G4TransportationManager.hh" 45 #include "G4TransportationManager.hh" 46 #include "G4Types.hh" << 47 #include "G4UIExecutive.hh" << 48 #include "G4UImanager.hh" << 49 #include "G4VisExecutive.hh" << 50 46 51 #include <vector> << 47 #include "PrimaryGeneratorAction.hh" >> 48 #include "DetectorConstruction.hh" >> 49 #include "PhysicsList.hh" 52 50 53 void print_aux(const G4GDMLAuxListType* auxInf << 51 #ifdef G4VIS_USE 54 { << 52 #include "G4VisExecutive.hh" 55 for (std::vector<G4GDMLAuxStructType>::const << 53 #endif 56 iaux != auxInfoList->end(); iaux++) << 57 { << 58 G4String str = iaux->type; << 59 G4String val = iaux->value; << 60 G4String unit = iaux->unit; << 61 << 62 G4cout << prepend << str << " : " << val < << 63 << 64 if (iaux->auxList) print_aux(iaux->auxList << 65 } << 66 return; << 67 } << 68 54 69 // ------------------------------------------- << 55 #include "G4GDMLParser.hh" 70 56 71 int main(int argc, char** argv) << 57 int main(int argc,char **argv) 72 { 58 { 73 G4cout << G4endl; << 59 G4cout << G4endl; 74 G4cout << "Usage: load_gdml <intput_gdml_fil << 60 G4cout << "Usage: load_gdml <intput_gdml_file:mandatory>" 75 << " <output_gdml_file:optional>" << << 61 << " <output_gdml_file:optional>" << G4endl; 76 G4cout << G4endl; << 62 G4cout << G4endl; 77 << 63 78 if (argc < 2) { << 64 if (argc<2) 79 G4cout << "Error! Mandatory input file is << 65 { 80 G4cout << G4endl; << 66 G4cout << "Error! Mandatory input file is not specified!" << G4endl; 81 return -1; << 67 G4cout << G4endl; 82 } << 68 return -1; 83 << 69 } 84 G4GDMLParser parser; << 70 85 << 71 G4GDMLParser parser; 86 // Uncomment the following if wish to avoid << 72 parser.Read(argv[1]); 87 // parser.SetStripFlag(false); << 73 88 << 74 if (argc>=3) 89 // Uncomment the following and set a string << 75 { 90 // schema filename if wishing to use alterna << 76 parser.Write(argv[2],parser.GetWorldVolume()); 91 // parser.SetImportSchema(""); << 77 } 92 << 78 93 parser.SetOverlapCheck(true); << 79 if (argc>4) 94 parser.Read(argv[1]); << 80 { 95 << 81 G4cout << "Error! Too many arguments!" << G4endl; 96 if (argc > 4) { << 82 G4cout << G4endl; 97 G4cout << "Error! Too many arguments!" << << 83 return -1; 98 G4cout << G4endl; << 84 } 99 return -1; << 85 100 } << 86 G4RunManager* runManager = new G4RunManager; 101 << 87 102 auto* runManager = G4RunManagerFactory::Crea << 88 runManager->SetUserInitialization(new DetectorConstruction( 103 << 89 parser.GetWorldVolume())); 104 runManager->SetUserInitialization(new G01Det << 90 runManager->SetUserInitialization(new PhysicsList); 105 runManager->SetUserInitialization(new FTFP_B << 91 runManager->SetUserAction(new PrimaryGeneratorAction); 106 runManager->SetUserInitialization(new G01Act << 92 107 << 93 runManager->Initialize(); 108 runManager->Initialize(); << 94 109 << 95 G4UImanager* UI = G4UImanager::GetUIpointer(); 110 // Initialize visualization << 96 111 G4VisManager* visManager = new G4VisExecutiv << 97 /////////////////////////////////////////////////////////////////////// 112 visManager->Initialize(); << 98 // 113 << 99 // Example how to retrieve Auxiliary Information 114 // Get the pointer to the User Interface man << 100 // 115 G4UImanager* UImanager = G4UImanager::GetUIp << 101 const G4LogicalVolumeStore* lvs = G4LogicalVolumeStore::GetInstance(); 116 << 102 std::vector<G4LogicalVolume*>::const_iterator lvciter; 117 //////////////////////////////////////////// << 103 for( lvciter = lvs->begin(); lvciter != lvs->end(); lvciter++ ) 118 // << 104 { 119 // Example how to retrieve Auxiliary Informa << 105 G4GDMLAuxListType auxInfo = parser.GetVolumeAuxiliaryInformation(*lvciter); 120 // << 106 std::vector<G4GDMLAuxPairType>::const_iterator ipair = auxInfo.begin(); 121 << 107 for( ipair = auxInfo.begin(); ipair != auxInfo.end(); ipair++ ) 122 G4cout << std::endl; << 108 { 123 << 109 G4String str=ipair->type; 124 const G4LogicalVolumeStore* lvs = G4LogicalV << 110 G4double val=ipair->value; 125 std::vector<G4LogicalVolume*>::const_iterato << 111 G4cout << " Auxiliary Information is found for Logical Volume : " 126 for (lvciter = lvs->begin(); lvciter != lvs- << 112 << (*lvciter)->GetName() << G4endl; 127 G4GDMLAuxListType auxInfo = parser.GetVolu << 113 G4cout << " Name of Auxiliary type is : " << str << G4endl; 128 << 114 G4cout << " Associated Auxiliary value is : " << val << G4endl; 129 if (auxInfo.size() > 0) << 115 } 130 G4cout << "Auxiliary Information is foun << 116 } 131 << G4endl; << 117 // 132 << 118 // End of Auxiliary Information block 133 print_aux(&auxInfo); << 119 // 134 } << 120 //////////////////////////////////////////////////////////////////////// 135 << 121 136 // now the 'global' auxiliary info << 122 if (argc==4) // batch mode 137 G4cout << std::endl; << 123 { 138 G4cout << "Global auxiliary info:" << std::e << 124 G4String command = "/control/execute "; 139 G4cout << std::endl; << 125 G4String fileName = argv[3]; 140 << 126 UI->ApplyCommand(command+fileName); 141 print_aux(parser.GetAuxList()); << 127 } 142 << 128 else // interactive mode 143 G4cout << std::endl; << 129 { 144 << 130 #ifdef G4VIS_USE 145 // << 131 G4VisManager* visManager = new G4VisExecutive; 146 // End of Auxiliary Information block << 132 visManager->Initialize(); 147 // << 133 #endif 148 //////////////////////////////////////////// << 134 149 << 135 G4UIsession * session = 0; 150 runManager->BeamOn(0); << 136 #ifdef G4UI_USE_TCSH 151 << 137 session = new G4UIterminal(new G4UItcsh); 152 // example of writing out << 138 #else 153 << 139 session = new G4UIterminal(); 154 if (argc >= 3) { << 140 #endif 155 /* << 141 #ifdef G4VIS_USE 156 G4GDMLAuxStructType mysubaux = {"mysu << 142 UI->ApplyCommand("/control/execute vis.mac"); 157 G4GDMLAuxListType* myauxlist = new G4 << 143 #endif 158 myauxlist->push_back(mysubaux); << 144 session->SessionStart(); 159 << 145 delete session; 160 G4GDMLAuxStructType myaux = {"mytype" << 146 161 parser.AddAuxiliary(myaux); << 147 #ifdef G4VIS_USE 162 << 148 delete visManager; 163 << 149 #endif 164 // example of setting auxiliary info << 150 } 165 // (can be set for any volume) << 166 << 167 G4GDMLAuxStructType mylocalaux = {"so << 168 << 169 parser.AddVolumeAuxiliary(mylocalaux, << 170 G4TransportationManager::GetTranspo << 171 ->GetNavigatorForTracking()->GetWor << 172 */ << 173 << 174 parser.SetRegionExport(true); << 175 // parser.SetEnergyCutsExport(true); << 176 // parser.SetOutputFileOverwrite(true) << 177 parser.Write(argv[2], G4TransportationMana << 178 ->GetNavigatorForT << 179 ->GetWorldVolume() << 180 ->GetLogicalVolume << 181 } << 182 << 183 if (argc == 4) // batch mode << 184 { << 185 G4String command = "/control/execute "; << 186 G4String fileName = argv[3]; << 187 UImanager->ApplyCommand(command + fileName << 188 } << 189 else // interactive mode << 190 { << 191 G4UIExecutive* ui = new G4UIExecutive(argc << 192 UImanager->ApplyCommand("/control/execute << 193 ui->SessionStart(); << 194 delete ui; << 195 } << 196 151 197 delete visManager; << 152 delete runManager; 198 delete runManager; << 199 153 200 return 0; << 154 return 0; 201 } 155 } 202 156