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: G4ComptonScattering.hh,v 1.15 2005/05/12 11:06:42 vnivanch Exp $ >> 25 // GEANT4 tag $Name: geant4-07-01 $ >> 26 // 27 //------------------ G4ComptonScattering physi 27 //------------------ G4ComptonScattering physics process ----------------------- 28 // by Michel Maire, April 19 28 // by Michel Maire, April 1996 29 // 29 // 30 // 10-06-96, updated by M.Maire 30 // 10-06-96, updated by M.Maire 31 // 21-06-96, SetCuts implementation, M.Maire 31 // 21-06-96, SetCuts implementation, M.Maire 32 // 06-01-97, crossection table + meanfreepath 32 // 06-01-97, crossection table + meanfreepath table, M.Maire 33 // 17-02-97, New Physics scheme 33 // 17-02-97, New Physics scheme 34 // 25-02-97, GetMeanFreePath() now is public f 34 // 25-02-97, GetMeanFreePath() now is public function 35 // 12-03-97, new physics scheme again 35 // 12-03-97, new physics scheme again 36 // 13-08-98, new methods SetBining() PrintInf 36 // 13-08-98, new methods SetBining() PrintInfo() 37 // 03-08-01, new methods Store/Retrieve Physic 37 // 03-08-01, new methods Store/Retrieve PhysicsTable (mma) 38 // 06-08-01, BuildThePhysicsTable() called fro 38 // 06-08-01, BuildThePhysicsTable() called from constructor (mma) 39 // 19-09-01, come back to previous ProcessName 39 // 19-09-01, come back to previous ProcessName "compt" 40 // 20-09-01, DoIt: fminimalEnergy = 1*eV (mma) 40 // 20-09-01, DoIt: fminimalEnergy = 1*eV (mma) 41 // 01-10-01, come back to BuildPhysicsTable(co 41 // 01-10-01, come back to BuildPhysicsTable(const G4ParticleDefinition&) 42 // 13-08-04, suppress icc file; make public Co 42 // 13-08-04, suppress icc file; make public ComputeCrossSectionPerAtom() (mma) 43 // 09-11-04, Remove Retrieve tables (V.Ivantch 43 // 09-11-04, Remove Retrieve tables (V.Ivantchenko) 44 // 15-03-05, Redesign - use G4VEmProcess inter 44 // 15-03-05, Redesign - use G4VEmProcess interface (V.Ivantchenko) 45 // 04-05-05, Make class to be default (V.Ivanc 45 // 04-05-05, Make class to be default (V.Ivanchenko) 46 // 09-09-06, modify SetModel(G4VEmModel*) (mma << 47 // 12-09-06, move SetModel(G4VEmModel*) in G4V << 48 // ------------------------------------------- 46 // ----------------------------------------------------------------------------- 49 47 50 // class description 48 // class description 51 // 49 // 52 50 53 //....oooOO0OOooo........oooOO0OOooo........oo 51 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 54 //....oooOO0OOooo........oooOO0OOooo........oo 52 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 55 53 56 #ifndef G4ComptonScattering_h 54 #ifndef G4ComptonScattering_h 57 #define G4ComptonScattering_h 1 55 #define G4ComptonScattering_h 1 58 56 59 #include "globals.hh" 57 #include "globals.hh" 60 #include "G4VEmProcess.hh" 58 #include "G4VEmProcess.hh" 61 #include "G4Gamma.hh" 59 #include "G4Gamma.hh" 62 60 63 //....oooOO0OOooo........oooOO0OOooo........oo 61 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 64 62 65 class G4ParticleDefinition; 63 class G4ParticleDefinition; 66 class G4VEmModel; 64 class G4VEmModel; 67 class G4MaterialCutsCouple; 65 class G4MaterialCutsCouple; 68 class G4DynamicParticle; 66 class G4DynamicParticle; 69 67 70 class G4ComptonScattering : public G4VEmProces 68 class G4ComptonScattering : public G4VEmProcess 71 69 72 { 70 { 73 public: // with description 71 public: // with description 74 72 75 explicit G4ComptonScattering(const G4String& << 73 G4ComptonScattering(const G4String& processName ="compt", 76 G4ProcessType type = fElectromagn << 74 G4ProcessType type = fElectromagnetic); 77 75 78 ~G4ComptonScattering() override; << 76 virtual ~G4ComptonScattering(); 79 77 80 // true for Gamma only. 78 // true for Gamma only. 81 G4bool IsApplicable(const G4ParticleDefiniti << 79 G4bool IsApplicable(const G4ParticleDefinition&); 82 << 80 83 // print description in html << 81 // Print few lines of informations about the process: validity range, 84 void ProcessDescription(std::ostream&) const << 82 virtual void PrintInfo(); 85 83 86 G4ComptonScattering & operator=(const G4Com << 84 void SetModel(const G4String& name); 87 G4ComptonScattering(const G4ComptonScatteri << 88 85 89 protected: 86 protected: 90 87 91 void InitialiseProcess(const G4ParticleDefin << 88 virtual void InitialiseProcess(const G4ParticleDefinition*); >> 89 >> 90 std::vector<G4DynamicParticle*>* SecondariesPostStep( >> 91 G4VEmModel*, >> 92 const G4MaterialCutsCouple*, >> 93 const G4DynamicParticle*); 92 94 93 private: 95 private: >> 96 >> 97 // hide assignment operator as private >> 98 G4ComptonScattering& operator=(const G4ComptonScattering &right); >> 99 G4ComptonScattering(const G4ComptonScattering& ); 94 100 95 G4bool isInitialised = false; << 101 G4bool isInitialised; >> 102 G4VEmModel* selectedModel; >> 103 G4int mType; 96 }; 104 }; >> 105 >> 106 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... >> 107 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... >> 108 >> 109 inline G4bool G4ComptonScattering::IsApplicable(const G4ParticleDefinition& p) >> 110 { >> 111 return (&p == G4Gamma::Gamma()); >> 112 } >> 113 >> 114 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... >> 115 >> 116 inline std::vector<G4DynamicParticle*>* G4ComptonScattering::SecondariesPostStep( >> 117 G4VEmModel* model, >> 118 const G4MaterialCutsCouple* couple, >> 119 const G4DynamicParticle* dp) >> 120 { >> 121 return model->SampleSecondaries(couple, dp); >> 122 } 97 123 98 //....oooOO0OOooo........oooOO0OOooo........oo 124 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 99 125 100 #endif 126 #endif 101 127 102 128