G4HyperonLHEPBuilder.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: $
00027 //
00028 //---------------------------------------------------------------------------
00029 //
00030 // ClassName:   G4HyperonLHEPBuilder
00031 //
00032 // Author: 2011 J. Apostolakis
00033 //
00034 // Modified:
00035 //
00036 //----------------------------------------------------------------------------
00037 //
00038 #ifndef G4HyperonLHEPBuilder_h
00039 #define G4HyperonLHEPBuilder_h 1
00040 
00041 #include "globals.hh"
00042 
00043 #include "G4LambdaInelasticProcess.hh"
00044 #include "G4AntiLambdaInelasticProcess.hh"
00045 #include "G4SigmaPlusInelasticProcess.hh"
00046 #include "G4SigmaMinusInelasticProcess.hh"
00047 #include "G4AntiSigmaPlusInelasticProcess.hh"
00048 #include "G4AntiSigmaMinusInelasticProcess.hh"
00049 #include "G4XiZeroInelasticProcess.hh"
00050 #include "G4XiMinusInelasticProcess.hh"
00051 #include "G4AntiXiZeroInelasticProcess.hh"
00052 #include "G4AntiXiMinusInelasticProcess.hh"
00053 #include "G4OmegaMinusInelasticProcess.hh"
00054 #include "G4AntiOmegaMinusInelasticProcess.hh"
00055 
00056 #include "G4LELambdaInelastic.hh"
00057 #include "G4LEAntiLambdaInelastic.hh"
00058 #include "G4LESigmaPlusInelastic.hh"
00059 #include "G4LESigmaMinusInelastic.hh"
00060 #include "G4LEAntiSigmaPlusInelastic.hh"
00061 #include "G4LEAntiSigmaMinusInelastic.hh"
00062 #include "G4LEXiZeroInelastic.hh"
00063 #include "G4LEXiMinusInelastic.hh"
00064 #include "G4LEAntiXiZeroInelastic.hh"
00065 #include "G4LEAntiXiMinusInelastic.hh"
00066 #include "G4LEOmegaMinusInelastic.hh"
00067 #include "G4LEAntiOmegaMinusInelastic.hh"
00068 
00069 // High-energy Models
00070 
00071 #include "G4HELambdaInelastic.hh"
00072 #include "G4HEAntiLambdaInelastic.hh"
00073 #include "G4HESigmaPlusInelastic.hh"
00074 #include "G4HESigmaMinusInelastic.hh"
00075 #include "G4HEAntiSigmaPlusInelastic.hh"
00076 #include "G4HEAntiSigmaMinusInelastic.hh"
00077 #include "G4HEXiZeroInelastic.hh"
00078 #include "G4HEXiMinusInelastic.hh"
00079 #include "G4HEAntiXiZeroInelastic.hh"
00080 #include "G4HEAntiXiMinusInelastic.hh"
00081 #include "G4HEOmegaMinusInelastic.hh"
00082 #include "G4HEAntiOmegaMinusInelastic.hh"
00083 
00084 class G4HyperonLHEPBuilder 
00085 {
00086   public: 
00087     G4HyperonLHEPBuilder();
00088     virtual ~G4HyperonLHEPBuilder();
00089 
00090   public: 
00091     void Build();
00092 
00093   private:
00094  
00095     // Lambda
00096     G4LambdaInelasticProcess*  theLambdaInelastic;
00097     G4LELambdaInelastic*  theLELambdaModel;
00098     G4HELambdaInelastic*  theHELambdaModel;
00099 
00100     // AntiLambda
00101     G4AntiLambdaInelasticProcess*  theAntiLambdaInelastic;
00102     G4LEAntiLambdaInelastic*  theLEAntiLambdaModel;
00103     G4HEAntiLambdaInelastic*  theHEAntiLambdaModel;
00104 
00105     // SigmaMinus
00106     G4SigmaMinusInelasticProcess*  theSigmaMinusInelastic;
00107     G4LESigmaMinusInelastic*  theLESigmaMinusModel;
00108     G4HESigmaMinusInelastic*  theHESigmaMinusModel;
00109 
00110     // AntiSigmaMinus
00111     G4AntiSigmaMinusInelasticProcess*  theAntiSigmaMinusInelastic;
00112     G4LEAntiSigmaMinusInelastic*  theLEAntiSigmaMinusModel;
00113     G4HEAntiSigmaMinusInelastic*  theHEAntiSigmaMinusModel;
00114 
00115     // SigmaPlus
00116     G4SigmaPlusInelasticProcess*  theSigmaPlusInelastic;
00117     G4LESigmaPlusInelastic*  theLESigmaPlusModel;
00118     G4HESigmaPlusInelastic*  theHESigmaPlusModel;
00119 
00120     // AntiSigmaPlus
00121     G4AntiSigmaPlusInelasticProcess*  theAntiSigmaPlusInelastic;
00122     G4LEAntiSigmaPlusInelastic*  theLEAntiSigmaPlusModel;
00123     G4HEAntiSigmaPlusInelastic*  theHEAntiSigmaPlusModel;
00124 
00125     // XiZero
00126     G4XiZeroInelasticProcess*  theXiZeroInelastic;
00127     G4LEXiZeroInelastic*  theLEXiZeroModel;
00128     G4HEXiZeroInelastic*  theHEXiZeroModel;
00129 
00130     // AntiXiZero
00131     G4AntiXiZeroInelasticProcess*  theAntiXiZeroInelastic;
00132     G4LEAntiXiZeroInelastic*  theLEAntiXiZeroModel;
00133     G4HEAntiXiZeroInelastic*  theHEAntiXiZeroModel;
00134 
00135     // XiMinus
00136     G4XiMinusInelasticProcess*  theXiMinusInelastic;
00137     G4LEXiMinusInelastic*  theLEXiMinusModel;
00138     G4HEXiMinusInelastic*  theHEXiMinusModel;
00139 
00140     // AntiXiMinus
00141     G4AntiXiMinusInelasticProcess*  theAntiXiMinusInelastic;
00142     G4LEAntiXiMinusInelastic*  theLEAntiXiMinusModel;
00143     G4HEAntiXiMinusInelastic*  theHEAntiXiMinusModel;
00144 
00145     // OmegaMinus
00146     G4OmegaMinusInelasticProcess*  theOmegaMinusInelastic;
00147     G4LEOmegaMinusInelastic*  theLEOmegaMinusModel;
00148     G4HEOmegaMinusInelastic*  theHEOmegaMinusModel;
00149 
00150     // AntiOmegaMinus
00151     G4AntiOmegaMinusInelasticProcess*  theAntiOmegaMinusInelastic;
00152     G4LEAntiOmegaMinusInelastic*  theLEAntiOmegaMinusModel;
00153     G4HEAntiOmegaMinusInelastic*  theHEAntiOmegaMinusModel;
00154 
00155     G4bool wasActivated;
00156 };
00157 // Created from G4MiscLHEPBuilder.  February 2011
00158 
00159 #endif

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