source: trunk/source/event/include/G4AdjointPrimaryGenerator.hh@ 1354

Last change on this file since 1354 was 1337, checked in by garnier, 15 years ago

tag geant4.9.4 beta 1 + modifs locales

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// $Id: G4AdjointPrimaryGenerator.hh,v 1.2 2009/11/18 17:57:59 gcosmo Exp $
27// GEANT4 tag $Name: geant4-09-04-beta-01 $
28//
29/////////////////////////////////////////////////////////////////////////////////
30// Module: G4AdjointPrimaryGenerator
31// Author: L. Desorgher
32// Organisation: SpaceIT GmbH
33// Contract: ESA contract 21435/08/NL/AT
34// Customer: ESA/ESTEC
35/////////////////////////////////////////////////////////////////////////////////
36//
37// CHANGE HISTORY
38// --------------
39// ChangeHistory:
40// November 2009 creation by L. Desorgher, Splitting of G4AdjointPrimaryGeneratorAction in two classes G4AdjointPrimaryGeneratorAction and G4AdjointPrimaryGenerator
41//
42//-------------------------------------------------------------
43// Documentation:
44// This class represents the Primary Generator that generate vertex (energy,position and direction) of primary adjoint particles.
45// It is used by G4AdjointPrimaryGeneratorAction. If the adjoint source is selected by the user as being on the external boundary of a volume
46// it uses the class G4AdjointPosOnPhysVolGenerator to generate the vertex positions and directions. Otherwise G4SingleParticleSource is used.
47//
48//
49//
50#ifndef G4AdjointPrimaryGenerator_h
51#define G4AdjointPrimaryGenerator_h 1
52#include "globals.hh"
53#include"G4ThreeVector.hh"
54#include <vector>
55#include <map>
56#include <iterator>
57
58class G4AdjointPosOnPhysVolGenerator;
59class G4Event;
60class G4SingleParticleSource;
61class G4ParticleDefinition;
62/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
63//
64class G4AdjointPrimaryGenerator
65{
66 public: //constructor, destructor
67
68 G4AdjointPrimaryGenerator();
69 ~G4AdjointPrimaryGenerator();
70
71 public: //public methods
72
73 void GenerateAdjointPrimaryVertex(G4Event* anEvt,G4ParticleDefinition* adj_part,G4double E1,G4double E2);
74 void SetSphericalAdjointPrimarySource(G4double radius, G4ThreeVector pos);
75 void SetAdjointPrimarySourceOnAnExtSurfaceOfAVolume(const G4String& volume_name);
76
77 private: //attributes
78
79 //The class responsible for the random generation of positions and direction of primaries for adjoint source set on the external surface of
80 //a G4 volume
81 G4AdjointPosOnPhysVolGenerator* theG4AdjointPosOnPhysVolGenerator;
82
83 G4SingleParticleSource* theSingleParticleSource;
84
85 //Type of adjoint source
86 //--------------------
87 G4String type_of_adjoint_source; //Spherical ExtSurfaceOfAVolume
88 G4double radius_spherical_source;
89 G4ThreeVector center_spherical_source;
90};
91#endif
92
Note: See TracBrowser for help on using the repository browser.