G4NeutronHPInelastic.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  // Hadronic Process: High Precision low E neutron tracking
00030  // original by H.P. Wellisch, TRIUMF, 14-Feb-97
00031  // Builds and has the Cross-section data for one material.
00032  
00033 #ifndef G4NeutronHPInelastic_h
00034 #define G4NeutronHPInelastic_h 1
00035 
00036 // Class Description
00037 // Final state production model for a high precision (based on evaluated data
00038 // libraries) description of neutron inelastic scattering below 20 MeV; 
00039 // 36 exclusive final states are consideded.
00040 // To be used in your physics list in case you need this physics.
00041 // In this case you want to register an object of this class with 
00042 // the corresponding process.
00043 // Class Description - End
00044 
00045 #include "globals.hh"
00046 #include "G4NeutronHPChannel.hh"
00047 #include "G4HadronicInteraction.hh"
00048 #include "G4NeutronHPChannelList.hh"
00049 
00050 #include "G4NeutronHP2AInelasticFS.hh"
00051 #include "G4NeutronHP2N2AInelasticFS.hh"
00052 #include "G4NeutronHP2NAInelasticFS.hh"
00053 #include "G4NeutronHP2NDInelasticFS.hh"
00054 #include "G4NeutronHP2NInelasticFS.hh"
00055 #include "G4NeutronHP2NPInelasticFS.hh"
00056 #include "G4NeutronHP2PInelasticFS.hh"
00057 #include "G4NeutronHP3AInelasticFS.hh"
00058 #include "G4NeutronHP3NAInelasticFS.hh"
00059 #include "G4NeutronHP3NInelasticFS.hh"
00060 #include "G4NeutronHP3NPInelasticFS.hh"
00061 #include "G4NeutronHP4NInelasticFS.hh"
00062 #include "G4NeutronHPAInelasticFS.hh"
00063 #include "G4NeutronHPD2AInelasticFS.hh"
00064 #include "G4NeutronHPDAInelasticFS.hh"
00065 #include "G4NeutronHPDInelasticFS.hh"
00066 #include "G4NeutronHPHe3InelasticFS.hh"
00067 #include "G4NeutronHPN2AInelasticFS.hh"
00068 #include "G4NeutronHPN2PInelasticFS.hh"
00069 #include "G4NeutronHPN3AInelasticFS.hh"
00070 #include "G4NeutronHPNAInelasticFS.hh"
00071 #include "G4NeutronHPND2AInelasticFS.hh"
00072 #include "G4NeutronHPNDInelasticFS.hh"
00073 #include "G4NeutronHPNHe3InelasticFS.hh"
00074 #include "G4NeutronHPNInelasticFS.hh"
00075 #include "G4NeutronHPNPAInelasticFS.hh"
00076 #include "G4NeutronHPNPInelasticFS.hh"
00077 #include "G4NeutronHPNT2AInelasticFS.hh"
00078 #include "G4NeutronHPNTInelasticFS.hh"
00079 #include "G4NeutronHPNXInelasticFS.hh"
00080 #include "G4NeutronHPPAInelasticFS.hh"
00081 #include "G4NeutronHPPDInelasticFS.hh"
00082 #include "G4NeutronHPPInelasticFS.hh"
00083 #include "G4NeutronHPPTInelasticFS.hh"
00084 #include "G4NeutronHPT2AInelasticFS.hh"
00085 #include "G4NeutronHPTInelasticFS.hh"
00086 
00087 class G4NeutronHPInelastic : public G4HadronicInteraction
00088 {
00089   public: 
00090   
00091   G4NeutronHPInelastic();
00092 
00093   ~G4NeutronHPInelastic();
00094   
00095   G4HadFinalState * ApplyYourself(const G4HadProjectile & aTrack, G4Nucleus & aTargetNucleus);
00096 
00097   virtual const std::pair<G4double, G4double> GetFatalEnergyCheckLevels() const;
00098 
00099   private:
00100   
00101   G4double * xSec;
00102   //G4NeutronHPChannelList * theInelastic; // one List per element
00103       std::vector<G4NeutronHPChannelList*> theInelastic; // one List per element
00104   G4String dirName;
00105   G4int numEle;
00106       void addChannelForNewElement();
00107   
00108   private:
00109   
00110    G4NeutronHP2AInelasticFS the2AFS;
00111    G4NeutronHP2N2AInelasticFS the2N2AFS;
00112    G4NeutronHP2NAInelasticFS the2NAFS;
00113    G4NeutronHP2NDInelasticFS the2NDFS;
00114    G4NeutronHP2NInelasticFS the2NFS;
00115    G4NeutronHP2NPInelasticFS the2NPFS;
00116    G4NeutronHP2PInelasticFS the2PFS;
00117    G4NeutronHP3AInelasticFS the3AFS;
00118    G4NeutronHP3NAInelasticFS the3NAFS;
00119    G4NeutronHP3NInelasticFS the3NFS;
00120    G4NeutronHP3NPInelasticFS the3NPFS;
00121    G4NeutronHP4NInelasticFS the4NFS;
00122    G4NeutronHPAInelasticFS theAFS;
00123    G4NeutronHPD2AInelasticFS theD2AFS;
00124    G4NeutronHPDAInelasticFS theDAFS;
00125    G4NeutronHPDInelasticFS theDFS;
00126    G4NeutronHPHe3InelasticFS theHe3FS;
00127    G4NeutronHPN2AInelasticFS theN2AFS;
00128    G4NeutronHPN2PInelasticFS theN2PFS;
00129    G4NeutronHPN3AInelasticFS theN3AFS;
00130    G4NeutronHPNAInelasticFS theNAFS;
00131    G4NeutronHPND2AInelasticFS theND2AFS;
00132    G4NeutronHPNDInelasticFS theNDFS;
00133    G4NeutronHPNHe3InelasticFS theNHe3FS;
00134    G4NeutronHPNInelasticFS theNFS;
00135    G4NeutronHPNPAInelasticFS theNPAFS;
00136    G4NeutronHPNPInelasticFS theNPFS;
00137    G4NeutronHPNT2AInelasticFS theNT2AFS;
00138    G4NeutronHPNTInelasticFS theNTFS;
00139    G4NeutronHPNXInelasticFS theNXFS;
00140    G4NeutronHPPAInelasticFS thePAFS;
00141    G4NeutronHPPDInelasticFS thePDFS;
00142    G4NeutronHPPInelasticFS thePFS;
00143    G4NeutronHPPTInelasticFS thePTFS;
00144    G4NeutronHPT2AInelasticFS theT2AFS;
00145    G4NeutronHPTInelasticFS theTFS;
00146 };
00147 
00148 #endif

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