Geant4.10
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
H02PrimaryGeneratorAction.hh
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/HepMCEx02/include/H02PrimaryGeneratorAction.hh
27 /// \brief Definition of the H02PrimaryGeneratorAction class
28 //
29 // ====================================================================
30 //
31 // H02PrimaryGeneratorAction.hh
32 // $Id: H02PrimaryGeneratorAction.hh 77801 2013-11-28 13:33:20Z gcosmo $
33 //
34 // ====================================================================
35 #ifndef H02_PRIMARY_GENERATOR_ACTION_H
36 #define H02_PRIMARY_GENERATOR_ACTION_H
37 
38 #include <map>
39 #include "globals.hh"
41 
42 class G4Event;
45 
47 public:
50 
51  virtual void GeneratePrimaries(G4Event* anEvent);
52 
54  void SetGenerator(G4String genname);
55 
57  G4String GetGeneratorName() const;
58 
59 private:
60  G4VPrimaryGenerator* particleGun;
61  G4VPrimaryGenerator* hepmcAscii;
62  G4VPrimaryGenerator* pythiaGen;
63 
64  G4VPrimaryGenerator* currentGenerator;
65  G4String currentGeneratorName;
66  std::map<G4String, G4VPrimaryGenerator*> gentypeMap;
67 
69 
70 };
71 
72 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
74 {
75  currentGenerator= gen;
76 }
77 
79 {
80  std::map<G4String, G4VPrimaryGenerator*>::iterator
81  pos = gentypeMap.find(genname);
82  if(pos != gentypeMap.end()) {
83  currentGenerator= pos->second;
84  currentGeneratorName= genname;
85  }
86 }
87 
89 {
90  return currentGenerator;
91 }
92 
94 {
95  return currentGeneratorName;
96 }
97 
98 #endif
void SetGenerator(G4VPrimaryGenerator *gen)
G4VPrimaryGenerator * GetGenerator() const
virtual void GeneratePrimaries(G4Event *anEvent)