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 // ------------------------------------------------------------------- 27 // 28 // 28 // Geant4 Class header file << 29 // GEANT4 Class header file >> 30 // 29 // 31 // 30 // File name: G4PolarizedGammaConversionMo 32 // File name: G4PolarizedGammaConversionModel 31 // 33 // 32 // Author: Karim Laihem 34 // Author: Karim Laihem 33 // 35 // >> 36 // Creation date: 19.04.2005 >> 37 // >> 38 // Modifications: >> 39 // 21-08-06 Modified to work in g4.8.1 framework (A.Schaelicke) >> 40 // 34 // Class Description: 41 // Class Description: 35 // Implementation of gamma conversion to e+e << 42 // 36 // including polarization transfer << 43 // Implementation of gamma convertion to e+e- in the field of a nucleus >> 44 // including polarization transfer >> 45 37 // ------------------------------------------- 46 // ------------------------------------------------------------------- >> 47 // 38 48 39 #ifndef G4PolarizedGammaConversionModel_h 49 #ifndef G4PolarizedGammaConversionModel_h 40 #define G4PolarizedGammaConversionModel_h 1 50 #define G4PolarizedGammaConversionModel_h 1 41 51 42 #include "G4BetheHeitlerModel.hh" 52 #include "G4BetheHeitlerModel.hh" >> 53 #include "G4PhysicsTable.hh" 43 54 44 class G4DynamicParticle; << 45 class G4Element; << 46 class G4MaterialCutsCouple; << 47 class G4ParticleChangeForGamma; 55 class G4ParticleChangeForGamma; 48 class G4ParticleDefinition; << 56 class G4VPolarizedCrossSection; 49 class G4PolarizedGammaConversionXS; << 50 << 51 class G4PolarizedGammaConversionModel : public 57 class G4PolarizedGammaConversionModel : public G4BetheHeitlerModel 52 { 58 { 53 public: << 54 explicit G4PolarizedGammaConversionModel( << 55 const G4ParticleDefinition* p = nullptr, c << 56 59 57 virtual ~G4PolarizedGammaConversionModel() o << 60 public: >> 61 >> 62 explicit G4PolarizedGammaConversionModel(const G4ParticleDefinition* p = nullptr, >> 63 const G4String& nam = "polConv"); 58 64 59 virtual void Initialise(const G4ParticleDefi << 65 virtual ~G4PolarizedGammaConversionModel(); 60 const G4DataVector&) << 66 >> 67 virtual void Initialise(const G4ParticleDefinition*, const G4DataVector&) override; 61 68 62 virtual void SampleSecondaries(std::vector<G 69 virtual void SampleSecondaries(std::vector<G4DynamicParticle*>*, 63 const G4Mater << 70 const G4MaterialCutsCouple*, 64 const G4Dynam << 71 const G4DynamicParticle*, 65 G4double maxE << 72 G4double tmin, >> 73 G4double maxEnergy) override; 66 74 67 inline const G4Element* SelectedAtom(); 75 inline const G4Element* SelectedAtom(); 68 76 69 G4PolarizedGammaConversionModel& operator=( << 77 protected: 70 const G4PolarizedGammaConversionModel& rig << 78 G4VPolarizedCrossSection* crossSectionCalculator; 71 G4PolarizedGammaConversionModel(const G4Pola << 72 delete; << 73 79 74 private: << 75 G4PolarizedGammaConversionXS* fCrossSectionC << 76 }; 80 }; 77 81 >> 82 >> 83 78 //....oooOO0OOooo........oooOO0OOooo........oo 84 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... >> 85 79 inline const G4Element* G4PolarizedGammaConver 86 inline const G4Element* G4PolarizedGammaConversionModel::SelectedAtom() 80 { 87 { 81 return GetCurrentElement(); 88 return GetCurrentElement(); 82 } 89 } >> 90 >> 91 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... 83 92 84 #endif 93 #endif 85 94