60 lines
1.7 KiB
C++
60 lines
1.7 KiB
C++
// This code implementation is the intellectual property of
|
|
// the GEANT4 collaboration.
|
|
//
|
|
// By copying, distributing or modifying the Program (or any work
|
|
// based on the Program) you indicate your acceptance of this statement,
|
|
// and all its terms.
|
|
//
|
|
// $Id: G4PolarizedComptonScattering.hh,v 1.4 2000/11/17 15:03:16 maire Exp $
|
|
// GEANT4 tag $Name: geant4-03-00 $
|
|
//
|
|
// --------- G4PolarizedComptonScattering physics process -----
|
|
// by Vicente Lara, March 1998
|
|
//
|
|
// ------------------------------------------------------------
|
|
|
|
// class description
|
|
//
|
|
// inherit from G4ComptonScattering
|
|
//
|
|
|
|
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
|
|
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
|
|
|
|
#ifndef G4PolarizedComptonScattering_h
|
|
#define G4PolarizedComptonScattering_h 1
|
|
|
|
#include "G4ComptonScattering.hh"
|
|
#include "G4EnergyLossTables.hh"
|
|
|
|
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
|
|
|
|
class G4PolarizedComptonScattering : public G4ComptonScattering
|
|
{
|
|
public: // with description
|
|
|
|
G4PolarizedComptonScattering(const G4String& processName = "polarCompt");
|
|
|
|
G4VParticleChange* PostStepDoIt(const G4Track& aTrack, const G4Step& aStep);
|
|
|
|
private:
|
|
|
|
G4ThreeVector SetNewPolarization(G4double, G4double,
|
|
G4double, G4double,
|
|
G4ThreeVector& );
|
|
|
|
G4double SetPhi(G4double, G4double, G4double, G4double);
|
|
|
|
|
|
void SystemOfRefChange(G4ThreeVector&, G4ThreeVector&, G4ThreeVector&,
|
|
G4ThreeVector&);
|
|
|
|
// hide assignment operator as private
|
|
G4PolarizedComptonScattering& operator=(const G4PolarizedComptonScattering &right);
|
|
G4PolarizedComptonScattering(const G4PolarizedComptonScattering& );
|
|
|
|
};
|
|
|
|
#endif
|
|
|