File indexing completed on 2025-04-04 08:04:59
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016
0017
0018
0019
0020
0021
0022
0023
0024
0025
0026
0027
0028
0029
0030
0031
0032
0033
0034
0035
0036
0037
0038
0039
0040
0041
0042
0043
0044
0045
0046
0047
0048
0049
0050
0051
0052
0053
0054
0055
0056
0057
0058
0059
0060
0061
0062
0063
0064 #include "FFActionInitialization.hh"
0065 #include "FFDetectorConstruction.hh"
0066 #include "QGSP_BIC_HP.hh"
0067
0068 #include "G4ParticleHPManager.hh"
0069 #include "G4RunManagerFactory.hh"
0070 #include "G4UIExecutive.hh"
0071 #include "G4UImanager.hh"
0072 #include "G4VisExecutive.hh"
0073 #include "Randomize.hh"
0074 #include "globals.hh"
0075
0076
0077
0078 int main(int argc, char* argv[])
0079 {
0080 int result;
0081 unsigned int numberOfThreads = 1;
0082
0083 G4String scriptFileName = "";
0084 G4String outputFileName = "FF_Neutron_HP.out";
0085 G4UImanager* UIManager = NULL;
0086
0087
0088 G4ParticleHPManager::GetInstance()->SetProduceFissionFragments(true);
0089
0090 char Force[] = "G4FORCENUMBEROFTHREADS";
0091 if (std::getenv(Force) != NULL) {
0092 char doNotForce[] = "G4FORCENUMBEROFTHREADS=1";
0093 putenv(doNotForce);
0094 }
0095
0096
0097 G4cout << "#### Starting: " << argv[0] << " ####" << G4endl;
0098
0099
0100 for (int i = 1; i < argc; i += 2) {
0101
0102 if (argv[i][0] != '-') {
0103 G4cerr << G4endl << "!!!!" << G4endl;
0104 G4cerr << "!!!! Error in argument " << i + 1 << G4endl;
0105 G4cerr << "!!!! A command-line option was expected, but \"" << argv[i] << "\" was found"
0106 << G4endl;
0107 G4cerr << "!!!! " << argv[0] << " will now terminate" << G4endl;
0108 G4cerr << "!!!!" << G4endl << G4endl;
0109
0110 return EXIT_FAILURE;
0111 }
0112
0113
0114 if (!(i + 1 < argc)) {
0115 G4cerr << G4endl << "!!!!" << G4endl;
0116 G4cerr << "!!!! Error in argument " << i + 2 << G4endl;
0117 G4cerr << "!!!! An argument was expected, but \"" << argv[i + 1] << "\" was found" << G4endl;
0118 G4cerr << "!!!! Ensure that a space is used to separate the "
0119 "option and argument"
0120 << G4endl;
0121 G4cerr << "!!!! " << argv[0] << " will now terminate" << G4endl;
0122 G4cerr << "!!!!" << G4endl << G4endl;
0123
0124 return EXIT_FAILURE;
0125 }
0126
0127 switch (argv[i][1]) {
0128 case 'i':
0129 scriptFileName = "/control/execute ";
0130 scriptFileName.append(argv[i + 1]);
0131 break;
0132
0133 case 'o':
0134 outputFileName = argv[i + 1];
0135 break;
0136
0137 case 'n':
0138 result = sscanf(argv[i + 1], "%u", &numberOfThreads);
0139 if (result != 1) {
0140 G4cerr << G4endl << "!!!!" << G4endl;
0141 G4cerr << "!!!! Error in argument " << i + 2 << G4endl;
0142 G4cerr << "!!!! An positive number was expected, but \"" << argv[i + 1] << "\" was found"
0143 << G4endl;
0144 G4cerr << "!!!! " << argv[0] << " will now terminate" << G4endl;
0145 G4cerr << "!!!!" << G4endl << G4endl;
0146
0147 return EXIT_FAILURE;
0148 }
0149 break;
0150
0151 default:
0152 G4cout << G4endl << "!!!!" << G4endl;
0153 G4cout << "!!!! Warning for command " << i + 1 << G4endl;
0154 G4cout << "!!!! \"" << argv[i] << "\" is not a valid command" << G4endl;
0155 G4cout << "!!!! " << argv[0] << " will ignore \"" << argv[i] << "\" and \"" << argv[i + 1]
0156 << "\"" << G4endl;
0157 G4cout << "!!!!" << G4endl << G4endl;
0158 }
0159 }
0160
0161
0162 G4UIExecutive* ui = nullptr;
0163 if (scriptFileName.length() == 0) {
0164 ui = new G4UIExecutive(argc, argv);
0165 }
0166
0167
0168
0169
0170 const G4long seed = 62737819;
0171 #ifndef NDEBUG
0172 G4cout << "MT RNG Seed: " << seed << G4endl;
0173 #endif
0174 G4Random::setTheEngine(new CLHEP::MTwistEngine(seed));
0175
0176
0177 auto* runManager = G4RunManagerFactory::CreateRunManager();
0178 runManager->SetNumberOfThreads(numberOfThreads);
0179 G4cout << " Threads requested: " << numberOfThreads << G4endl;
0180 G4cout << " Threads started: " << runManager->GetNumberOfThreads() << G4endl;
0181
0182
0183 runManager->SetUserInitialization(new FFDetectorConstruction());
0184 runManager->SetUserInitialization(new QGSP_BIC_HP());
0185 runManager->SetUserInitialization(new FFActionInitialization());
0186
0187
0188 runManager->Initialize();
0189
0190
0191 G4VisManager* visManager = new G4VisExecutive();
0192 visManager->Initialize();
0193
0194
0195 UIManager = G4UImanager::GetUIpointer();
0196
0197 if (!ui) {
0198
0199 UIManager->ApplyCommand(scriptFileName);
0200 }
0201 else {
0202
0203 ui->SessionStart();
0204 delete ui;
0205 }
0206
0207
0208
0209
0210
0211 delete visManager;
0212 delete runManager;
0213
0214 return 0;
0215 }