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 // G4PhysicsTableHelper class implementation << 26 // $Id: G4PhysicsTableHelper.cc,v 1.6 2009/08/01 07:57:13 kurasige Exp $ >> 27 // GEANT4 tag $Name: geant4-09-03 $ 27 // 28 // 28 // Author: H.Kurashige, 20 August 2004 - First << 29 // 29 // ------------------------------------------- << 30 // ------------------------------------------------------------ >> 31 // GEANT 4 class header file >> 32 // >> 33 // Class Description >> 34 // G4PhysicsTableHelper is a static utility class >> 35 // for helping proceeses to build their physics table >> 36 // >> 37 // ------------------------------------------------------------ >> 38 // First Implementation 20 Aug. 2004 H.Kurashige >> 39 // >> 40 // ------------------------------------------------------------ 30 41 31 #include "G4PhysicsTableHelper.hh" 42 #include "G4PhysicsTableHelper.hh" 32 #include "G4ProductionCutsTable.hh" << 43 #include "G4ProductionCutsTable.hh" 33 #include "G4MCCIndexConversionTable.hh" << 34 #include "G4Threading.hh" << 35 #include "G4ios.hh" << 36 44 37 G4int G4PhysicsTableHelper::verboseLevel = 1; 45 G4int G4PhysicsTableHelper::verboseLevel = 1; 38 46 39 // ------------------------------------------- << 40 G4PhysicsTableHelper::G4PhysicsTableHelper() 47 G4PhysicsTableHelper::G4PhysicsTableHelper() 41 { 48 { 42 } 49 } 43 50 44 // ------------------------------------------- << 45 G4PhysicsTableHelper::~G4PhysicsTableHelper() 51 G4PhysicsTableHelper::~G4PhysicsTableHelper() 46 { 52 { 47 } 53 } 48 54 49 // ------------------------------------------- << 55 G4PhysicsTableHelper::G4PhysicsTableHelper(const G4PhysicsTableHelper&) 50 G4PhysicsTable* << 56 { 51 G4PhysicsTableHelper::PreparePhysicsTable(G4Ph << 57 } 52 { << 58 53 G4ProductionCutsTable* cutTable << 59 G4PhysicsTableHelper& G4PhysicsTableHelper::operator=(const G4PhysicsTableHelper&) 54 = G4ProductionCutsTable::GetProductionCuts << 60 { 55 std::size_t numberOfMCC = cutTable->GetTable << 61 return *this; >> 62 } >> 63 56 64 57 if ( physTable != nullptr ) << 65 G4PhysicsTable* G4PhysicsTableHelper::PreparePhysicsTable(G4PhysicsTable* physTable) 58 { << 66 { >> 67 G4ProductionCutsTable* cutTable = G4ProductionCutsTable::GetProductionCutsTable(); >> 68 size_t numberOfMCC = cutTable->GetTableSize(); >> 69 >> 70 if ( physTable !=0) { 59 // compare size of physics table and numbe 71 // compare size of physics table and number of material-cuts-couple 60 if ( physTable->size() < numberOfMCC ) << 72 if ( physTable->size() < numberOfMCC) { 61 { << 73 // enlarge physcis table >> 74 physTable->resize(numberOfMCC, (G4PhysicsVector*)(0)); 62 #ifdef G4VERBOSE 75 #ifdef G4VERBOSE 63 if (verboseLevel>2) << 76 if (verboseLevel>2) { 64 { << 77 G4cerr << "G4PhysicsTableHelper::PreparePhysicsTable "; 65 G4cout << "G4PhysicsTableHelper::Prepa << 78 G4cerr << "Physics Table "<< physTable ; 66 << " the table " << physTable < << 79 G4cerr << " is resized to " << numberOfMCC << G4endl; 67 << physTable->size() << 68 << " will be is resized to " << << 69 } 80 } 70 #endif 81 #endif 71 // enlarge physics table << 82 } else if ( physTable->size() > numberOfMCC){ 72 physTable->resize(numberOfMCC, nullptr); << 73 } << 74 else if ( physTable->size() > numberOfMCC << 75 { << 76 // ERROR: this situation should not occu 83 // ERROR: this situation should not occur 77 // size of physics table is larger than << 84 // size of physics table is shorter than number of material-cuts-couple 78 G4ExceptionDescription ed; << 85 physTable->resize(numberOfMCC); 79 ed << "table " << physTable << " size=" << 86 #ifdef G4VERBOSE 80 << " is longer than number of material-cuts << 87 if (verboseLevel>0) { 81 G4Exception( "G4PhysicsTableHelper::Prep << 88 G4cerr << "G4PhysicsTableHelper::PreparePhysicsTable "; 82 "ProcCuts001", FatalExcepti << 89 G4cerr << "Physics Table "<< physTable ; >> 90 G4cerr << " is longer than number of material-cuts-couple " << G4endl; >> 91 } >> 92 #endif 83 } 93 } 84 } << 94 } else { 85 else << 86 { << 87 // create PhysicsTable is given poitner is 95 // create PhysicsTable is given poitner is null 88 physTable = new G4PhysicsTable(); << 96 physTable = new G4PhysicsTable(numberOfMCC); 89 physTable->resize(numberOfMCC, nullptr); << 97 physTable->resize(numberOfMCC, (G4PhysicsVector*)(0)); >> 98 90 } 99 } 91 100 92 #ifdef G4VERBOSE 101 #ifdef G4VERBOSE 93 if (verboseLevel>2) << 102 if (verboseLevel>2) { 94 { << 103 if ( physTable !=0) { 95 G4cout << "G4PhysicsTableHelper::PreparePh << 104 G4cerr << "Physics Table size "<< physTable->size(); 96 << " the table "<< physTable << 105 } else { 97 << " size=" << numberOfMCC << G4endl; << 106 G4cerr << "Physics Table does not exist "; >> 107 } >> 108 G4cerr << ": number of material-cuts-couple " << numberOfMCC << G4endl; 98 } 109 } 99 #endif 110 #endif 100 111 101 // Reset recal-needed flag for all physics v 112 // Reset recal-needed flag for all physics vectors 102 physTable->ResetFlagArray(); 113 physTable->ResetFlagArray(); 103 114 104 for (std::size_t idx = 0; idx <numberOfMCC; << 115 for (size_t idx = 0; idx <numberOfMCC; idx +=1){ 105 { << 116 const G4MaterialCutsCouple* mcc = cutTable->GetMaterialCutsCouple(idx); 106 const G4MaterialCutsCouple* mcc = cutTable << 117 //check if re-calculation of the physics vector is needed 107 << 108 // check if re-calculation of the physics << 109 // MCC is not used 118 // MCC is not used 110 if ( !mcc->IsUsed() ) physTable->ClearFlag 119 if ( !mcc->IsUsed() ) physTable->ClearFlag(idx); 111 120 112 // RecalcNeeded flag of MCC is not asserte 121 // RecalcNeeded flag of MCC is not asserted 113 if ( !mcc->IsRecalcNeeded() ) physTable->C 122 if ( !mcc->IsRecalcNeeded() ) physTable->ClearFlag(idx); 114 } 123 } 115 124 116 return physTable; 125 return physTable; 117 } 126 } 118 127 119 // ------------------------------------------- << 128 >> 129 120 G4bool G4PhysicsTableHelper::RetrievePhysicsTa 130 G4bool G4PhysicsTableHelper::RetrievePhysicsTable(G4PhysicsTable* physTable, 121 << 131 const G4String& fileName, 122 << 132 G4bool ascii ) 123 { 133 { 124 if (physTable == nullptr ) return false; << 134 if (physTable == 0) return false; 125 135 126 // retrieve physics table from the given fil 136 // retrieve physics table from the given file 127 G4PhysicsTable* tempTable = new G4PhysicsTab 137 G4PhysicsTable* tempTable = new G4PhysicsTable(); 128 if (! tempTable->RetrievePhysicsTable(fileNa << 138 if (! tempTable->RetrievePhysicsTable(fileName,ascii) ){ 129 { << 139 #ifdef G4VERBOSE 130 G4ExceptionDescription ed; << 140 if (verboseLevel>1) { 131 ed << "Cannot retrieve physics table from << 141 G4cerr << "G4PhysicsTableHelper::RetrievePhysicsTable "; 132 G4Exception( "G4ProductionCutsTable::Retri << 142 G4cerr << "Fail to retreive from "<< fileName << G4endl; 133 "ProcCuts105", JustWarning, e << 143 } 134 delete tempTable; << 144 #endif 135 return false; 145 return false; 136 } 146 } 137 147 138 G4ProductionCutsTable* cutTable << 148 G4ProductionCutsTable* cutTable = G4ProductionCutsTable::GetProductionCutsTable(); 139 = G4ProductionCutsTable::GetProductionCuts << 149 const G4MCCIndexConversionTable* converter = cutTable->GetMCCIndexConversionTable(); 140 const G4MCCIndexConversionTable* converter << 141 = cutTable->GetMCCIndexConversionTable(); << 142 150 143 // check physics table size 151 // check physics table size 144 if ( tempTable->size() != converter->size()) << 152 if ( tempTable->size() != converter->size()){ 145 { << 153 #ifdef G4VERBOSE 146 G4ExceptionDescription ed; << 154 if (verboseLevel>0) { 147 ed << "Physics table in " << fileName << 155 G4cerr << "G4PhysicsTableHelper::RetrievePhysicsTable "; 148 << "\n size=" << tempTable->size() << << 156 G4cerr << "Size of the physics table in "<< fileName; 149 << " is inconsistent with material-cut- << 157 G4cerr << "( size =" << tempTable->size() << ")"; 150 << "size=" << converter->size() << " th << 158 G4cerr << " is inconsistent with material-cut info"; 151 G4Exception("G4ProductionCutsTable::Retrie << 159 G4cerr << "( size =" << converter->size() << ")"; 152 "ProcCuts106", JustWarning, ed << 160 G4cerr << G4endl; 153 delete tempTable; << 161 } >> 162 #endif 154 return false; 163 return false; 155 } 164 } 156 165 157 // fill the given physics table with retriev << 166 // fill the given physics table with retrived physics vectors 158 for (std::size_t idx=0; idx<converter->size( << 167 for (size_t idx=0; idx<converter->size(); idx++){ 159 { << 168 if (converter->IsUsed(idx)){ 160 if (converter->IsUsed(idx)) << 169 size_t i = converter->GetIndex(idx); 161 { << 162 G4int i = converter->GetIndex(idx); << 163 if(i < 0) << 164 { << 165 tempTable->clearAndDestroy(); << 166 delete tempTable; << 167 return false; << 168 } << 169 G4PhysicsVector* vec = (*physTable)[i]; 170 G4PhysicsVector* vec = (*physTable)[i]; 170 if (vec != nullptr ) delete vec; << 171 if (vec !=0 ) delete vec; 171 (*physTable)[i] = (*tempTable)[idx]; << 172 (*physTable)[i] = (*tempTable)[idx]; 172 physTable->ClearFlag(i); 173 physTable->ClearFlag(i); 173 } 174 } 174 } 175 } 175 tempTable->clear(); 176 tempTable->clear(); 176 delete tempTable; 177 delete tempTable; 177 178 178 return true; 179 return true; 179 } 180 } 180 181 181 // ------------------------------------------- << 182 182 void G4PhysicsTableHelper::SetPhysicsVector(G4 183 void G4PhysicsTableHelper::SetPhysicsVector(G4PhysicsTable* physTable, 183 st << 184 size_t idx, 184 G4 << 185 G4PhysicsVector* vec) 185 { 186 { 186 if ( physTable == nullptr) { return; } << 187 if ( physTable ==0) { return; } 187 188 188 if ( physTable->size() <= idx) << 189 if ( physTable->size() <= idx) { 189 { << 190 #ifdef G4VERBOSE 190 G4ExceptionDescription ed; << 191 if (verboseLevel>0) { 191 ed << "Given index (" << idx << ") exceed << 192 G4cerr << "G4PhysicsTableHelper::SetPhysicsVector "; 192 << "the size of the physics table " << 193 G4cerr << "Given index (" << idx << ") exceeds "; 193 << "( size =" << physTable->size() << " << 194 G4cerr << "size of the physics table "; 194 G4Exception("G4ProductionCutsTable::SetPhy << 195 G4cerr << "( size =" << physTable->size()<< ")"; 195 "ProcCuts107", << 196 G4cerr << G4endl; 196 JustWarning, ed); << 197 } >> 198 #endif 197 return; 199 return; 198 } 200 } 199 201 200 // set physics vector 202 // set physics vector 201 (*physTable)[idx] = vec; 203 (*physTable)[idx] = vec; 202 // clear flag 204 // clear flag 203 physTable->ClearFlag(idx); 205 physTable->ClearFlag(idx); 204 } << 206 205 207 206 // ------------------------------------------- << 207 void G4PhysicsTableHelper::SetVerboseLevel(G4i << 208 { << 209 if( !G4Threading::IsWorkerThread() ) verbose << 210 } 208 } 211 209 212 // ------------------------------------------- << 210 213 G4int G4PhysicsTableHelper::GetVerboseLevel() << 211 214 { << 212 215 return verboseLevel; << 216 } << 217 213