Files
geant4/examples/extended/hadronic/FissionFragment/FissionFragment.cc
T
2016-06-10 14:11:04 +02:00

278 lines
10 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. *
// ********************************************************************
//
// -------------------------------------------------------------
// GEANT4 FF_Neutron_HP
//
// Command line options:
// -i ARG : run in batch mode from script file ARG
// -o ARG : write output to file ARG
// (defaults to FF_Neutron_HP.out)
// -n ARG : multithreading with ARG number of threads
// (only works if Geant4 was compiled with
// multithreading enables)
//
// =============== Begin Documentation Comments ===============
//!
//! \file FissionFragment.cc
//! \author B. Wendt (brycen.linn.wendt@cern.ch)
//! \date June 06, 2014
//!
//! \brief Main program of the FissionFragment example
//!
//! \details Application demonstrating the Fission Fragment model as used
//! within the neutron_hp model. It demostrates the capability
//! for fission product containment by the cladding in a water
//! moderated sub-critical assembly.
//! It could also be further extended to calculate the effective
//! multiplication factor of the subcritical assembly for
//! various loading schemes.
//!
// ================ End Documentation Comments ================
//
// Modified:
//
// 23-06-14 BWendt
// Added check for NeutronHP fission generator environment variable
//
// -------------------------------------------------------------
#include "globals.hh"
#ifdef G4MULTITHREADED
#include "G4MTRunManager.hh"
#else
#include "G4RunManager.hh"
#endif // G4MULTITHREADED
#include "G4UImanager.hh"
#include "QGSP_BIC_HP.hh"
#include "Randomize.hh"
#include "FFDetectorConstruction.hh"
#include "FFActionInitialization.hh"
#ifdef G4VIS_USE
#include "G4VisExecutive.hh"
#endif
#ifdef G4UI_USE
#include "G4UIExecutive.hh"
#endif
// Entry point
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
int main(int argc, char* argv[])
{
int result;
unsigned int numberOfThreads = 1;
G4String scriptFileName = "";
G4String outputFileName = "FF_Neutron_HP.out";
G4UImanager* UIManager = NULL;
char makeFissionFragments[] = "G4NEUTRONHP_PRODUCE_FISSION_FRAGMENTS";
char useWendtFission[] = "G4NEUTRON_HP_USE_WENDT_FISSION_MODEL";
char Force[] = "G4FORCENUMBEROFTHREADS";
if(getenv(Force) != NULL) {
char doNotForce[]="G4FORCENUMBEROFTHREADS=1";
putenv(doNotForce);
}
// Indicate the example is starting
G4cout << "#### Starting: " << argv[0] << " ####" << G4endl;
// Verify that NeutronHP is going to create fission fragments
// Throw and error if it isn't.
if(getenv(makeFissionFragments) == NULL)
{
G4cerr << G4endl << "!!!!" << G4endl;
G4cerr << "!!!! Error in example" << argv[0] << G4endl;
G4cerr << "!!!! The \"" << makeFissionFragments << "\" "
"environment variable is not set!" << G4endl;
G4cerr << "!!!! Please set it in order to use this example." << G4endl;
G4cerr << "!!!!" << G4endl << G4endl;
return EXIT_FAILURE;
}
// We are trying to use the Wendt fission model in Neutron_HP
// Warn the user if the appropriate environment variable is not set up
if(getenv(useWendtFission) == NULL)
{
G4cout << G4endl << "!!!!" << G4endl;
G4cout << "!!!! Warning in example" << argv[0] << G4endl;
G4cout << "!!!! The \"" << useWendtFission << "\" "
"environment variable is not set!" << G4endl;
G4cout << "!!!! Please set it if you wish to use this fission model, "
"otherwise the default fission model will be used" << G4endl;
G4cout << "!!!!" << G4endl << G4endl;
}
// Parse the command line arguments, if any
for(int i = 1;
i < argc;
i += 2)
{
// Ensure that this is actually a command
if(argv[i][0] != '-')
{
G4cerr << G4endl << "!!!!" << G4endl;
G4cerr << "!!!! Error in argument " << i + 1 << G4endl;
G4cerr << "!!!! A command-line option was expected, but \""
<< argv[i] << "\" was found" << G4endl;
G4cerr << "!!!! " << argv[0] << " will now terminate" << G4endl;
G4cerr << "!!!!" << G4endl << G4endl;
return EXIT_FAILURE;
}
// Ensure that the command-line option has an associated argument
if(!(i + 1 < argc))
{
G4cerr << G4endl << "!!!!" << G4endl;
G4cerr << "!!!! Error in argument " << i + 2 << G4endl;
G4cerr << "!!!! An argument was expected, but \"" << argv[i + 1]
<< "\" was found" << G4endl;
G4cerr << "!!!! Ensure that a space is used to separate the "
"option and argument" << G4endl;
G4cerr << "!!!! " << argv[0] << " will now terminate" << G4endl;
G4cerr << "!!!!" << G4endl << G4endl;
return EXIT_FAILURE;
}
switch(argv[i][1])
{
case 'i':
scriptFileName = "/control/execute ";
scriptFileName.append(argv[i + 1]);
break;
case 'o':
outputFileName = argv[i + 1];
break;
case 'n':
result = sscanf(argv[i + 1],
"%u",
&numberOfThreads);
if(result != 1)
{
G4cerr << G4endl << "!!!!" << G4endl;
G4cerr << "!!!! Error in argument " << i + 2 << G4endl;
G4cerr << "!!!! An positive number was expected, but \""
<< argv[i + 1] << "\" was found" << G4endl;
G4cerr << "!!!! " << argv[0] << " will now terminate"
<< G4endl;
G4cerr << "!!!!" << G4endl << G4endl;
return EXIT_FAILURE;
}
break;
default:
G4cout << G4endl << "!!!!" << G4endl;
G4cout << "!!!! Warning for command " << i + 1 << G4endl;
G4cout << "!!!! \"" << argv[i] << "\" is not a valid command"
<< G4endl;
G4cout << "!!!! " << argv[0] << " will ignore \"" << argv[i]
<< "\" and \"" << argv[i + 1] << "\"" << G4endl;
G4cout << "!!!!" << G4endl << G4endl;
}
}
// Set the Random engine
// A seed of 62737819 produced a maximum number of 67 events on the
// author's system before timing out the nightly test
const G4long seed = 62737819;
#ifndef NDEBUG
G4cout << "MT RNG Seed: " << seed << G4endl;
#endif // NDEBUG
G4Random::setTheEngine(new CLHEP::MTwistEngine(seed));
// The 'runManger' type must be declared here at initialization to provide for
// 'SetNumberOfThreads()' method required for multithreading
#ifdef G4MULTITHREADED
// Initialize the multithreaded run manager
G4MTRunManager* const runManager = new G4MTRunManager();
runManager->SetNumberOfThreads(numberOfThreads);
G4cout << "Multithreading enabled" << G4endl;
G4cout << " Threads requested: " << numberOfThreads << G4endl;
G4cout << " Threads started: " << runManager->GetNumberOfThreads()
<< G4endl;
#else
// Multithreading not available
G4RunManager* const runManager = new G4RunManager();
#endif // G4MULTITHREADED
// Set mandatory initialization classes
runManager->SetUserInitialization(new FFDetectorConstruction());
runManager->SetUserInitialization(new QGSP_BIC_HP());
runManager->SetUserInitialization(new FFActionInitialization());
// Initialize the Geant4 kernel
runManager->Initialize();
#ifdef G4VIS_USE
// Initialize visualization
G4VisManager* visManager = new G4VisExecutive();
visManager->Initialize();
#endif
// Get the pointer to the User Interface manager
UIManager = G4UImanager::GetUIpointer();
if(scriptFileName.length() != 0)
{
// Batch mode
UIManager->ApplyCommand(scriptFileName);
} else
{
// Interactive mode
#ifdef G4UI_USE
G4UIExecutive* ui = new G4UIExecutive(argc, argv);
ui->SessionStart();
delete ui;
#endif
}
// Job termination
// Free the store: user actions, physics_list and detector_description are
// owned and deleted by the run manager, so they should not be deleted
// in the main() program !
#ifdef G4VIS_USE
delete visManager;
#endif
delete runManager;
return 0;
}