Geant4 Cross Reference |
1 // 1 // 2 // ******************************************* 2 // ******************************************************************** 3 // * License and Disclaimer << 3 // * DISCLAIMER * 4 // * 4 // * * 5 // * The Geant4 software is copyright of th << 5 // * The following disclaimer summarizes all the specific disclaimers * 6 // * the Geant4 Collaboration. It is provided << 6 // * of contributors to this software. The specific disclaimers,which * 7 // * conditions of the Geant4 Software License << 7 // * govern, are listed with their locations in: * 8 // * LICENSE and available at http://cern.ch/ << 8 // * http://cern.ch/geant4/license * 9 // * include a list of copyright holders. << 10 // * 9 // * * 11 // * Neither the authors of this software syst 10 // * Neither the authors of this software system, nor their employing * 12 // * institutes,nor the agencies providing fin 11 // * institutes,nor the agencies providing financial support for this * 13 // * work make any representation or warran 12 // * work make any representation or warranty, express or implied, * 14 // * regarding this software system or assum 13 // * regarding this software system or assume any liability for its * 15 // * use. Please see the license in the file << 14 // * use. * 16 // * for the full disclaimer and the limitatio << 17 // * 15 // * * 18 // * This code implementation is the result << 16 // * This code implementation is the intellectual property of the * 19 // * technical work of the GEANT4 collaboratio << 17 // * GEANT4 collaboration. * 20 // * By using, copying, modifying or distri << 18 // * By copying, distributing or modifying the Program (or any work * 21 // * any work based on the software) you ag << 19 // * based on the Program) you indicate your acceptance of this * 22 // * use in resulting scientific publicati << 20 // * statement, and all its terms. * 23 // * acceptance of all terms of the Geant4 Sof << 24 // ******************************************* 21 // ******************************************************************** 25 // 22 // 26 // G4IsotopeProperty class implementation << 27 // 23 // 28 // Author: H.Kurashige, 5 October 1999 << 24 // $Id: G4IsotopeProperty.cc,v 1.3 2001/07/11 10:02:00 gunter Exp $ 29 // ------------------------------------------- << 25 // GEANT4 tag $Name: geant4-04-00 $ >> 26 // >> 27 // >> 28 // ---------------------------------------------------------------------- >> 29 // GEANT 4 class implementation file >> 30 // >> 31 // ********************************************************************** >> 32 // New design using G4VIsotopeTable 5 Oct. 99 H.Kurashige 30 33 31 #include "G4IsotopeProperty.hh" << 34 #include "G4ios.hh" >> 35 #include "g4std/iomanip" 32 36 >> 37 #include "G4IsotopeProperty.hh" 33 #include "G4DecayTable.hh" 38 #include "G4DecayTable.hh" 34 #include "G4PhysicalConstants.hh" << 35 #include "G4SystemOfUnits.hh" << 36 #include "G4ios.hh" << 37 39 38 #include <iomanip> << 40 // ###################################################################### >> 41 // ### IsotopeProperty ### >> 42 // ###################################################################### >> 43 >> 44 G4IsotopeProperty::G4IsotopeProperty(): >> 45 fAtomicNumber(0),fAtomicMass(0), >> 46 fISpin(0),fEnergy(0.0), >> 47 fLifeTime(-1.0),fDecayTable(0) >> 48 { >> 49 } >> 50 39 51 40 G4IsotopeProperty::~G4IsotopeProperty() 52 G4IsotopeProperty::~G4IsotopeProperty() 41 { 53 { 42 delete fDecayTable; << 54 if (fDecayTable != 0) delete fDecayTable; 43 fDecayTable = nullptr; << 44 } 55 } 45 56 46 G4IsotopeProperty::G4IsotopeProperty(const G4I << 57 G4IsotopeProperty::G4IsotopeProperty(const G4IsotopeProperty& right) 47 : fAtomicNumber(right.fAtomicNumber), << 48 fAtomicMass(right.fAtomicMass), << 49 fISpin(right.fISpin), << 50 fEnergy(right.fEnergy), << 51 fLifeTime(right.fLifeTime), << 52 << 53 fMagneticMoment(right.fMagneticMoment), << 54 fIsomerLevel(right.fIsomerLevel), << 55 fFloatLevelBase(right.fFloatLevelBase) << 56 { 58 { >> 59 fAtomicNumber = right.fAtomicNumber; >> 60 fAtomicMass = right.fAtomicMass; >> 61 fISpin = right.fISpin; >> 62 fEnergy = right.fEnergy; >> 63 fLifeTime = right.fLifeTime; 57 // decay table is not copied because G4Decay 64 // decay table is not copied because G4DecayTable has no copy constructor >> 65 fDecayTable = 0; 58 } 66 } 59 67 60 G4IsotopeProperty& G4IsotopeProperty::operator << 68 // Assignment operator >> 69 G4IsotopeProperty & G4IsotopeProperty::operator=(G4IsotopeProperty& right) 61 { 70 { 62 if (this != &right) { 71 if (this != &right) { 63 fAtomicNumber = right.fAtomicNumber; 72 fAtomicNumber = right.fAtomicNumber; 64 fAtomicMass = right.fAtomicMass; << 73 fAtomicMass = right.fAtomicMass; 65 fISpin = right.fISpin; << 74 fISpin = right.fISpin; 66 fMagneticMoment = right.fMagneticMoment; << 75 fEnergy = right.fEnergy; 67 fEnergy = right.fEnergy; << 76 fLifeTime = right.fLifeTime; 68 fLifeTime = right.fLifeTime; << 69 fIsomerLevel = right.fIsomerLevel; << 70 fFloatLevelBase = right.fFloatLevelBase; << 71 // decay table is not copied because G4Dec 77 // decay table is not copied because G4DecayTable has no copy constructor 72 fDecayTable = nullptr; << 78 fDecayTable = 0; 73 } 79 } 74 return *this; 80 return *this; 75 } 81 } 76 82 77 G4bool G4IsotopeProperty::operator==(const G4I << 83 >> 84 // equal / unequal operator >> 85 G4int G4IsotopeProperty::operator==(const G4IsotopeProperty &right) const 78 { 86 { 79 G4bool value = true; 87 G4bool value = true; 80 value = value && (fAtomicNumber == right.fAt << 88 value = value && ( fAtomicNumber == right.fAtomicNumber); 81 value = value && (fAtomicMass == right.fAtom << 89 value = value && ( fAtomicMass == right.fAtomicMass); 82 value = value && (fISpin == right.fISpin); << 90 value = value && ( fISpin == right.fISpin); 83 value = value && (fMagneticMoment == right.f << 91 value = value && ( fEnergy == right.fEnergy); 84 value = value && (fEnergy == right.fEnergy); << 92 value = value && ( fLifeTime == right.fLifeTime); 85 value = value && (fLifeTime == right.fLifeTi << 86 value = value && (fIsomerLevel == right.fIso << 87 value = value && (fFloatLevelBase == right.f << 88 return value; 93 return value; 89 } 94 } 90 << 95 G4int G4IsotopeProperty::operator!=(const G4IsotopeProperty &right) const 91 G4bool G4IsotopeProperty::operator!=(const G4I << 92 { 96 { 93 return !(*this == right); 97 return !(*this == right); 94 } 98 } 95 99 96 void G4IsotopeProperty::DumpInfo() const 100 void G4IsotopeProperty::DumpInfo() const 97 { 101 { 98 #ifdef G4VERBOSE << 102 G4cout << "AtomicNumber: " << fAtomicNumber << G4endl; 99 G4cout << "AtomicNumber: " << fAtomicNumber << 103 G4cout << "AtomicMass: " << fAtomicMass << G4endl; 100 << "AtomicMass: " << fAtomicMass << G << 104 G4cout << "Spin: " << fISpin << "/2" << G4endl; 101 if ((fISpin % 2) != 0) { << 105 G4cout << "Excited Energy: " << G4std::setprecision(1) << fEnergy/keV << "[keV]" << G4endl; 102 G4cout << "Spin: " << fISpin << "/2"; << 106 G4cout << "Life Time: " << fLifeTime/ns << "[ns]" << G4endl; 103 } << 107 if (fDecayTable != 0) { 104 else { << 105 G4cout << "Spin: " << fISpin / 2; << 106 } << 107 G4cout << ", " << 108 << "MagneticMoment: " << fMagneticMom << 109 G4cout << "Isomer Level: " << fIsomerLevel < << 110 << fEnergy / keV; << 111 if (fFloatLevelBase != G4Ions::G4FloatLevelB << 112 G4cout << " +" << G4Ions::FloatLevelBaseCh << 113 } << 114 G4cout << " [keV]" << 115 << ", " << std::setprecision(6) << << 116 if (fDecayTable != nullptr) { << 117 fDecayTable->DumpInfo(); 108 fDecayTable->DumpInfo(); >> 109 } else { >> 110 G4cout << "Decay Table is not defined !" << G4endl; 118 } 111 } 119 else { << 120 // G4cout << "Decay Table is not defined ! << 121 } << 122 #endif << 123 } 112 } >> 113 >> 114 >> 115 >> 116 >> 117 >> 118 >> 119 124 120