| 1 | //
|
|---|
| 2 | // ********************************************************************
|
|---|
| 3 | // * License and Disclaimer *
|
|---|
| 4 | // * *
|
|---|
| 5 | // * The Geant4 software is copyright of the Copyright Holders of *
|
|---|
| 6 | // * the Geant4 Collaboration. It is provided under the terms and *
|
|---|
| 7 | // * conditions of the Geant4 Software License, included in the file *
|
|---|
| 8 | // * LICENSE and available at http://cern.ch/geant4/license . These *
|
|---|
| 9 | // * include a list of copyright holders. *
|
|---|
| 10 | // * *
|
|---|
| 11 | // * Neither the authors of this software system, nor their employing *
|
|---|
| 12 | // * institutes,nor the agencies providing financial support for this *
|
|---|
| 13 | // * work make any representation or warranty, express or implied, *
|
|---|
| 14 | // * regarding this software system or assume any liability for its *
|
|---|
| 15 | // * use. Please see the license in the file LICENSE and URL above *
|
|---|
| 16 | // * for the full disclaimer and the limitation of liability. *
|
|---|
| 17 | // * *
|
|---|
| 18 | // * This code implementation is the result of the scientific and *
|
|---|
| 19 | // * technical work of the GEANT4 collaboration. *
|
|---|
| 20 | // * By using, copying, modifying or distributing the software (or *
|
|---|
| 21 | // * any work based on the software) you agree to acknowledge its *
|
|---|
| 22 | // * use in resulting scientific publications, and indicate your *
|
|---|
| 23 | // * acceptance of all terms of the Geant4 Software license. *
|
|---|
| 24 | // ********************************************************************
|
|---|
| 25 | //
|
|---|
| 26 | //
|
|---|
| 27 | // $Id: field03.cc,v 1.8 2006/06/29 17:18:33 gunter Exp $
|
|---|
| 28 | // GEANT4 tag $Name: $
|
|---|
| 29 | //
|
|---|
| 30 | //
|
|---|
| 31 | // --------------------------------------------------------------
|
|---|
| 32 | // GEANT 4 - Example F03
|
|---|
| 33 | //
|
|---|
| 34 | // --------------------------------------------------------------
|
|---|
| 35 | // Comments
|
|---|
| 36 | //
|
|---|
| 37 | //
|
|---|
| 38 | // --------------------------------------------------------------
|
|---|
| 39 |
|
|---|
| 40 | #include "G4RunManager.hh"
|
|---|
| 41 | #include "G4UImanager.hh"
|
|---|
| 42 | #include "G4UIterminal.hh"
|
|---|
| 43 | #include "Randomize.hh"
|
|---|
| 44 |
|
|---|
| 45 | #ifdef G4VIS_USE
|
|---|
| 46 | #include "G4VisExecutive.hh"
|
|---|
| 47 | #endif
|
|---|
| 48 |
|
|---|
| 49 | #include "F03DetectorConstruction.hh"
|
|---|
| 50 | // #include "F03FieldSetup.hh"
|
|---|
| 51 | #include "F03PhysicsList.hh"
|
|---|
| 52 | #include "F03PrimaryGeneratorAction.hh"
|
|---|
| 53 | #include "F03RunAction.hh"
|
|---|
| 54 | #include "F03EventAction.hh"
|
|---|
| 55 | #include "F03SteppingAction.hh"
|
|---|
| 56 | #include "F03SteppingVerbose.hh"
|
|---|
| 57 |
|
|---|
| 58 | int main(int argc,char** argv)
|
|---|
| 59 | {
|
|---|
| 60 |
|
|---|
| 61 | //choose the Random engine
|
|---|
| 62 |
|
|---|
| 63 | CLHEP::HepRandom::setTheEngine(new CLHEP::RanecuEngine);
|
|---|
| 64 |
|
|---|
| 65 | //my Verbose output class
|
|---|
| 66 |
|
|---|
| 67 | G4VSteppingVerbose::SetInstance(new F03SteppingVerbose);
|
|---|
| 68 |
|
|---|
| 69 | // Construct the default run manager
|
|---|
| 70 |
|
|---|
| 71 | G4RunManager * runManager = new G4RunManager;
|
|---|
| 72 |
|
|---|
| 73 | // Set mandatory initialization classes
|
|---|
| 74 |
|
|---|
| 75 | F03DetectorConstruction* detector;
|
|---|
| 76 | detector = new F03DetectorConstruction;
|
|---|
| 77 | runManager->SetUserInitialization(detector);
|
|---|
| 78 | runManager->SetUserInitialization(new F03PhysicsList(detector));
|
|---|
| 79 |
|
|---|
| 80 | #ifdef G4VIS_USE
|
|---|
| 81 |
|
|---|
| 82 | // visualization manager
|
|---|
| 83 |
|
|---|
| 84 | G4VisManager* visManager = new G4VisExecutive;
|
|---|
| 85 | visManager->Initialize();
|
|---|
| 86 |
|
|---|
| 87 | #endif
|
|---|
| 88 |
|
|---|
| 89 | // Set user action classes
|
|---|
| 90 |
|
|---|
| 91 | runManager->SetUserAction(new F03PrimaryGeneratorAction(detector));
|
|---|
| 92 |
|
|---|
| 93 | F03RunAction* runAction = new F03RunAction;
|
|---|
| 94 |
|
|---|
| 95 | runManager->SetUserAction(runAction);
|
|---|
| 96 |
|
|---|
| 97 | F03EventAction* eventAction = new F03EventAction(runAction);
|
|---|
| 98 |
|
|---|
| 99 | runManager->SetUserAction(eventAction);
|
|---|
| 100 |
|
|---|
| 101 | F03SteppingAction* steppingAction = new F03SteppingAction();
|
|---|
| 102 | runManager->SetUserAction(steppingAction);
|
|---|
| 103 |
|
|---|
| 104 | // Initialize G4 kernel, physics tables ...
|
|---|
| 105 |
|
|---|
| 106 | runManager->Initialize();
|
|---|
| 107 |
|
|---|
| 108 | // Get the pointer to the User Interface manager
|
|---|
| 109 |
|
|---|
| 110 | G4UImanager* UI = G4UImanager::GetUIpointer();
|
|---|
| 111 |
|
|---|
| 112 | if (argc==1) // Define UI terminal for interactive mode
|
|---|
| 113 | {
|
|---|
| 114 | G4UIsession * session = new G4UIterminal;
|
|---|
| 115 | session->SessionStart();
|
|---|
| 116 | delete session;
|
|---|
| 117 | }
|
|---|
| 118 | else // Batch mode
|
|---|
| 119 | {
|
|---|
| 120 | G4String command = "/control/execute ";
|
|---|
| 121 | G4String fileName = argv[1];
|
|---|
| 122 | UI->ApplyCommand(command+fileName);
|
|---|
| 123 | }
|
|---|
| 124 |
|
|---|
| 125 | // job termination
|
|---|
| 126 |
|
|---|
| 127 | #ifdef G4VIS_USE
|
|---|
| 128 | delete visManager;
|
|---|
| 129 | #endif
|
|---|
| 130 | delete runManager;
|
|---|
| 131 |
|
|---|
| 132 | return 0;
|
|---|
| 133 | }
|
|---|
| 134 |
|
|---|