// // ******************************************************************** // * 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: G4EmSaturation.hh,v 1.8 2010/08/17 17:36:58 vnivanch Exp $ // GEANT4 tag $Name: emutils-V09-03-23 $ // // #ifndef G4EmSaturation_h #define G4EmSaturation_h 1 // ------------------------------------------------------------- // // GEANT4 Class header file // // // File name: G4EmSaturation // // Author: Vladimir Ivanchenko // // Creation date: 18.02.2008 // // Modifications: // // // Class Description: // Compution on saturation effect, which reduce visible energy // deposition at the step. Default implementation takes into // account Birks effect. Birks coefficients for some materials // from G4 database on materials are provided // // ------------------------------------------------------------- //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... #include "globals.hh" #include "G4Step.hh" #include "G4ParticleDefinition.hh" #include //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... class G4LossTableManager; class G4NistManager; class G4MaterialCutsCouple; class G4Material; class G4EmSaturation { public: G4EmSaturation(); virtual ~G4EmSaturation(); G4double VisibleEnergyDeposition(const G4ParticleDefinition*, const G4MaterialCutsCouple*, G4double length, G4double edepTotal, G4double edepNIEL = 0.0); inline G4double VisibleEnergyDeposition(const G4Step*); // find and Birks coefficient G4double FindG4BirksCoefficient(const G4Material*); inline void SetVerbose(G4int); // dump coeffitients used in run time void DumpBirksCoefficients(); // dump G4 list void DumpG4BirksCoefficients(); private: // hide assignment operator G4EmSaturation & operator=(const G4EmSaturation &right); G4EmSaturation(const G4EmSaturation&); G4double FindBirksCoefficient(const G4Material*); void Initialise(); const G4ParticleDefinition* electron; const G4ParticleDefinition* proton; G4LossTableManager* manager; G4NistManager* nist; // cash const G4Material* curMaterial; G4double curBirks; G4double curRatio; G4double curChargeSq; G4int verbose; G4int nMaterials; G4int nG4Birks; // list of materials used in run time std::vector matPointers; std::vector matNames; std::vector massFactors; std::vector effCharges; // list of G4 materials std::vector g4MatData; std::vector g4MatNames; }; inline void G4EmSaturation::SetVerbose(G4int val) { verbose = val; } inline G4double G4EmSaturation::VisibleEnergyDeposition( const G4Step* step) { G4Track* track = step->GetTrack(); return VisibleEnergyDeposition(track->GetParticleDefinition(), track->GetMaterialCutsCouple(), step->GetStepLength(), step->GetTotalEnergyDeposit(), step->GetNonIonizingEnergyDeposit()); } #endif