Geant4 Cross Reference |
1 // 1 // 2 // ******************************************* 2 // ******************************************************************** 3 // * License and Disclaimer 3 // * License and Disclaimer * 4 // * 4 // * * 5 // * The Geant4 software is copyright of th 5 // * The Geant4 software is copyright of the Copyright Holders of * 6 // * the Geant4 Collaboration. It is provided 6 // * the Geant4 Collaboration. It is provided under the terms and * 7 // * conditions of the Geant4 Software License 7 // * conditions of the Geant4 Software License, included in the file * 8 // * LICENSE and available at http://cern.ch/ 8 // * LICENSE and available at http://cern.ch/geant4/license . These * 9 // * include a list of copyright holders. 9 // * include a list of copyright holders. * 10 // * 10 // * * 11 // * Neither the authors of this software syst 11 // * Neither the authors of this software system, nor their employing * 12 // * institutes,nor the agencies providing fin 12 // * institutes,nor the agencies providing financial support for this * 13 // * work make any representation or warran 13 // * work make any representation or warranty, express or implied, * 14 // * regarding this software system or assum 14 // * regarding this software system or assume any liability for its * 15 // * use. Please see the license in the file 15 // * use. Please see the license in the file LICENSE and URL above * 16 // * for the full disclaimer and the limitatio 16 // * for the full disclaimer and the limitation of liability. * 17 // * 17 // * * 18 // * This code implementation is the result 18 // * This code implementation is the result of the scientific and * 19 // * technical work of the GEANT4 collaboratio 19 // * technical work of the GEANT4 collaboration. * 20 // * By using, copying, modifying or distri 20 // * By using, copying, modifying or distributing the software (or * 21 // * any work based on the software) you ag 21 // * any work based on the software) you agree to acknowledge its * 22 // * use in resulting scientific publicati 22 // * use in resulting scientific publications, and indicate your * 23 // * acceptance of all terms of the Geant4 Sof 23 // * acceptance of all terms of the Geant4 Software license. * 24 // ******************************************* 24 // ******************************************************************** 25 // 25 // 26 // 26 // 27 // ------------------------------------------- 27 // ------------------------------------------------------------------- 28 // GEANT4 Class file 28 // GEANT4 Class file 29 // 29 // 30 // For information related to this code c 30 // For information related to this code contact: 31 // 31 // 32 // File name: G4PartialWidthTable 32 // File name: G4PartialWidthTable 33 // 33 // 34 // Author: 34 // Author: 35 // 35 // 36 // Creation date: 15 April 1999 36 // Creation date: 15 April 1999 37 // 37 // 38 // Modifications: 38 // Modifications: 39 // 39 // 40 // ------------------------------------------- 40 // ------------------------------------------------------------------- 41 41 42 #include "globals.hh" 42 #include "globals.hh" 43 #include "G4SystemOfUnits.hh" 43 #include "G4SystemOfUnits.hh" 44 #include "G4HadronicException.hh" 44 #include "G4HadronicException.hh" 45 #include "G4ios.hh" 45 #include "G4ios.hh" 46 #include "G4PartialWidthTable.hh" 46 #include "G4PartialWidthTable.hh" 47 #include "G4KineticTrack.hh" 47 #include "G4KineticTrack.hh" 48 48 49 G4PartialWidthTable::G4PartialWidthTable(const 49 G4PartialWidthTable::G4PartialWidthTable(const G4double* energies, G4int entries) : nEnergies(entries) 50 { 50 { 51 // Fill the vector with tabulated energies 51 // Fill the vector with tabulated energies 52 G4int i; 52 G4int i; 53 for (i=0; i<entries; i++) 53 for (i=0; i<entries; i++) 54 { 54 { 55 G4double e = *(energies + i) * GeV; 55 G4double e = *(energies + i) * GeV; 56 energy.push_back(e); 56 energy.push_back(e); 57 } 57 } 58 } 58 } 59 59 60 60 61 G4PartialWidthTable::~G4PartialWidthTable() 61 G4PartialWidthTable::~G4PartialWidthTable() 62 { } 62 { } 63 63 64 64 65 G4bool G4PartialWidthTable::operator==(const G 65 G4bool G4PartialWidthTable::operator==(const G4PartialWidthTable &right) const 66 { 66 { 67 return (this == (G4PartialWidthTable *) &rig 67 return (this == (G4PartialWidthTable *) &right); 68 } 68 } 69 69 70 70 71 G4bool G4PartialWidthTable::operator!=(const G 71 G4bool G4PartialWidthTable::operator!=(const G4PartialWidthTable &right) const 72 { 72 { 73 return (this != (G4PartialWidthTable *) &rig 73 return (this != (G4PartialWidthTable *) &right); 74 } 74 } 75 75 76 76 77 G4int G4PartialWidthTable::NumberOfChannels() 77 G4int G4PartialWidthTable::NumberOfChannels() const 78 { 78 { 79 return (G4int)widths.size(); 79 return (G4int)widths.size(); 80 } 80 } 81 81 82 82 83 const G4PhysicsVector* G4PartialWidthTable::Wi 83 const G4PhysicsVector* G4PartialWidthTable::Width(const G4String& name1, const G4String& name2) const 84 { 84 { 85 // Returned pointer is not owned by the clie 85 // Returned pointer is not owned by the client 86 G4PhysicsVector* width = 0; 86 G4PhysicsVector* width = 0; 87 std::size_t n = 0; 87 std::size_t n = 0; 88 std::size_t entries = widths.size(); 88 std::size_t entries = widths.size(); 89 for (std::size_t i=0; i<entries; ++i) 89 for (std::size_t i=0; i<entries; ++i) 90 { 90 { 91 if ( (daughter1[i] == name1 && daughter2 91 if ( (daughter1[i] == name1 && daughter2[i] == name2) || 92 (daughter2[i] == name1 && daughter1[i] == 92 (daughter2[i] == name1 && daughter1[i] == name2) ) 93 { 93 { 94 width = (G4PhysicsVector*) (widths[i]); 94 width = (G4PhysicsVector*) (widths[i]); 95 ++n; 95 ++n; 96 } 96 } 97 } 97 } 98 if (n > 1) throw G4HadronicException(__FILE_ 98 if (n > 1) throw G4HadronicException(__FILE__, __LINE__, "G4PartialWidthTable::Width - ambiguity"); 99 99 100 return width; 100 return width; 101 } 101 } 102 102 103 103 104 void G4PartialWidthTable::AddWidths(const G4do 104 void G4PartialWidthTable::AddWidths(const G4double* channelWidth, 105 const G4String& name1, const G4Str 105 const G4String& name1, const G4String& name2) 106 { 106 { 107 G4PhysicsFreeVector* width = new G4PhysicsFr 107 G4PhysicsFreeVector* width = new G4PhysicsFreeVector(nEnergies); 108 G4int i; 108 G4int i; 109 for (i=0; i<nEnergies; i++) 109 for (i=0; i<nEnergies; i++) 110 { 110 { 111 G4double value = *(channelWidth+ i) * Ge 111 G4double value = *(channelWidth+ i) * GeV; 112 G4double e = energy[i]; 112 G4double e = energy[i]; 113 width->PutValue(i,e,value); 113 width->PutValue(i,e,value); 114 } 114 } 115 115 116 widths.push_back(width); 116 widths.push_back(width); 117 daughter1.push_back(name1); 117 daughter1.push_back(name1); 118 daughter2.push_back(name2); 118 daughter2.push_back(name2); 119 119 120 return; 120 return; 121 } 121 } 122 122 123 123 124 void G4PartialWidthTable::Dump() const 124 void G4PartialWidthTable::Dump() const 125 { 125 { 126 std::size_t entries = widths.size(); 126 std::size_t entries = widths.size(); 127 127 128 for (std::size_t i=0; i<entries; ++i) 128 for (std::size_t i=0; i<entries; ++i) 129 { 129 { 130 G4cout << " Channel " << i << ": " 130 G4cout << " Channel " << i << ": " 131 << daughter1[i] << " " << daughte 131 << daughter1[i] << " " << daughter2[i] << G4endl; 132 G4PhysicsFreeVector* width = widths[i]; 132 G4PhysicsFreeVector* width = widths[i]; 133 for (G4int j=0; j<nEnergies; ++j) 133 for (G4int j=0; j<nEnergies; ++j) 134 { 134 { 135 G4bool dummy = false; 135 G4bool dummy = false; 136 G4double e = energy[i]; 136 G4double e = energy[i]; 137 G4double w = width->GetValue(e,dummy); 137 G4double w = width->GetValue(e,dummy); 138 G4cout << j << ") Energy = " << e << ", Wi 138 G4cout << j << ") Energy = " << e << ", Width = " << w << G4endl; 139 } 139 } 140 } 140 } 141 return; 141 return; 142 } 142 } 143 143