source: trunk/source/particles/management/include/G4ParticlePropertyData.icc@ 1335

Last change on this file since 1335 was 824, checked in by garnier, 17 years ago

import all except CVS

File size: 4.9 KB
RevLine 
[824]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: G4ParticlePropertyData.icc,v 1.3 2007/03/11 07:17:35 kurasige Exp $
28//
29
30inline
31 void G4ParticlePropertyData::SetVerboseLevel(G4int value)
32{
33 verboseLevel = value;
34}
35
36inline
37 G4int G4ParticlePropertyData::GetVerboseLevel() const
38{
39 return verboseLevel;
40}
41
42inline
43 G4int G4ParticlePropertyData::GetQuarkContent(G4int flavor) const
44{
45 if ((flavor>0) && (flavor<=NumberOfQuarkFlavor)){
46 return theQuarkContent[flavor-1];
47 }else {
48 return 0;
49 }
50}
51
52inline
53 G4int G4ParticlePropertyData::GetAntiQuarkContent(G4int flavor) const
54{
55 if ((flavor>0) && (flavor<NumberOfQuarkFlavor)){
56 return theAntiQuarkContent[flavor-1];
57 }else {
58 return 0;
59 }
60}
61
62
63inline
64 void G4ParticlePropertyData::SetPDGEncoding(G4int aEncoding)
65{
66 thePDGEncoding = aEncoding;
67 fPDGEncodingModified = true;
68 theAntiPDGEncoding = -1*aEncoding;
69 fAntiPDGEncodingModified = true;
70}
71
72inline
73 void G4ParticlePropertyData::SetAntiPDGEncoding(G4int aEncoding)
74{
75 theAntiPDGEncoding = aEncoding;
76 fAntiPDGEncodingModified = true;
77}
78
79inline
80 void G4ParticlePropertyData::SetPDGMass(G4double newMass)
81{
82 thePDGMass = newMass;
83 fPDGMassModified = true;
84}
85
86inline
87 void G4ParticlePropertyData::SetPDGWidth(G4double newWidth)
88{
89 thePDGWidth = newWidth;
90 fPDGWidthModified = true;
91}
92
93inline
94 void G4ParticlePropertyData::SetPDGCharge(G4double newCharge)
95{
96 thePDGCharge = newCharge;
97 fPDGChargeModified = true;
98}
99
100inline
101 void G4ParticlePropertyData::SetPDGiSpin(G4int newSpin)
102{
103 thePDGiSpin = newSpin;
104 fPDGiSpinModified = true;
105}
106
107inline
108 void G4ParticlePropertyData::SetPDGiParity(G4int newParity)
109{
110 thePDGiParity = newParity;
111 fPDGiParityModified = true;
112}
113
114inline
115 void G4ParticlePropertyData::SetPDGiConjugation(G4int newConjugation)
116{
117 thePDGiConjugation = newConjugation;
118 fPDGiConjugationModified = true;
119}
120
121inline
122 void G4ParticlePropertyData::SetPDGiIsospin(G4int newIsospin)
123{
124 thePDGiIsospin = newIsospin;
125 fPDGiIsospinModified = true;
126}
127
128inline
129 void G4ParticlePropertyData::SetPDGiIsospin3(G4int newIsospin3)
130{
131 thePDGiIsospin3 = newIsospin3;
132 fPDGiIsospin3Modified = true;
133}
134
135inline
136 void G4ParticlePropertyData::SetPDGMagneticMoment(G4double mageticMoment)
137{
138 thePDGMagneticMoment = mageticMoment;
139 fPDGMagneticMomentModified = true;
140}
141
142inline
143 void G4ParticlePropertyData::SetPDGiGParity(G4int newGParity)
144{
145 thePDGiGParity = newGParity;
146 fPDGiGParityModified = true;
147}
148
149inline
150 void G4ParticlePropertyData::SetLeptonNumber(G4int newLeptonNumber)
151{
152 theLeptonNumber = newLeptonNumber;
153 fLeptonNumberModified = true;
154}
155
156inline
157 void G4ParticlePropertyData::SetBaryonNumber(G4int newBaryonNumber)
158{
159 theBaryonNumber = newBaryonNumber;
160 fBaryonNumberModified = true;
161}
162
163inline
164 void G4ParticlePropertyData::SetQuarkContent(G4int flavor, G4int newContent)
165{
166 if ((flavor>0) && (flavor<=NumberOfQuarkFlavor)){
167 theQuarkContent[flavor-1] = newContent;
168 fQuarkContentModified = true;
169 }
170}
171
172inline
173 void G4ParticlePropertyData::SetAntiQuarkContent(G4int flavor, G4int newContent)
174{
175 if ((flavor>0) && (flavor<=NumberOfQuarkFlavor)){
176 theAntiQuarkContent[flavor-1] = newContent;
177 fAntiQuarkContentModified = true;
178 }
179}
180
181inline
182 void G4ParticlePropertyData::SetPDGLifeTime(G4double newLifeTime)
183{
184 thePDGLifeTime = newLifeTime;
185 fPDGLifeTimeModified = true;
186}
187
188
189
190
191
Note: See TracBrowser for help on using the repository browser.