Geant4.10
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
G4PrimaryTransformer.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 //
27 // $Id: G4PrimaryTransformer.hh 72252 2013-07-12 09:04:11Z gcosmo $
28 //
29 
30 #ifndef G4PromaryTransformer_h
31 #define G4PromaryTransformer_h 1
32 
33 #include "G4TrackVector.hh"
34 #include "G4ParticleTable.hh"
35 #include "globals.hh"
36 class G4Event;
37 class G4PrimaryVertex;
38 #include "G4PrimaryParticle.hh"
39 #include "G4DynamicParticle.hh"
40 
41 // class description:
42 //
43 // This class is exclusively used by G4EventManager for the conversion
44 // from G4PrimaryVertex/G4PrimaryParticle to G4DynamicParticle/G4Track.
45 //
46 
48 {
49  public:
51  virtual ~G4PrimaryTransformer();
52 
53  G4TrackVector* GimmePrimaries(G4Event* anEvent, G4int trackIDCounter=0);
54  void CheckUnknown();
55 
56  protected:
61 
66 
68 
69  public:
70  inline void SetVerboseLevel(G4int vl)
71  { verboseLevel = vl; };
72 
73  public: //with description
75  // By invoking this Set method, the user can alter the treatment of unknown
76  // particle. The ideal place to invoke this method is in the BeginOfRunAction.
77 
79  { return unknownParticleDefined; }
80 
81  protected:
82  void GenerateTracks(G4PrimaryVertex* primaryVertex);
83  void GenerateSingleTrack(G4PrimaryParticle* primaryParticle,
86  G4DynamicParticle* motherDP);
88 
89  protected: //with description
90  // Following two virtual methods are provided to customize the use of PrimaryTransformer
91  // for particle types exotic to Geant4.
92 
94  // Return appropriate G4ParticleDefinition w.r.t. the primary particle.
95  // If NULL is returned, the particle will not be treated as a track, but its daughters
96  // will be examined in case it has "pre-assigned decay products".
97 
99  // Return true if a primary particle should be converted into a track.
100  // By default, all particles of non-shortlived and shortlived with valid decay
101  // tables are converted.
102 };
103 
104 #endif
105 
106 
G4TrackVector * GimmePrimaries(G4Event *anEvent, G4int trackIDCounter=0)
G4bool CheckDynamicParticle(G4DynamicParticle *DP)
int G4int
Definition: G4Types.hh:78
G4ParticleDefinition * opticalphoton
void SetUnknnownParticleDefined(G4bool vl)
bool G4bool
Definition: G4Types.hh:79
void SetVerboseLevel(G4int vl)
void GenerateTracks(G4PrimaryVertex *primaryVertex)
virtual G4bool IsGoodForTrack(G4ParticleDefinition *pd)
void GenerateSingleTrack(G4PrimaryParticle *primaryParticle, G4double x0, G4double y0, G4double z0, G4double t0, G4double wv)
std::vector< G4Track * > G4TrackVector
G4bool GetUnknownParticleDefined() const
G4ParticleTable * particleTable
G4ParticleDefinition * unknown
virtual G4ParticleDefinition * GetDefinition(G4PrimaryParticle *pp)
double G4double
Definition: G4Types.hh:76
void SetDecayProducts(G4PrimaryParticle *mother, G4DynamicParticle *motherDP)