99 lines
3.8 KiB
C++
99 lines
3.8 KiB
C++
//
|
|
// ********************************************************************
|
|
// * 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 icsd.cc
|
|
/// \brief Main program of the dna/icsd example
|
|
|
|
// This example is provided by the Geant4-DNA collaboration
|
|
// Any report or published results obtained using the Geant4-DNA software
|
|
// shall cite the following Geant4-DNA collaboration publication:
|
|
// Med. Phys. 37 (2010) 4692-4708
|
|
// J. Comput. Phys. 274 (2014) 841-882
|
|
// The Geant4-DNA web site is available at http://geant4-dna.org
|
|
//
|
|
//
|
|
|
|
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
|
|
#include "ActionInitialization.hh"
|
|
#include "DetectorConstruction.hh"
|
|
#include "PhysicsList.hh"
|
|
|
|
#include "G4RunManagerFactory.hh"
|
|
#include "G4Types.hh"
|
|
#include "G4UIExecutive.hh"
|
|
#include "G4UImanager.hh"
|
|
#include "G4UItcsh.hh"
|
|
#include "G4UIterminal.hh"
|
|
#include "G4VisExecutive.hh"
|
|
|
|
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
|
|
|
|
int main(int argc, char** argv)
|
|
{
|
|
G4String macroName("");
|
|
|
|
// Detect if the user gave an argument (or not)
|
|
if (argc == 1) // Only the name of the program was used (no argument)
|
|
{
|
|
// We set the name of the macro to be used by default
|
|
macroName = "icsd.mac";
|
|
}
|
|
else if (argc == 2) // One argument was supplied
|
|
{
|
|
// The first argument is the name if the macro file to be used
|
|
macroName = argv[1];
|
|
}
|
|
else // More than one argument was supplied
|
|
{
|
|
G4Exception("main", "WRONG ARGUMENT NUMBER", FatalException, "To many argument were provided.");
|
|
return 0;
|
|
}
|
|
|
|
// Construct the default run manager
|
|
|
|
auto* runManager = G4RunManagerFactory::CreateRunManager();
|
|
runManager->SetNumberOfThreads(2); // Is equal to 2 by default
|
|
|
|
// Set mandatory user initialization classes
|
|
DetectorConstruction* detector = new DetectorConstruction;
|
|
runManager->SetUserInitialization(detector);
|
|
runManager->SetUserInitialization(new PhysicsList);
|
|
|
|
// User action initialization
|
|
runManager->SetUserInitialization(new ActionInitialization());
|
|
|
|
// Initialize G4 kernel
|
|
runManager->Initialize();
|
|
|
|
// Get the pointer to the User Interface manager
|
|
G4UImanager* UImanager = G4UImanager::GetUIpointer();
|
|
G4String command = "/control/execute ";
|
|
UImanager->ApplyCommand(command + macroName);
|
|
|
|
delete runManager;
|
|
|
|
return 0;
|
|
}
|