// // ******************************************************************** // * License and Disclaimer * // * * // * The Geant4 software is copyright of the Copyright Holders of * // * the Geant4 Collaboration. It is provided under the terms and * // * conditions of the Geant4 Software License, included in the file * // * LICENSE and available at http://cern.ch/geant4/license . These * // * include a list of copyright holders. * // * * // * Neither the authors of this software system, nor their employing * // * institutes,nor the agencies providing financial support for this * // * work make any representation or warranty, express or implied, * // * regarding this software system or assume any liability for its * // * use. Please see the license in the file LICENSE and URL above * // * for the full disclaimer and the limitation of liability. * // * * // * This code implementation is the result of the scientific and * // * technical work of the GEANT4 collaboration. * // * By using, copying, modifying or distributing the software (or * // * any work based on the software) you agree to acknowledge its * // * use in resulting scientific publications, and indicate your * // * acceptance of all terms of the Geant4 Software license. * // ******************************************************************** // /// \file persistency/gdml/G01/load_gdml.cc /// \brief Main program of the persistency/gdml/G01 example // // // $Id: load_gdml.cc 98062 2016-07-01 16:26:46Z gcosmo $ // // // -------------------------------------------------------------- // GEANT 4 - load_gdml // // -------------------------------------------------------------- #include #include "G4RunManager.hh" #include "G4UImanager.hh" #include "G4LogicalVolumeStore.hh" #include "G4TransportationManager.hh" #include "G01PrimaryGeneratorAction.hh" #include "G01DetectorConstruction.hh" #include "FTFP_BERT.hh" #ifdef G4VIS_USE #include "G4VisExecutive.hh" #endif #ifdef G4UI_USE #include "G4UIExecutive.hh" #endif #include "G4GDMLParser.hh" void print_aux(const G4GDMLAuxListType* auxInfoList, G4String prepend="|") { for(std::vector::const_iterator iaux = auxInfoList->begin(); iaux != auxInfoList->end(); iaux++ ) { G4String str=iaux->type; G4String val=iaux->value; G4String unit=iaux->unit; G4cout << prepend << str << " : " << val << " " << unit << G4endl; if (iaux->auxList) print_aux(iaux->auxList, prepend + "|"); } return; } int main(int argc,char **argv) { G4cout << G4endl; G4cout << "Usage: load_gdml " << " " << G4endl; G4cout << G4endl; if (argc<2) { G4cout << "Error! Mandatory input file is not specified!" << G4endl; G4cout << G4endl; return -1; } G4GDMLParser parser; // Uncomment the following if wish to avoid names stripping // parser.SetStripFlag(false); parser.Read(argv[1]); if (argc>4) { G4cout << "Error! Too many arguments!" << G4endl; G4cout << G4endl; return -1; } G4RunManager* runManager = new G4RunManager; runManager->SetUserInitialization(new G01DetectorConstruction( parser.GetWorldVolume())); runManager->SetUserInitialization(new FTFP_BERT); runManager->SetUserAction(new G01PrimaryGeneratorAction); runManager->Initialize(); G4UImanager* UImanager = G4UImanager::GetUIpointer(); /////////////////////////////////////////////////////////////////////// // // Example how to retrieve Auxiliary Information // G4cout << std::endl; const G4LogicalVolumeStore* lvs = G4LogicalVolumeStore::GetInstance(); std::vector::const_iterator lvciter; for( lvciter = lvs->begin(); lvciter != lvs->end(); lvciter++ ) { G4GDMLAuxListType auxInfo = parser.GetVolumeAuxiliaryInformation(*lvciter); if (auxInfo.size()>0) G4cout << "Auxiliary Information is found for Logical Volume : " << (*lvciter)->GetName() << G4endl; print_aux(&auxInfo); } // now the 'global' auxiliary info G4cout << std::endl; G4cout << "Global auxiliary info:" << std::endl; G4cout << std::endl; print_aux(parser.GetAuxList()); G4cout << std::endl; // // End of Auxiliary Information block // //////////////////////////////////////////////////////////////////////// // example of writing out if (argc>=3) { /* G4GDMLAuxStructType mysubaux = {"mysubtype", "mysubvalue", "mysubunit", 0}; G4GDMLAuxListType* myauxlist = new G4GDMLAuxListType(); myauxlist->push_back(mysubaux); G4GDMLAuxStructType myaux = {"mytype", "myvalue", "myunit", myauxlist}; parser.AddAuxiliary(myaux); // example of setting auxiliary info for world volume (can be set for any volume) G4GDMLAuxStructType mylocalaux = {"sometype", "somevalue", "someunit", 0}; parser.AddVolumeAuxiliary(mylocalaux, G4TransportationManager::GetTransportationManager() ->GetNavigatorForTracking()->GetWorldVolume()->GetLogicalVolume()); */ parser.SetRegionExport(true); parser.Write(argv[2], G4TransportationManager::GetTransportationManager() ->GetNavigatorForTracking()->GetWorldVolume()->GetLogicalVolume()); } if (argc==4) // batch mode { G4String command = "/control/execute "; G4String fileName = argv[3]; UImanager->ApplyCommand(command+fileName); } else // interactive mode { #ifdef G4UI_USE G4UIExecutive* ui = new G4UIExecutive(argc, argv); #ifdef G4VIS_USE G4VisManager* visManager = new G4VisExecutive; visManager->Initialize(); UImanager->ApplyCommand("/control/execute vis.mac"); #endif ui->SessionStart(); #ifdef G4VIS_USE delete visManager; #endif delete ui; #endif } delete runManager; return 0; }