G4PolarizedPEEffectModel.hh

Go to the documentation of this file.
00001 //
00002 // ********************************************************************
00003 // * License and Disclaimer                                           *
00004 // *                                                                  *
00005 // * The  Geant4 software  is  copyright of the Copyright Holders  of *
00006 // * the Geant4 Collaboration.  It is provided  under  the terms  and *
00007 // * conditions of the Geant4 Software License,  included in the file *
00008 // * LICENSE and available at  http://cern.ch/geant4/license .  These *
00009 // * include a list of copyright holders.                             *
00010 // *                                                                  *
00011 // * Neither the authors of this software system, nor their employing *
00012 // * institutes,nor the agencies providing financial support for this *
00013 // * work  make  any representation or  warranty, express or implied, *
00014 // * regarding  this  software system or assume any liability for its *
00015 // * use.  Please see the license in the file  LICENSE  and URL above *
00016 // * for the full disclaimer and the limitation of liability.         *
00017 // *                                                                  *
00018 // * This  code  implementation is the result of  the  scientific and *
00019 // * technical work of the GEANT4 collaboration.                      *
00020 // * By using,  copying,  modifying or  distributing the software (or *
00021 // * any work based  on the software)  you  agree  to acknowledge its *
00022 // * use  in  resulting  scientific  publications,  and indicate your *
00023 // * acceptance of all terms of the Geant4 Software license.          *
00024 // ********************************************************************
00025 //
00026 // $Id: G4PolarizedPEEffectModel.hh 69847 2013-05-16 09:36:18Z gcosmo $
00027 //
00028 // -------------------------------------------------------------------
00029 //
00030 // GEANT4 Class header file
00031 //
00032 //
00033 // File name:     G4PolarizedPEEffectModel
00034 //
00035 // Author:        Andreas Schaelicke & Karim Laihem
00036 //
00037 // Creation date: 22.02.2007
00038 //
00039 // Modifications:
00040 // 02.08.2007 : adapt to design change in version 4.9 (AS)
00041 //
00042 //
00043 // Class Description:
00044 //
00045 // Implementation of polarization transfer in Photoelectric Effect
00046 // 
00047 
00048 // -------------------------------------------------------------------
00049 //
00050 
00051 #ifdef NOIONIZATIONAS
00052 #define G4PolarizedPEEffectModel_h 1
00053 #endif
00054 
00055 #ifndef G4PolarizedPEEffectModel_h
00056 #define G4PolarizedPEEffectModel_h 1
00057 
00058 #include "G4PEEffectFluoModel.hh"
00059 #include "G4StokesVector.hh"
00060 
00061 
00062 class G4PolarizedPEEffectCrossSection;
00063 
00064 class G4PolarizedPEEffectModel : public G4PEEffectFluoModel
00065 {
00066 
00067 public:
00068 
00069   G4PolarizedPEEffectModel(const G4ParticleDefinition* p = 0, 
00070                            const G4String& nam = "Polarized-PhotoElectric");
00071 
00072   void Initialise(const G4ParticleDefinition* pd, const G4DataVector& dv);
00073   virtual ~G4PolarizedPEEffectModel();
00074 
00075   virtual void SampleSecondaries(std::vector<G4DynamicParticle*>*,
00076                                  const G4MaterialCutsCouple*,
00077                                  const G4DynamicParticle*,
00078                                  G4double tmin,
00079                                  G4double maxEnergy);
00080 
00081   // polarized routines 
00082   /*
00083   inline void SetTargetPolarization(const G4ThreeVector & pTarget);
00084   inline void SetBeamPolarization(const G4ThreeVector & pBeam);
00085   inline const G4ThreeVector & GetTargetPolarization() const;
00086   inline const G4ThreeVector & GetBeamPolarization() const;
00087   inline const G4ThreeVector & GetFinalGammaPolarization() const;
00088   inline const G4ThreeVector & GetFinalElectronPolarization() const;
00089   */
00090 private:
00091 
00092   // hide assignment operator
00093   G4PolarizedPEEffectModel & operator=(const  G4PolarizedPEEffectModel &right);
00094   G4PolarizedPEEffectModel(const  G4PolarizedPEEffectModel&);
00095 
00096   G4PolarizedPEEffectCrossSection * crossSectionCalculator;
00097   // incomming
00098   G4StokesVector theBeamPolarization;    // photon
00099   // outgoing
00100   G4StokesVector finalElectronPolarization;
00101 
00102   G4int verboseLevel;
00103 };
00104 
00105 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
00106 
00107 
00108 #endif

Generated on Mon May 27 17:49:23 2013 for Geant4 by  doxygen 1.4.7