Geant4 Cross Reference |
1 // 1 // 2 // ******************************************* 2 // ******************************************************************** 3 // * License and Disclaimer << 3 // * DISCLAIMER * 4 // * 4 // * * 5 // * The Geant4 software is copyright of th << 5 // * The following disclaimer summarizes all the specific disclaimers * 6 // * the Geant4 Collaboration. It is provided << 6 // * of contributors to this software. The specific disclaimers,which * 7 // * conditions of the Geant4 Software License << 7 // * govern, are listed with their locations in: * 8 // * LICENSE and available at http://cern.ch/ << 8 // * http://cern.ch/geant4/license * 9 // * include a list of copyright holders. << 10 // * 9 // * * 11 // * Neither the authors of this software syst 10 // * Neither the authors of this software system, nor their employing * 12 // * institutes,nor the agencies providing fin 11 // * institutes,nor the agencies providing financial support for this * 13 // * work make any representation or warran 12 // * work make any representation or warranty, express or implied, * 14 // * regarding this software system or assum 13 // * regarding this software system or assume any liability for its * 15 // * use. Please see the license in the file << 14 // * use. * 16 // * for the full disclaimer and the limitatio << 17 // * 15 // * * 18 // * This code implementation is the result << 16 // * This code implementation is the intellectual property of the * 19 // * technical work of the GEANT4 collaboratio << 17 // * GEANT4 collaboration. * 20 // * By using, copying, modifying or distri << 18 // * By copying, distributing or modifying the Program (or any work * 21 // * any work based on the software) you ag << 19 // * based on the Program) you indicate your acceptance of this * 22 // * use in resulting scientific publicati << 20 // * statement, and all its terms. * 23 // * acceptance of all terms of the Geant4 Sof << 24 // ******************************************* 21 // ******************************************************************** 25 // 22 // 26 // 23 // >> 24 // $Id: G4ShellVacancy.hh >> 25 // GEANT4 tag $Name: 27 // 26 // 28 // Author: Elena Guardincerri (Elena.Guardince 27 // Author: Elena Guardincerri (Elena.Guardincerri@ge.infn.it) 29 // 28 // 30 // History: 29 // History: 31 // ----------- 30 // ----------- 32 // 21 Sept 2001 Elena Guardincerri Created 31 // 21 Sept 2001 Elena Guardincerri Created 33 // 25 Mar 2002 V.Ivanchenko Change 32 // 25 Mar 2002 V.Ivanchenko Change AverageNOfIonisations int->double 34 // 12 Apr 2003 V.Ivanchenko Migrade 33 // 12 Apr 2003 V.Ivanchenko Migrade to cut per region 35 // 16 Apr 2009 V.Ivanchenko Rename << 36 // 34 // 37 // ------------------------------------------- 35 // ------------------------------------------------------------------- 38 36 39 // Class description: 37 // Class description: 40 // Low Energy Electromagnetic Physics 38 // Low Energy Electromagnetic Physics 41 // Fluorescence in along step do it: determina 39 // Fluorescence in along step do it: determinates the number of ionizations 42 40 43 // ------------------------------------------- 41 // ------------------------------------------------------------------- 44 42 45 #ifndef G4SHELLVACANCY_HH 43 #ifndef G4SHELLVACANCY_HH 46 #define G4SHELLVACANCY_HH 1 44 #define G4SHELLVACANCY_HH 1 47 45 48 #include "globals.hh" 46 #include "globals.hh" 49 #include <vector> 47 #include <vector> 50 48 51 class G4VEMDataSet; 49 class G4VEMDataSet; 52 class G4MaterialCutsCouple; 50 class G4MaterialCutsCouple; 53 class G4Element; 51 class G4Element; 54 class G4ShellVacancy 52 class G4ShellVacancy 55 { 53 { 56 public: 54 public: 57 explicit G4ShellVacancy(); << 55 >> 56 G4ShellVacancy(); >> 57 58 ~G4ShellVacancy(); 58 ~G4ShellVacancy(); 59 59 60 std::vector<G4int> GenerateNumberOfIonisatio 60 std::vector<G4int> GenerateNumberOfIonisations(const G4MaterialCutsCouple* couple, 61 G4double incidentEnergy, 61 G4double incidentEnergy, 62 G4double eLoss) const; 62 G4double eLoss) const; 63 void AddXsiTable(G4VEMDataSet* p); << 63 >> 64 void AddXsiTable(G4VEMDataSet* set); 64 65 65 private: 66 private: >> 67 66 G4double AverageNOfIonisations(const G4Mater 68 G4double AverageNOfIonisations(const G4MaterialCutsCouple* couple, 67 G4int index, 69 G4int index, 68 G4double energy, 70 G4double energy, 69 G4double eLoss) const; 71 G4double eLoss) const; 70 72 71 std::vector<G4VEMDataSet*> xsis; 73 std::vector<G4VEMDataSet*> xsis; 72 }; 74 }; 73 75 74 #endif 76 #endif 75 77 76 78 77 79 78 80 79 81