Geant4.10
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
G4InuclElementaryParticle.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 // $Id: G4InuclElementaryParticle.hh 72074 2013-07-06 06:28:53Z mkelsey $
27 //
28 // 20100114 M. Kelsey -- Remove G4CascadeMomentum, use G4LorentzVector directly
29 // 20100409 M. Kelsey -- Drop unused string argument from ctors.
30 // 20100429 M. Kelsey -- Change "photon()" to "isPhoton()", use enum names
31 // 20100914 M. Kelsey -- Move printout to .cc file
32 // 20100915 M. Kelsey -- Add hyperon() identification function, ctor for
33 // G4DynamicParticle
34 // 20110117 M. Kelsey -- Add antinucleon() and antibaryon() flag
35 // 20110127 M. Kelsey -- Drop generation.
36 // 20110214 M. Kelsey -- Replace integer "model" with enum
37 // 20110321 M. Kelsey -- Fix getStrangeness() to return int
38 // 20110721 M. Kelsey -- Add constructors to take G4ParticleDefinition as
39 // input instead of type code, to allow pass-through of unusable
40 // particles during rescattering. Modify ctors to pass model to
41 // base ctor.
42 // 20110801 M. Kelsey -- Add fill() functions to replicate ctors, allowing
43 // reuse of objects as buffers; c.f. G4InuclNuclei.
44 // 20110922 M. Kelsey -- Add stream argument to printParticle() => print()
45 // 20120608 M. Kelsey -- Fix variable-name "shadowing" compiler warnings.
46 // 20130702 M. Kelsey -- Use static type classifiers in G4InuclParticleNames
47 
48 #ifndef G4INUCL_ELEMENTARY_PARTICLE_HH
49 #define G4INUCL_ELEMENTARY_PARTICLE_HH
50 
51 #include "G4InuclParticle.hh"
52 #include "G4InuclParticleNames.hh"
53 #include "globals.hh"
54 
56 
57 
59 public:
61  : G4InuclParticle() {}
62 
65 
68  : G4InuclParticle(dynPart, model) {}
69 
72  : G4InuclParticle(makeDefinition(ityp), mom, model) {}
73 
76  : G4InuclParticle(makeDefinition(ityp), ekin, model) {}
77 
78  // WARNING: This may create a particle without a valid type code!
81  : G4InuclParticle(pd, mom, model) {}
82 
83  // Copy and assignment constructors for use with std::vector<>
85  : G4InuclParticle(right) {}
86 
88 
89  // Overwrite data structure (avoids creating/copying temporaries)
90  void fill(G4int ityp, Model model=DefaultModel) { fill(0., ityp, model); }
91 
92  void fill(const G4LorentzVector& mom, G4int ityp, Model model=DefaultModel);
93 
94  void fill(G4double ekin, G4int ityp, Model model=DefaultModel);
95 
96  // WARNING: This may create a particle without a valid type code!
97  void fill(const G4LorentzVector& mom, G4ParticleDefinition* pd,
99 
100  // Assignment and accessor functions
101  void setType(G4int ityp);
102  G4int type() const { return type(getDefinition()); }
103 
104  static G4int type(const G4ParticleDefinition* pd);
105 
106  // Ensure that type code refers to a known particle
107  inline static G4bool valid(G4int ityp) { return ityp!=0; }
108  G4bool valid() const { return valid(type()); }
109 
117 
118  G4int baryon() const { // Can use as a bool (!=0 ==> true)
119  return getDefinition()->GetBaryonNumber();
120  }
121 
122  G4bool antibaryon() const { return baryon() < 0; }
123 
124  G4bool hyperon() const { return (baryon() && getStrangeness()); }
125 
128  }
129 
130  G4int getStrangeness() const { return getStrangeness(type()); }
131 
132  virtual void print(std::ostream& os) const;
133 
134  static G4int getStrangeness(G4int type);
136 
137 protected:
138  // Convert internal type code to standard GEANT4 pointer
140 };
141 
142 #endif // G4INUCL_ELEMENTARY_PARTICLE_HH
G4InuclElementaryParticle(G4int ityp, Model model=DefaultModel)
G4bool isElectron(G4int ityp)
G4bool pion(G4int ityp)
G4bool isNeutrino(G4int ityp)
static G4double getParticleMass(G4int type)
G4bool antinucleon(G4int ityp)
int G4int
Definition: G4Types.hh:78
static G4bool valid(G4int ityp)
G4InuclElementaryParticle(const G4LorentzVector &mom, G4int ityp, Model model=DefaultModel)
G4InuclElementaryParticle & operator=(const G4InuclElementaryParticle &right)
G4InuclElementaryParticle(const G4InuclElementaryParticle &right)
G4InuclElementaryParticle(G4double ekin, G4int ityp, Model model=DefaultModel)
G4bool nucleon(G4int ityp)
G4bool isMuon(G4int ityp)
G4bool isPhoton(G4int ityp)
bool G4bool
Definition: G4Types.hh:79
static G4ParticleDefinition * makeDefinition(G4int ityp)
const XML_Char XML_Content * model
G4InuclElementaryParticle(const G4LorentzVector &mom, G4ParticleDefinition *pd, Model model=DefaultModel)
void fill(G4int ityp, Model model=DefaultModel)
G4bool quasi_deutron(G4int ityp)
double G4double
Definition: G4Types.hh:76
G4ParticleDefinition * getDefinition() const
virtual void print(std::ostream &os) const
G4InuclElementaryParticle(const G4DynamicParticle &dynPart, Model model=DefaultModel)