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