Geant4.10
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
mctruthex.cc
Go to the documentation of this file.
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 /// \file eventgenerator/HepMC/MCTruth/mctruthex.cc
27 /// \brief Main program of the eventgenerator/HepMC/MCTruth example
28 //
29 // $Id: mctruthex.cc 73446 2013-08-27 11:32:59Z gcosmo $
30 //
31 #include "G4RunManager.hh"
32 #include "G4UImanager.hh"
33 
34 #include "PhysicsList.hh"
35 #include "PrimaryGeneratorAction.hh"
36 #include "DetectorConstruction.hh"
37 
38 #include "MCTruthTrackingAction.hh"
39 #include "MCTruthEventAction.hh"
40 
41 #include "MCTruthManager.hh"
42 
43 int main()
44 {
45  // Construct the default run manager
46  G4RunManager* runManager = new G4RunManager;
47 
48  // set mandatory initialization classes
50  runManager->SetUserInitialization(new PhysicsList);
51 
52  // set mandatory user action class
53  runManager->SetUserAction(new PrimaryGeneratorAction);
54 
55  // set MCTruth user action classes
56  runManager->SetUserAction(new MCTruthTrackingAction);
57  runManager->SetUserAction(new MCTruthEventAction);
58 
59  // Initialize G4 kernel
60  runManager->Initialize();
61 
62  // get the pointer to the UI manager and set verbosities
64  UI->ApplyCommand("/run/verbose 1");
65  UI->ApplyCommand("/event/verbose 1");
66  UI->ApplyCommand("/tracking/verbose 1");
67 
68  // configure MCTruth handling
70  config->SetMinE(1000.0);
71  config->AddParticleType(11);
73 
74  // start a run
75  int numberOfEvent = 1;
76  runManager->BeamOn(numberOfEvent);
77 
78  // job termination
79  delete runManager;
80  return 0;
81 }
82 
83 
virtual void SetUserInitialization(G4VUserDetectorConstruction *userInit)
static MCTruthManager * GetInstance()
void SetMinE(double e)
void SetConfig(MCTruthConfig *c)
Definition of the MCTruthManager class.
virtual void BeamOn(G4int n_event, const char *macroFile=0, G4int n_select=-1)
static G4UImanager * GetUIpointer()
Definition: G4UImanager.cc:58
Definition of the MCTruthEventAction class.
void AddParticleType(G4int type)
int main()
Definition: mctruthex.cc:43
virtual void Initialize()
Definition of the MCTruthTrackingAction class.
G4int ApplyCommand(const char *aCommand)
Definition: G4UImanager.cc:419
virtual void SetUserAction(G4UserRunAction *userAction)