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 << 34 // 12 Apr 2003 V.Ivanchenko Migrade << 35 // 16 Apr 2009 V.Ivanchenko Rename << 36 // 32 // 37 // ------------------------------------------- 33 // ------------------------------------------------------------------- 38 34 39 // Class description: 35 // Class description: 40 // Low Energy Electromagnetic Physics 36 // Low Energy Electromagnetic Physics 41 // Fluorescence in along step do it: determina 37 // Fluorescence in along step do it: determinates the number of ionizations 42 38 43 // ------------------------------------------- 39 // ------------------------------------------------------------------- 44 40 45 #ifndef G4SHELLVACANCY_HH 41 #ifndef G4SHELLVACANCY_HH 46 #define G4SHELLVACANCY_HH 1 42 #define G4SHELLVACANCY_HH 1 47 43 48 #include "globals.hh" 44 #include "globals.hh" 49 #include <vector> << 45 #include "g4std/vector" >> 46 //#include "g4std/map" 50 47 51 class G4VEMDataSet; 48 class G4VEMDataSet; 52 class G4MaterialCutsCouple; << 49 class G4Material; 53 class G4Element; 50 class G4Element; 54 class G4ShellVacancy 51 class G4ShellVacancy 55 { 52 { 56 public: 53 public: 57 explicit G4ShellVacancy(); << 54 >> 55 G4ShellVacancy(); >> 56 58 ~G4ShellVacancy(); 57 ~G4ShellVacancy(); 59 << 58 60 std::vector<G4int> GenerateNumberOfIonisatio << 59 G4std::vector<G4int> GenerateNumberOfIonisations(const G4Material* material, 61 G4double incidentEnergy, << 60 G4double incidentEnergy, 62 G4double eLoss) const; 61 G4double eLoss) const; 63 void AddXsiTable(G4VEMDataSet* p); << 62 64 << 63 void AddXsiTable(G4VEMDataSet* set); >> 64 65 private: 65 private: 66 G4double AverageNOfIonisations(const G4Mater << 67 G4int index, << 68 G4double energy, << 69 G4double eLoss) const; << 70 66 71 std::vector<G4VEMDataSet*> xsis; << 67 G4int AverageNOfIonisations(const G4Material* material, >> 68 const G4Element* element, >> 69 G4double energy, >> 70 G4double eLoss) const; >> 71 >> 72 G4std::vector<G4VEMDataSet*> xsis; >> 73 72 }; 74 }; 73 75 74 #endif 76 #endif 75 77 76 78 77 79 78 80 79 81