source: trunk/source/event/include/G4VPrimaryGenerator.hh@ 1271

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

update geant4.9.3 tag

File size: 3.1 KB
RevLine 
[816]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: G4VPrimaryGenerator.hh,v 1.8 2006/06/29 18:09:21 gunter Exp $
[1228]28// GEANT4 tag $Name: geant4-09-03 $
[816]29//
30
31#ifndef G4VPrimaryGenerator_h
32#define G4VPrimaryGenerator_h 1
33
34#include "G4ThreeVector.hh"
35
36class G4Event;
37
38// class description:
39//
40// This is an abstract base class of all of primary generators.
41// This class has only one pure virtual method GeneratePrimaryVertex()
42// which takes a G4Event object and generates a primay vertex and
43// primary particles associate to the vertex.
44//
45
46class G4VPrimaryGenerator
47{
48 public: // with description
49 // static service method for checking a point is included in the (current) world
50 static G4bool CheckVertexInsideWorld(const G4ThreeVector& pos);
51
52 public: // with description
53 // Constructor and destrucot of this base class
54 G4VPrimaryGenerator();
55 virtual ~G4VPrimaryGenerator();
56
57 // Pure virtual method which a concrete class derived from this base class must
58 // have a concrete implementation
59 virtual void GeneratePrimaryVertex(G4Event* evt) = 0;
60
61 protected:
62 G4ThreeVector particle_position;
63 G4double particle_time;
64
65 public:
66 G4ThreeVector GetParticlePosition()
67 { return particle_position; }
68 G4double GetParticleTime()
69 { return particle_time; }
70 void SetParticlePosition(G4ThreeVector aPosition)
71 { particle_position = aPosition; }
72 void SetParticleTime(G4double aTime)
73 { particle_time = aTime; }
74
75};
76
77#endif
78
Note: See TracBrowser for help on using the repository browser.