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 // $Id: G4ShellVacancy.hh >> 28 // GEANT4 tag $Name: 27 // 29 // 28 // Author: Elena Guardincerri (Elena.Guardince 30 // Author: Elena Guardincerri (Elena.Guardincerri@ge.infn.it) 29 // 31 // 30 // History: 32 // History: 31 // ----------- 33 // ----------- 32 // 21 Sept 2001 Elena Guardincerri Created 34 // 21 Sept 2001 Elena Guardincerri Created 33 // 25 Mar 2002 V.Ivanchenko Change 35 // 25 Mar 2002 V.Ivanchenko Change AverageNOfIonisations int->double 34 // 12 Apr 2003 V.Ivanchenko Migrade 36 // 12 Apr 2003 V.Ivanchenko Migrade to cut per region 35 // 16 Apr 2009 V.Ivanchenko Rename << 36 // 37 // 37 // ------------------------------------------- 38 // ------------------------------------------------------------------- 38 39 39 // Class description: 40 // Class description: 40 // Low Energy Electromagnetic Physics 41 // Low Energy Electromagnetic Physics 41 // Fluorescence in along step do it: determina 42 // Fluorescence in along step do it: determinates the number of ionizations 42 43 43 // ------------------------------------------- 44 // ------------------------------------------------------------------- 44 45 45 #ifndef G4SHELLVACANCY_HH 46 #ifndef G4SHELLVACANCY_HH 46 #define G4SHELLVACANCY_HH 1 47 #define G4SHELLVACANCY_HH 1 47 48 48 #include "globals.hh" 49 #include "globals.hh" 49 #include <vector> 50 #include <vector> 50 51 51 class G4VEMDataSet; 52 class G4VEMDataSet; 52 class G4MaterialCutsCouple; 53 class G4MaterialCutsCouple; 53 class G4Element; 54 class G4Element; 54 class G4ShellVacancy 55 class G4ShellVacancy 55 { 56 { 56 public: 57 public: 57 explicit G4ShellVacancy(); << 58 >> 59 G4ShellVacancy(); >> 60 58 ~G4ShellVacancy(); 61 ~G4ShellVacancy(); 59 62 60 std::vector<G4int> GenerateNumberOfIonisatio 63 std::vector<G4int> GenerateNumberOfIonisations(const G4MaterialCutsCouple* couple, 61 G4double incidentEnergy, 64 G4double incidentEnergy, 62 G4double eLoss) const; 65 G4double eLoss) const; 63 void AddXsiTable(G4VEMDataSet* p); << 66 >> 67 void AddXsiTable(G4VEMDataSet* set); 64 68 65 private: 69 private: >> 70 66 G4double AverageNOfIonisations(const G4Mater 71 G4double AverageNOfIonisations(const G4MaterialCutsCouple* couple, 67 G4int index, 72 G4int index, 68 G4double energy, 73 G4double energy, 69 G4double eLoss) const; 74 G4double eLoss) const; 70 75 71 std::vector<G4VEMDataSet*> xsis; 76 std::vector<G4VEMDataSet*> xsis; 72 }; 77 }; 73 78 74 #endif 79 #endif 75 80 76 81 77 82 78 83 79 84