source: trunk/examples/extended/electromagnetic/TestEm8/TestEm8.cc @ 807

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

update

File size: 4.1 KB
Line 
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: TestEm8.cc,v 1.8 2007/07/27 15:29:38 vnivanch Exp $
28// GEANT4 tag $Name:  $
29//
30//
31// --------------------------------------------------------------
32//      GEANT 4 - TestEm8
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 "Em8DetectorConstruction.hh"
50#include "PhysicsList.hh"
51#include "Em8PrimaryGeneratorAction.hh"
52#include "Em8RunAction.hh"
53#include "Em8EventAction.hh"
54#include "Em8SteppingAction.hh"
55#include "Em8SteppingVerbose.hh"
56
57int main(int argc,char** argv) 
58{
59
60  //choose the Random engine
61
62  CLHEP::HepRandom::setTheEngine(new CLHEP::RanecuEngine);
63 
64  //my Verbose output class
65
66  G4VSteppingVerbose::SetInstance(new Em8SteppingVerbose);
67   
68  // Construct the default run manager
69
70  G4RunManager * runManager = new G4RunManager;
71
72  // set mandatory initialization classes
73
74  Em8DetectorConstruction* detector;
75  detector = new Em8DetectorConstruction;
76  runManager->SetUserInitialization(detector);
77  runManager->SetUserInitialization(new PhysicsList);
78 
79#ifdef G4VIS_USE
80  G4VisManager* visManager = 0;
81#endif
82 
83  // set user action classes
84
85  runManager->SetUserAction(new Em8PrimaryGeneratorAction(detector));
86
87  Em8RunAction* runAction = new Em8RunAction;
88
89  runManager->SetUserAction(runAction);
90
91  Em8EventAction* eventAction = new Em8EventAction(runAction);
92
93  runManager->SetUserAction(eventAction);
94
95  Em8SteppingAction* steppingAction = new Em8SteppingAction(detector,
96                                                            eventAction, 
97                                                            runAction);
98  runManager->SetUserAction(steppingAction);
99 
100  G4UImanager* UI = G4UImanager::GetUIpointer(); 
101 
102  if (argc==1)   // Define UI terminal for interactive mode 
103    { 
104#ifdef G4VIS_USE
105      visManager = new G4VisExecutive;
106      visManager->Initialize();
107#endif
108      G4UIsession * session = new G4UIterminal;
109      UI->ApplyCommand("/control/execute init.mac");   
110      session->SessionStart();
111      delete session;
112    }
113  else           // Batch mode
114    { 
115      G4String command = "/control/execute ";
116      G4String fileName = argv[1];
117      UI->ApplyCommand(command+fileName);
118    }
119   
120  // job termination
121 
122#ifdef G4VIS_USE
123  delete visManager;
124#endif 
125  delete runManager;
126
127  return 0;
128}
129
Note: See TracBrowser for help on using the repository browser.