Files
geant4/source/processes/hadronic/models/im_r_matrix/include/G4AngularDistribution.hh
2016-06-09 14:44:26 +02:00

173 lines
4.2 KiB
C++

//
// ********************************************************************
// * License and Disclaimer *
// * *
// * The Geant4 software is copyright of the Copyright Holders of *
// * the Geant4 Collaboration. It is provided under the terms and *
// * conditions of the Geant4 Software License, included in the file *
// * LICENSE and available at http://cern.ch/geant4/license . These *
// * include a list of copyright holders. *
// * *
// * Neither the authors of this software system, nor their employing *
// * institutes,nor the agencies providing financial support for this *
// * work make any representation or warranty, express or implied, *
// * regarding this software system or assume any liability for its *
// * use. Please see the license in the file LICENSE and URL above *
// * for the full disclaimer and the limitation of liability. *
// * *
// * This code implementation is the result of the scientific and *
// * technical work of the GEANT4 collaboration. *
// * By using, copying, modifying or distributing the software (or *
// * any work based on the software) you agree to acknowledge its *
// * use in resulting scientific publications, and indicate your *
// * acceptance of all terms of the Geant4 Software license. *
// ********************************************************************
//
//
// Angular distribution according to:
// G. Mao et al., Phys. Rev. C57 (1998) 1938
// G. Mao et al., Phys. Rev. C53 (1996) 2933
//
// Id: G4AngularDistribution.hh,v 1.16 2000/05/11 19:07:29 pia Exp $ //
//
// -------------------------------------------------------------------
#ifndef G4ANGULARDISTRIBUTION_HH
#define G4ANGULARDISTRIBUTION_HH
#include "globals.hh"
#include "G4VAngularDistribution.hh"
class G4AngularDistribution : public G4VAngularDistribution
{
public:
// Constructors
G4AngularDistribution(G4bool symmetrize);
virtual ~G4AngularDistribution();
virtual G4double CosTheta(G4double s, G4double m1, G4double m2) const;
protected:
public: // for testing only...
G4double DifferentialCrossSection(G4double sIn, G4double m1, G4double m2, G4double cosTheta) const;
G4double Cross(G4double tpPion, G4double tpSigma, G4double tpOmega,
G4double tmPion, G4double tmSigma, G4double tmOmega,
G4double bMix_o1, G4double bMix_s1, G4double bMix_Omega,
G4double bMix_sm, G4double bMix_oL, G4double bMix_sL,
G4double bOmega_0, G4double bOmega_1, G4double bOmega_2,
G4double bOmega_3, G4double bOmega_m, G4double bOmega_L) const;
private:
G4bool sym;
// Model parameters
G4double mPion;
G4double mSigma;
G4double mOmega;
G4double cmPion;
G4double cmSigma;
G4double cmOmega;
G4double gPion;
G4double gSigma;
G4double gOmega;
G4double mNucleon;
// Variables for pion-Term
G4double m42;
G4double mPion2;
G4double cmPion2;
G4double dPion1;
G4double dPion2;
G4double cm6gp;
G4double cPion_3;
G4double cPion_2;
G4double cPion_1;
G4double cPion_m;
G4double cPion_L;
G4double cPion_0;
// Variables for sigma-Term
G4double mSigma2;
G4double cmSigma2;
G4double cmSigma4;
G4double cmSigma6;
G4double dSigma1;
G4double dSigma2;
G4double dSigma3;
G4double cm2gs;
G4double cSigma_3;
G4double cSigma_2;
G4double cSigma_1;
G4double cSigma_m;
G4double cSigma_L;
G4double cSigma_0;
// Variables for omega-Term
G4double mOmega2;
G4double cmOmega2;
G4double cmOmega4;
G4double cmOmega6;
G4double dOmega1;
G4double dOmega2;
G4double dOmega3;
G4double sOmega1;
G4double cm2go;
G4double cOmega_3;
G4double cOmega_2;
G4double cOmega_1;
G4double cOmega_m;
G4double cOmega_L;
// Variables for mix-Term
G4double fac1;
G4double dMix1;
G4double dMix2;
G4double dMix3;
G4double cMix_o1;
G4double cMix_s1;
G4double cMix_Omega;
G4double cMix_sm;
G4double fac2;
G4double fac3;
G4double cMix_oLc;
G4double cMix_oLs;
G4double cMix_sLc;
G4double cMix_sLs;
};
#endif