source: trunk/examples/advanced/xray_fluorescence/include/XrayFluoPrimaryGeneratorAction.hh @ 1321

Last change on this file since 1321 was 1230, checked in by garnier, 14 years ago

update to geant4.9.3

File size: 4.2 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: XrayFluoPrimaryGeneratorAction.hh
28// GEANT4 tag $Name:  xray_fluo-V03-02-00
29//
30// Author: Elena Guardincerri (Elena.Guardincerri@ge.infn.it)
31//
32// History:
33// -----------
34//  28 Nov 2001  Elena Guardincerri   Created
35//
36// -------------------------------------------------------------------
37
38
39#ifndef XrayFluoPrimaryGeneratorAction_h
40#define XrayFluoPrimaryGeneratorAction_h 1
41
42#include "G4VUserPrimaryGeneratorAction.hh"
43#include "globals.hh"
44#include "G4DataVector.hh"
45#include "G4ThreeVector.hh"
46#include <vector>
47
48class G4ParticleGun;
49class G4Event;
50class XrayFluoDetectorConstruction;
51class XrayFluoPrimaryGeneratorMessenger;
52class XrayFluoRunAction;
53
54//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
55
56class XrayFluoPrimaryGeneratorAction : public G4VUserPrimaryGeneratorAction
57{
58  public:
59
60    XrayFluoPrimaryGeneratorAction(XrayFluoDetectorConstruction*); 
61   
62   ~XrayFluoPrimaryGeneratorAction();
63
64  public:
65  void GeneratePrimaries(G4Event*);
66
67  //method to set a random impact point on the sample
68  void SetRndmFlag(G4String val) { rndmFlag = val;}
69
70  //method to choose a circular non-point source
71  void SetRndmVert (G4String val) { beam = val;}
72
73  //set the flag for shooting particles according to certain spectra
74  void SetSpectrum (G4String val) { spectrum= val  ;}
75
76 //set the flag for shooting particles from an isotropic source
77  void SetIsoVert  (G4String val) { isoVert = val  ;}
78
79  //load data created in previous runs
80  void ActivatePhaseSpace(G4String);
81
82  //load Raileigh scattered photon from previously loaded data
83  void SetRayleighFlag (G4bool);
84
85
86private:
87//pointer a to G4 service class
88  G4ParticleGun*                particleGun;     
89
90  //pointer to the geometry
91  XrayFluoDetectorConstruction*    XrayFluoDetector; 
92 
93  //messenger of this class
94  XrayFluoPrimaryGeneratorMessenger* gunMessenger; 
95
96  XrayFluoRunAction*  runManager;
97 
98  //flag for a random impact point
99  G4String                      rndmFlag;   
100 
101  //flag for a circular non-point source
102  G4String                      beam;
103
104 //flag  for shooting particles according to certain spectra
105  G4String                      spectrum;
106
107 //flag  for shooting particles from an isotropic source
108  G4String                      isoVert;
109
110  //flag for the use of phase-space created with a previous run
111  G4bool phaseSpaceGunFlag;
112
113  // the flag to load  particle coming from Rayleigh scattering
114  G4bool rayleighFlag; 
115
116  // data for storage of phase space previously  created
117  std::vector<G4double>* particleEnergies;
118  std::vector<G4String>* particleTypes;
119
120  G4ThreeVector detectorPosition;
121
122
123
124};
125
126#endif
127
128
Note: See TracBrowser for help on using the repository browser.