Geant4.10
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
Functions
load_gdml.cc File Reference

Main program of the persistency/gdml/G01 example. More...

#include <vector>
#include "G4RunManager.hh"
#include "G4UImanager.hh"
#include "G4LogicalVolumeStore.hh"
#include "G4TransportationManager.hh"
#include "G01PrimaryGeneratorAction.hh"
#include "G01DetectorConstruction.hh"
#include "G01PhysicsList.hh"
#include "G4GDMLParser.hh"

Go to the source code of this file.

Functions

int main (int argc, char **argv)
 

Detailed Description

Main program of the persistency/gdml/G01 example.

Definition in file load_gdml.cc.

Function Documentation

int main ( int  argc,
char **  argv 
)

Definition at line 60 of file load_gdml.cc.

References G4UImanager::ApplyCommand(), G4cout, G4endl, G4LogicalVolumeStore::GetInstance(), G4TransportationManager::GetTransportationManager(), G4UImanager::GetUIpointer(), G4GDMLParser::GetVolumeAuxiliaryInformation(), G4GDMLParser::GetWorldVolume(), G4RunManager::Initialize(), G4VisManager::Initialize(), G4GDMLParser::Read(), G4UIExecutive::SessionStart(), G4RunManager::SetUserAction(), G4RunManager::SetUserInitialization(), and G4GDMLParser::Write().

61 {
62  G4cout << G4endl;
63  G4cout << "Usage: load_gdml <intput_gdml_file:mandatory>"
64  << " <output_gdml_file:optional>" << G4endl;
65  G4cout << G4endl;
66 
67  if (argc<2)
68  {
69  G4cout << "Error! Mandatory input file is not specified!" << G4endl;
70  G4cout << G4endl;
71  return -1;
72  }
73 
74  G4GDMLParser parser;
75 
76 // Uncomment the following if wish to avoid names stripping
77 // parser.SetStripFlag(false);
78 
79  parser.Read(argv[1]);
80 
81  if (argc>4)
82  {
83  G4cout << "Error! Too many arguments!" << G4endl;
84  G4cout << G4endl;
85  return -1;
86  }
87 
88  G4RunManager* runManager = new G4RunManager;
89 
91  parser.GetWorldVolume()));
92  runManager->SetUserInitialization(new G01PhysicsList);
94 
95  runManager->Initialize();
96 
97  if (argc>=3)
98  {
100  GetNavigatorForTracking()->GetWorldVolume()->GetLogicalVolume());
101  }
102 
103  G4UImanager* UImanager = G4UImanager::GetUIpointer();
104 
105  ///////////////////////////////////////////////////////////////////////
106  //
107  // Example how to retrieve Auxiliary Information
108  //
110  std::vector<G4LogicalVolume*>::const_iterator lvciter;
111  for( lvciter = lvs->begin(); lvciter != lvs->end(); lvciter++ )
112  {
113  G4GDMLAuxListType auxInfo = parser.GetVolumeAuxiliaryInformation(*lvciter);
114  std::vector<G4GDMLAuxPairType>::const_iterator ipair = auxInfo.begin();
115  for( ipair = auxInfo.begin(); ipair != auxInfo.end(); ipair++ )
116  {
117  G4String str=ipair->type;
118  G4String val=ipair->value;
119  G4cout << " Auxiliary Information is found for Logical Volume : "
120  << (*lvciter)->GetName() << G4endl;
121  G4cout << " Name of Auxiliary type is : " << str << G4endl;
122  G4cout << " Associated Auxiliary value is : " << val << G4endl;
123  }
124  }
125  //
126  // End of Auxiliary Information block
127  //
128  ////////////////////////////////////////////////////////////////////////
129 
130  if (argc==4) // batch mode
131  {
132  G4String command = "/control/execute ";
133  G4String fileName = argv[3];
134  UImanager->ApplyCommand(command+fileName);
135  }
136  else // interactive mode
137  {
138 #ifdef G4UI_USE
139  G4UIExecutive* ui = new G4UIExecutive(argc, argv);
140 #ifdef G4VIS_USE
141  G4VisManager* visManager = new G4VisExecutive;
142  visManager->Initialize();
143  UImanager->ApplyCommand("/control/execute vis.mac");
144 #endif
145  ui->SessionStart();
146 #ifdef G4VIS_USE
147  delete visManager;
148 #endif
149  delete ui;
150 #endif
151  }
152 
153  delete runManager;
154 
155  return 0;
156 }
Minimal primary generator action to demonstrate the use of GDML geometries.
virtual void SetUserInitialization(G4VUserDetectorConstruction *userInit)
G4GDMLAuxListType GetVolumeAuxiliaryInformation(G4LogicalVolume *logvol) const
G4VPhysicalVolume * GetWorldVolume(const G4String &setupName="Default") const
Detector construction allowing to use the geometry read from the GDML file.
static G4UImanager * GetUIpointer()
Definition: G4UImanager.cc:58
G4GLOB_DLL std::ostream G4cout
static G4LogicalVolumeStore * GetInstance()
void Write(const G4String &filename, const G4VPhysicalVolume *pvol=0, G4bool storeReferences=true, const G4String &SchemaLocation=G4GDML_DEFAULT_SCHEMALOCATION)
static G4TransportationManager * GetTransportationManager()
void Initialize()
std::vector< G4GDMLAuxPairType > G4GDMLAuxListType
void Read(const G4String &filename, G4bool Validate=true)
virtual void Initialize()
#define G4endl
Definition: G4ios.hh:61
Minimal physics list just to demonstrate the use of GDML geometries.
G4int ApplyCommand(const char *aCommand)
Definition: G4UImanager.cc:419
virtual void SetUserAction(G4UserRunAction *userAction)