G4NeutronHPKallbachMannSyst.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 //
00027 // $Id$
00028 //
00029 #ifndef G4NeutronHPKallbachMannSyst_h
00030 #define G4NeutronHPKallbachMannSyst_h 1
00031 
00032 #include "globals.hh"
00033 
00034 class G4NeutronHPKallbachMannSyst
00035 {
00036   public:
00037   
00038    G4NeutronHPKallbachMannSyst(G4double aCompoundFraction,
00039                                G4double anIncidentEnergy, G4double anIncidentMass,
00040                                G4double aProductEnergy, G4double aProductMass,
00041                                G4double aResidualMass, G4int aResidualA, G4int aResidualZ,
00042                                G4double aTargetMass, G4int aTargetA, G4int aTargetZ)
00043   {
00044     theCompoundFraction = aCompoundFraction;
00045     theIncidentEnergy = anIncidentEnergy;
00046     theIncidentMass = anIncidentMass;
00047     theProductEnergy = aProductEnergy;
00048     theProductMass = aProductMass;
00049     theResidualMass = aResidualMass;
00050     theResidualA = aResidualA;
00051     theResidualZ = aResidualZ;
00052     theTargetMass = aTargetMass;
00053     theTargetA = aTargetA;
00054     theTargetZ = aTargetZ;
00055   }
00056   
00057   ~G4NeutronHPKallbachMannSyst() {};
00058   
00059   G4double Sample(G4double anEnergy);
00060   
00061   G4double Kallbach(G4double cosTh, G4double anEnergy);
00062   
00063   G4double GetKallbachZero(G4double anEnergy);
00064   
00065   G4double A(G4double anEnergy);
00066   
00067   G4double SeparationEnergy(G4int Ac, G4int Nc, G4int AA, G4int ZA);
00068   
00069   private:
00070   
00071   G4double theCompoundFraction;
00072   G4double theIncidentEnergy;
00073   G4double theIncidentMass;
00074   G4double theProductEnergy;
00075   G4double theProductMass;
00076   G4double theResidualMass;
00077   G4double theTargetMass;
00078   G4int theResidualA;
00079   G4int theResidualZ;
00080   G4int theTargetA;
00081   G4int theTargetZ;
00082 };
00083 
00084 #endif

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