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