// // ******************************************************************** // * License and Disclaimer * // * * // * The Geant4 software is copyright of the Copyright Holders of * // * the Geant4 Collaboration. It is provided under the terms and * // * conditions of the Geant4 Software License, included in the file * // * LICENSE and available at http://cern.ch/geant4/license . These * // * include a list of copyright holders. * // * * // * Neither the authors of this software system, nor their employing * // * institutes,nor the agencies providing financial support for this * // * work make any representation or warranty, express or implied, * // * regarding this software system or assume any liability for its * // * use. Please see the license in the file LICENSE and URL above * // * for the full disclaimer and the limitation of liability. * // * * // * This code implementation is the result of the scientific and * // * technical work of the GEANT4 collaboration. * // * By using, copying, modifying or distributing the software (or * // * any work based on the software) you agree to acknowledge its * // * use in resulting scientific publications, and indicate your * // * acceptance of all terms of the Geant4 Software license. * // ******************************************************************** // // $Id: G4LossTableBuilder.cc,v 1.28 2009/02/18 16:24:47 vnivanch Exp $ // GEANT4 tag $Name: geant4-09-02-ref-02 $ // // ------------------------------------------------------------------- // // GEANT4 Class file // // // File name: G4LossTableBuilder // // Author: Vladimir Ivanchenko // // Creation date: 03.01.2002 // // Modifications: // // 23-01-03 V.Ivanchenko Cut per region // 21-07-04 V.Ivanchenko Fix problem of range for dedx=0 // 08-11-04 Migration to new interface of Store/Retrieve tables (V.Ivanchenko) // 07-12-04 Fix of BuildDEDX table (V.Ivanchenko) // 27-03-06 Add bool options isIonisation (V.Ivanchenko) // 16-01-07 Fill new (not old) DEDX table (V.Ivanchenko) // 12-02-07 Use G4LPhysicsFreeVector for the inverse range table (V.Ivanchenko) // // Class Description: // // ------------------------------------------------------------------- // //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... #include "G4LossTableBuilder.hh" #include "G4PhysicsTable.hh" #include "G4PhysicsLogVector.hh" #include "G4PhysicsTableHelper.hh" #include "G4LPhysicsFreeVector.hh" //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... G4LossTableBuilder::G4LossTableBuilder() { splineFlag = true; } //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... G4LossTableBuilder::~G4LossTableBuilder() {} //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... void G4LossTableBuilder::BuildDEDXTable(G4PhysicsTable* dedxTable, const std::vector& list) { size_t n_processes = list.size(); if(1 >= n_processes) return; size_t n_vectors = (list[0])->length(); if(0 >= n_vectors) return; G4bool b; G4PhysicsVector* pv = (*(list[0]))[0]; size_t nbins = pv->GetVectorLength(); G4double elow = pv->GetLowEdgeEnergy(0); G4double ehigh = pv->GetLowEdgeEnergy(nbins); for (size_t i=0; iSetSpline(splineFlag); for (size_t j=0; jGetLowEdgeEnergy(j); for (size_t k=0; kGetValue(energy, b); } pv->PutValue(j, dedx); G4PhysicsTableHelper::SetPhysicsVector(dedxTable, i, pv); } } } //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... void G4LossTableBuilder::BuildRangeTable(const G4PhysicsTable* dedxTable, G4PhysicsTable* rangeTable, G4bool isIonisation) // Build range table from the energy loss table { size_t n_vectors = dedxTable->length(); if(!n_vectors) return; G4bool b; size_t n = 100; G4double del = 1.0/(G4double)n; for (size_t i=0; iGetFlag(i) || !isIonisation) { G4PhysicsVector* pv = (*dedxTable)[i]; size_t nbins = pv->GetVectorLength(); size_t bin0 = 0; G4double elow = pv->GetLowEdgeEnergy(0); G4double ehigh = pv->GetLowEdgeEnergy(nbins); G4double dedx1 = pv->GetValue(elow, b); //G4cout << "nbins= " << nbins << " dedx1= " << dedx1 << G4endl; // protection for specific cases dedx=0 if(dedx1 == 0.0) { for (size_t k=1; kGetLowEdgeEnergy(k); dedx1 = pv->GetValue(elow, b); if(dedx1 > 0.0) break; } nbins -= bin0; } //G4cout << "nbins= " << nbins << " elow= " << elow << " ehigh= " << ehigh << G4endl; // initialisation of a new vector G4PhysicsLogVector* v = new G4PhysicsLogVector(elow, ehigh, nbins); // dedx is exect zero if(nbins <= 2) { v->PutValue(0,1000.); v->PutValue(1,2000.); G4PhysicsTableHelper::SetPhysicsVector(rangeTable, i, v); return; } v->SetSpline(splineFlag); // assumed dedx proportional to beta G4double range = 2.*elow/dedx1; v->PutValue(0,range); G4double energy1 = elow; for (size_t j=1; jGetLowEdgeEnergy(j+bin0); G4double de = (energy2 - energy1) * del; G4double energy = energy2 + de*0.5; for (size_t k=0; kGetValue(energy, b); if(dedx1 > 0.0) range += de/dedx1; } // G4cout << "Range i= " <