source: trunk/examples/extended/field/field02/field02.cc@ 1143

Last change on this file since 1143 was 807, checked in by garnier, 17 years ago

update

File size: 4.3 KB
RevLine 
[807]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: field02.cc,v 1.9 2006/06/29 17:17:02 gunter Exp $
28// GEANT4 tag $Name: $
29//
30//
31// --------------------------------------------------------------
32// GEANT 4 - TestF02
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 "F02DetectorConstruction.hh"
50#include "F02ElectricFieldSetup.hh"
51#include "F02PhysicsList.hh"
52#include "F02PrimaryGeneratorAction.hh"
53#include "F02RunAction.hh"
54#include "F02EventAction.hh"
55#include "F02SteppingAction.hh"
56#include "F02SteppingVerbose.hh"
57
58int 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 F02SteppingVerbose);
68
69 // Construct the default run manager
70
71 G4RunManager * runManager = new G4RunManager;
72
73 // Construct the helper class to manage the electric field &
74 // the parameters for the propagation of particles in it.
75
76 F02ElectricFieldSetup* field = new F02ElectricFieldSetup() ;
77
78 // Set mandatory initialization classes
79
80 F02DetectorConstruction* detector;
81 detector = new F02DetectorConstruction;
82 runManager->SetUserInitialization(detector);
83 runManager->SetUserInitialization(new F02PhysicsList(detector));
84
85#ifdef G4VIS_USE
86
87 // visualization manager
88
89 G4VisManager* visManager = new G4VisExecutive;
90 visManager->Initialize();
91
92#endif
93
94 // Set user action classes
95
96 runManager->SetUserAction(new F02PrimaryGeneratorAction(detector));
97
98 F02RunAction* runAction = new F02RunAction;
99
100 runManager->SetUserAction(runAction);
101
102 F02EventAction* eventAction = new F02EventAction(runAction);
103
104 runManager->SetUserAction(eventAction);
105
106 F02SteppingAction* steppingAction = new F02SteppingAction();
107 runManager->SetUserAction(steppingAction);
108
109 // Initialize G4 kernel, physics tables ...
110
111 runManager->Initialize();
112
113 // get the pointer to the User Interface manager
114
115 G4UImanager* UI = G4UImanager::GetUIpointer();
116
117 if (argc==1) // Define UI terminal for interactive mode
118 {
119 G4UIsession * session = new G4UIterminal;
120 session->SessionStart();
121 delete session;
122 }
123 else // Batch mode
124 {
125 G4String command = "/control/execute ";
126 G4String fileName = argv[1];
127 UI->ApplyCommand(command+fileName);
128 }
129
130 // job termination
131
132#ifdef G4VIS_USE
133 delete visManager;
134#endif
135 delete field;
136 delete runManager;
137
138 return 0;
139}
140
Note: See TracBrowser for help on using the repository browser.