| 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: exampleN01.cc,v 1.6 2006/06/29 17:47:10 gunter Exp $
|
|---|
| 28 | // GEANT4 tag $Name: geant4-09-03-cand-01 $
|
|---|
| 29 | //
|
|---|
| 30 | //
|
|---|
| 31 | // --------------------------------------------------------------
|
|---|
| 32 | // GEANT 4 - exampleN01
|
|---|
| 33 | // --------------------------------------------------------------
|
|---|
| 34 |
|
|---|
| 35 | #include "G4RunManager.hh"
|
|---|
| 36 | #include "G4UImanager.hh"
|
|---|
| 37 |
|
|---|
| 38 | #include "ExN01DetectorConstruction.hh"
|
|---|
| 39 | #include "ExN01PhysicsList.hh"
|
|---|
| 40 | #include "ExN01PrimaryGeneratorAction.hh"
|
|---|
| 41 |
|
|---|
| 42 | int main()
|
|---|
| 43 | {
|
|---|
| 44 | // Construct the default run manager
|
|---|
| 45 | //
|
|---|
| 46 | G4RunManager* runManager = new G4RunManager;
|
|---|
| 47 |
|
|---|
| 48 | // set mandatory initialization classes
|
|---|
| 49 | //
|
|---|
| 50 | G4VUserDetectorConstruction* detector = new ExN01DetectorConstruction;
|
|---|
| 51 | runManager->SetUserInitialization(detector);
|
|---|
| 52 | //
|
|---|
| 53 | G4VUserPhysicsList* physics = new ExN01PhysicsList;
|
|---|
| 54 | runManager->SetUserInitialization(physics);
|
|---|
| 55 |
|
|---|
| 56 | // set mandatory user action class
|
|---|
| 57 | //
|
|---|
| 58 | G4VUserPrimaryGeneratorAction* gen_action = new ExN01PrimaryGeneratorAction;
|
|---|
| 59 | runManager->SetUserAction(gen_action);
|
|---|
| 60 |
|
|---|
| 61 | // Initialize G4 kernel
|
|---|
| 62 | //
|
|---|
| 63 | runManager->Initialize();
|
|---|
| 64 |
|
|---|
| 65 | // Get the pointer to the UI manager and set verbosities
|
|---|
| 66 | //
|
|---|
| 67 | G4UImanager* UI = G4UImanager::GetUIpointer();
|
|---|
| 68 | UI->ApplyCommand("/run/verbose 1");
|
|---|
| 69 | UI->ApplyCommand("/event/verbose 1");
|
|---|
| 70 | UI->ApplyCommand("/tracking/verbose 1");
|
|---|
| 71 |
|
|---|
| 72 | // Start a run
|
|---|
| 73 | //
|
|---|
| 74 | G4int numberOfEvent = 3;
|
|---|
| 75 | runManager->BeamOn(numberOfEvent);
|
|---|
| 76 |
|
|---|
| 77 | // Job termination
|
|---|
| 78 | //
|
|---|
| 79 | // Free the store: user actions, physics_list and detector_description are
|
|---|
| 80 | // owned and deleted by the run manager, so they should not
|
|---|
| 81 | // be deleted in the main() program !
|
|---|
| 82 | //
|
|---|
| 83 | delete runManager;
|
|---|
| 84 |
|
|---|
| 85 | return 0;
|
|---|
| 86 | }
|
|---|
| 87 |
|
|---|
| 88 |
|
|---|