| 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: G4ParticleDefinition.icc,v 1.12 2007/03/11 07:17:35 kurasige Exp $
|
|---|
| 28 | // GEANT4 tag $Name: geant4-09-02-ref-02 $
|
|---|
| 29 | //
|
|---|
| 30 |
|
|---|
| 31 | inline
|
|---|
| 32 | G4ParticleTable* G4ParticleDefinition::GetParticleTable()
|
|---|
| 33 | {
|
|---|
| 34 | return theParticleTable;
|
|---|
| 35 | }
|
|---|
| 36 |
|
|---|
| 37 | inline
|
|---|
| 38 | G4DecayTable* G4ParticleDefinition::GetDecayTable()
|
|---|
| 39 | {
|
|---|
| 40 | return theDecayTable;
|
|---|
| 41 | }
|
|---|
| 42 |
|
|---|
| 43 | inline
|
|---|
| 44 | void G4ParticleDefinition::SetDecayTable(G4DecayTable* aDecayTable)
|
|---|
| 45 | {
|
|---|
| 46 | theDecayTable = aDecayTable;
|
|---|
| 47 | }
|
|---|
| 48 |
|
|---|
| 49 |
|
|---|
| 50 | inline
|
|---|
| 51 | void G4ParticleDefinition::SetVerboseLevel(G4int value)
|
|---|
| 52 | {
|
|---|
| 53 | verboseLevel = value;
|
|---|
| 54 | }
|
|---|
| 55 |
|
|---|
| 56 | inline
|
|---|
| 57 | G4int G4ParticleDefinition::GetVerboseLevel() const
|
|---|
| 58 | {
|
|---|
| 59 | return verboseLevel;
|
|---|
| 60 | }
|
|---|
| 61 |
|
|---|
| 62 | inline
|
|---|
| 63 | G4ProcessManager* G4ParticleDefinition::GetProcessManager() const
|
|---|
| 64 | {
|
|---|
| 65 | return theProcessManager;
|
|---|
| 66 | }
|
|---|
| 67 |
|
|---|
| 68 | inline
|
|---|
| 69 | void G4ParticleDefinition::SetProcessManager(G4ProcessManager *aProcessManager)
|
|---|
| 70 | {
|
|---|
| 71 | theProcessManager = aProcessManager;
|
|---|
| 72 | }
|
|---|
| 73 |
|
|---|
| 74 | inline
|
|---|
| 75 | G4int G4ParticleDefinition::GetQuarkContent(G4int flavor) const
|
|---|
| 76 | {
|
|---|
| 77 | G4int content = 0;
|
|---|
| 78 | if ((flavor>0) && (flavor<=NumberOfQuarkFlavor)){
|
|---|
| 79 | content = theQuarkContent[flavor-1];
|
|---|
| 80 | }else {
|
|---|
| 81 | #ifdef G4VERBOSE
|
|---|
| 82 | if (verboseLevel >0) {
|
|---|
| 83 | G4cout << "Invalid Quark Flavor for G4ParticleDefinition::GetQuarkContent";
|
|---|
| 84 | G4cout << ": flavor=" << flavor <<G4endl;
|
|---|
| 85 | }
|
|---|
| 86 | #endif
|
|---|
| 87 | }
|
|---|
| 88 | return content;
|
|---|
| 89 | }
|
|---|
| 90 |
|
|---|
| 91 | inline
|
|---|
| 92 | G4int G4ParticleDefinition::GetAntiQuarkContent(G4int flavor) const
|
|---|
| 93 | {
|
|---|
| 94 | G4int content = 0;
|
|---|
| 95 | if ((flavor>0) && (flavor<=NumberOfQuarkFlavor)){
|
|---|
| 96 | content = theAntiQuarkContent[flavor-1];
|
|---|
| 97 | }else {
|
|---|
| 98 | #ifdef G4VERBOSE
|
|---|
| 99 | if (verboseLevel >0) {
|
|---|
| 100 | G4cout <<"Invalid Quark Flavor for G4ParticleDefinition::GetAntiQuarkContent";
|
|---|
| 101 | G4cout << ": flavor=" << flavor <<G4endl;
|
|---|
| 102 | }
|
|---|
| 103 | #endif
|
|---|
| 104 | }
|
|---|
| 105 | return content;
|
|---|
| 106 | }
|
|---|
| 107 |
|
|---|
| 108 |
|
|---|
| 109 | inline
|
|---|
| 110 | void G4ParticleDefinition::SetParticleSubType(const G4String& subtype)
|
|---|
| 111 | {
|
|---|
| 112 | theParticleSubType = subtype;
|
|---|
| 113 | }
|
|---|
| 114 |
|
|---|
| 115 | inline
|
|---|
| 116 | void G4ParticleDefinition::SetAntiPDGEncoding(G4int aEncoding)
|
|---|
| 117 | {
|
|---|
| 118 | theAntiPDGEncoding = aEncoding;
|
|---|
| 119 | }
|
|---|
| 120 |
|
|---|
| 121 | inline
|
|---|
| 122 | G4bool G4ParticleDefinition::GetApplyCutsFlag() const
|
|---|
| 123 | {
|
|---|
| 124 | return fApplyCutsFlag;
|
|---|
| 125 | }
|
|---|
| 126 |
|
|---|
| 127 | inline
|
|---|
| 128 | void G4ParticleDefinition::SetAtomicNumber(G4int i)
|
|---|
| 129 | {
|
|---|
| 130 | theAtomicNumber = i;
|
|---|
| 131 | }
|
|---|
| 132 |
|
|---|
| 133 | inline
|
|---|
| 134 | G4int G4ParticleDefinition::GetAtomicNumber() const
|
|---|
| 135 | {
|
|---|
| 136 | return theAtomicNumber;
|
|---|
| 137 | }
|
|---|
| 138 |
|
|---|
| 139 | inline
|
|---|
| 140 | void G4ParticleDefinition::SetAtomicMass(G4int i)
|
|---|
| 141 | {
|
|---|
| 142 | theAtomicMass = i;
|
|---|
| 143 | }
|
|---|
| 144 |
|
|---|
| 145 | inline
|
|---|
| 146 | G4int G4ParticleDefinition::GetAtomicMass() const
|
|---|
| 147 | {
|
|---|
| 148 | return theAtomicMass;
|
|---|
| 149 | }
|
|---|
| 150 |
|
|---|
| 151 | inline
|
|---|
| 152 | void G4ParticleDefinition::SetPDGMagneticMoment(G4double magneticMoment)
|
|---|
| 153 | {
|
|---|
| 154 | thePDGMagneticMoment = magneticMoment;
|
|---|
| 155 | }
|
|---|
| 156 |
|
|---|
| 157 |
|
|---|