G4MiscBuilder.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 // GEANT4 tag $Name: not supported by cvs2svn $
00027 //
00028 //---------------------------------------------------------------------------
00029 //
00030 // ClassName:    G4MiscBuilder
00031 //
00032 // Author:       31-Oct-2012 A. Ribon
00033 //
00034 // Description:  Modified version of G4MiscLHEPBuidler
00035 //               with the new (better) hadronic cross sections
00036 //
00037 // Modified:
00038 //
00039 //----------------------------------------------------------------------------
00040 //
00041 #ifndef G4MiscBuilder_h
00042 #define G4MiscBuilder_h 1
00043 
00044 #include "globals.hh"
00045 
00046 #include "G4AntiProtonInelasticProcess.hh"
00047 #include "G4AntiNeutronInelasticProcess.hh"
00048 #include "G4LambdaInelasticProcess.hh"
00049 #include "G4AntiLambdaInelasticProcess.hh"
00050 #include "G4SigmaPlusInelasticProcess.hh"
00051 #include "G4SigmaMinusInelasticProcess.hh"
00052 #include "G4AntiSigmaPlusInelasticProcess.hh"
00053 #include "G4AntiSigmaMinusInelasticProcess.hh"
00054 #include "G4XiZeroInelasticProcess.hh"
00055 #include "G4XiMinusInelasticProcess.hh"
00056 #include "G4AntiXiZeroInelasticProcess.hh"
00057 #include "G4AntiXiMinusInelasticProcess.hh"
00058 #include "G4OmegaMinusInelasticProcess.hh"
00059 #include "G4AntiOmegaMinusInelasticProcess.hh"
00060 
00061 #include "G4LEAntiProtonInelastic.hh"
00062 #include "G4LEAntiNeutronInelastic.hh"
00063 #include "G4LELambdaInelastic.hh"
00064 #include "G4LEAntiLambdaInelastic.hh"
00065 #include "G4LESigmaPlusInelastic.hh"
00066 #include "G4LESigmaMinusInelastic.hh"
00067 #include "G4LEAntiSigmaPlusInelastic.hh"
00068 #include "G4LEAntiSigmaMinusInelastic.hh"
00069 #include "G4LEXiZeroInelastic.hh"
00070 #include "G4LEXiMinusInelastic.hh"
00071 #include "G4LEAntiXiZeroInelastic.hh"
00072 #include "G4LEAntiXiMinusInelastic.hh"
00073 #include "G4LEOmegaMinusInelastic.hh"
00074 #include "G4LEAntiOmegaMinusInelastic.hh"
00075 
00076 // High-energy Models
00077 
00078 #include "G4HEAntiProtonInelastic.hh"
00079 #include "G4HEAntiNeutronInelastic.hh"
00080 #include "G4HELambdaInelastic.hh"
00081 #include "G4HEAntiLambdaInelastic.hh"
00082 #include "G4HESigmaPlusInelastic.hh"
00083 #include "G4HESigmaMinusInelastic.hh"
00084 #include "G4HEAntiSigmaPlusInelastic.hh"
00085 #include "G4HEAntiSigmaMinusInelastic.hh"
00086 #include "G4HEXiZeroInelastic.hh"
00087 #include "G4HEXiMinusInelastic.hh"
00088 #include "G4HEAntiXiZeroInelastic.hh"
00089 #include "G4HEAntiXiMinusInelastic.hh"
00090 #include "G4HEOmegaMinusInelastic.hh"
00091 #include "G4HEAntiOmegaMinusInelastic.hh"
00092 
00093 #include "G4CrossSectionInelastic.hh"
00094 
00095 
00096 class G4MiscBuilder 
00097 {
00098   public: 
00099     G4MiscBuilder();
00100     virtual ~G4MiscBuilder();
00101 
00102   public: 
00103     void Build();
00104 
00105   private:
00106  
00107     G4CrossSectionInelastic* theAntiNucleonData;
00108     G4VCrossSectionDataSet* theChipsInelastic;
00109     
00110     // anti-proton
00111     G4AntiProtonInelasticProcess* theAntiProtonInelastic;
00112     G4LEAntiProtonInelastic* theLEAntiProtonModel;
00113     G4HEAntiProtonInelastic* theHEAntiProtonModel;
00114 
00115     // anti-neutron
00116     G4AntiNeutronInelasticProcess*  theAntiNeutronInelastic;
00117     G4LEAntiNeutronInelastic* theLEAntiNeutronModel;
00118     G4HEAntiNeutronInelastic* theHEAntiNeutronModel;
00119 
00120     // Lambda
00121     G4LambdaInelasticProcess*  theLambdaInelastic;
00122     G4LELambdaInelastic*  theLELambdaModel;
00123     G4HELambdaInelastic*  theHELambdaModel;
00124 
00125     // AntiLambda
00126     G4AntiLambdaInelasticProcess*  theAntiLambdaInelastic;
00127     G4LEAntiLambdaInelastic*  theLEAntiLambdaModel;
00128     G4HEAntiLambdaInelastic*  theHEAntiLambdaModel;
00129 
00130     // SigmaMinus
00131     G4SigmaMinusInelasticProcess*  theSigmaMinusInelastic;
00132     G4LESigmaMinusInelastic*  theLESigmaMinusModel;
00133     G4HESigmaMinusInelastic*  theHESigmaMinusModel;
00134 
00135     // AntiSigmaMinus
00136     G4AntiSigmaMinusInelasticProcess*  theAntiSigmaMinusInelastic;
00137     G4LEAntiSigmaMinusInelastic*  theLEAntiSigmaMinusModel;
00138     G4HEAntiSigmaMinusInelastic*  theHEAntiSigmaMinusModel;
00139 
00140     // SigmaPlus
00141     G4SigmaPlusInelasticProcess*  theSigmaPlusInelastic;
00142     G4LESigmaPlusInelastic*  theLESigmaPlusModel;
00143     G4HESigmaPlusInelastic*  theHESigmaPlusModel;
00144 
00145     // AntiSigmaPlus
00146     G4AntiSigmaPlusInelasticProcess*  theAntiSigmaPlusInelastic;
00147     G4LEAntiSigmaPlusInelastic*  theLEAntiSigmaPlusModel;
00148     G4HEAntiSigmaPlusInelastic*  theHEAntiSigmaPlusModel;
00149 
00150     // XiZero
00151     G4XiZeroInelasticProcess*  theXiZeroInelastic;
00152     G4LEXiZeroInelastic*  theLEXiZeroModel;
00153     G4HEXiZeroInelastic*  theHEXiZeroModel;
00154 
00155     // AntiXiZero
00156     G4AntiXiZeroInelasticProcess*  theAntiXiZeroInelastic;
00157     G4LEAntiXiZeroInelastic*  theLEAntiXiZeroModel;
00158     G4HEAntiXiZeroInelastic*  theHEAntiXiZeroModel;
00159 
00160     // XiMinus
00161     G4XiMinusInelasticProcess*  theXiMinusInelastic;
00162     G4LEXiMinusInelastic*  theLEXiMinusModel;
00163     G4HEXiMinusInelastic*  theHEXiMinusModel;
00164 
00165     // AntiXiMinus
00166     G4AntiXiMinusInelasticProcess*  theAntiXiMinusInelastic;
00167     G4LEAntiXiMinusInelastic*  theLEAntiXiMinusModel;
00168     G4HEAntiXiMinusInelastic*  theHEAntiXiMinusModel;
00169 
00170     // OmegaMinus
00171     G4OmegaMinusInelasticProcess*  theOmegaMinusInelastic;
00172     G4LEOmegaMinusInelastic*  theLEOmegaMinusModel;
00173     G4HEOmegaMinusInelastic*  theHEOmegaMinusModel;
00174 
00175     // AntiOmegaMinus
00176     G4AntiOmegaMinusInelasticProcess*  theAntiOmegaMinusInelastic;
00177     G4LEAntiOmegaMinusInelastic*  theLEAntiOmegaMinusModel;
00178     G4HEAntiOmegaMinusInelastic*  theHEAntiOmegaMinusModel;
00179 
00180     G4bool wasActivated;
00181 };
00182 
00183 #endif

Generated on Mon May 27 17:48:52 2013 for Geant4 by  doxygen 1.4.7