Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 09:59:02

0001 //
0002 // ********************************************************************
0003 // * License and Disclaimer                                           *
0004 // *                                                                  *
0005 // * The  Geant4 software  is  copyright of the Copyright Holders  of *
0006 // * the Geant4 Collaboration.  It is provided  under  the terms  and *
0007 // * conditions of the Geant4 Software License,  included in the file *
0008 // * LICENSE and available at  http://cern.ch/geant4/license .  These *
0009 // * include a list of copyright holders.                             *
0010 // *                                                                  *
0011 // * Neither the authors of this software system, nor their employing *
0012 // * institutes,nor the agencies providing financial support for this *
0013 // * work  make  any representation or  warranty, express or implied, *
0014 // * regarding  this  software system or assume any liability for its *
0015 // * use.  Please see the license in the file  LICENSE  and URL above *
0016 // * for the full disclaimer and the limitation of liability.         *
0017 // *                                                                  *
0018 // * This  code  implementation is the result of  the  scientific and *
0019 // * technical work of the GEANT4 collaboration.                      *
0020 // * By using,  copying,  modifying or  distributing the software (or *
0021 // * any work based  on the software)  you  agree  to acknowledge its *
0022 // * use  in  resulting  scientific  publications,  and indicate your *
0023 // * acceptance of all terms of the Geant4 Software license.          *
0024 // ********************************************************************
0025 //
0026 //
0027 //---------------------------------------------------------------------------
0028 //
0029 // ClassName:   RegisterPhysLists
0030 //
0031 // Author: R. Hatcher 2014-10-15
0032 //
0033 // Modified:
0034 //
0035 //----------------------------------------------------------------------------
0036 
0037 #include "G4PhysListStamper.hh"
0038 
0039 #include "eASTPhysicsList.hh"
0040 G4_DECLARE_PHYSLIST_FACTORY(eASTPhysicsList);
0041 
0042 #include "FTFP_BERT.hh"
0043 G4_DECLARE_PHYSLIST_FACTORY(FTFP_BERT);
0044 
0045 #include "FTFP_BERT_HP.hh"
0046 G4_DECLARE_PHYSLIST_FACTORY(FTFP_BERT_HP);
0047 
0048 #include "FTFP_BERT_TRV.hh"
0049 G4_DECLARE_PHYSLIST_FACTORY(FTFP_BERT_TRV);
0050 
0051 #include "FTFP_BERT_ATL.hh"
0052 G4_DECLARE_PHYSLIST_FACTORY(FTFP_BERT_ATL);
0053 
0054 #include "FTFP_INCLXX.hh"
0055 G4_DECLARE_PHYSLIST_FACTORY(FTFP_INCLXX);
0056 
0057 #include "FTFP_INCLXX_HP.hh"
0058 G4_DECLARE_PHYSLIST_FACTORY(FTFP_INCLXX_HP);
0059 
0060 #include "FTF_BIC.hh"
0061 G4_DECLARE_PHYSLIST_FACTORY(FTF_BIC);
0062 
0063 #include "LBE.hh"
0064 G4_DECLARE_PHYSLIST_FACTORY(LBE);
0065 
0066 #include "QBBC.hh"
0067 G4_DECLARE_PHYSLIST_FACTORY(QBBC);
0068 
0069 #include "QGSP_BERT.hh"
0070 G4_DECLARE_PHYSLIST_FACTORY(QGSP_BERT);
0071 
0072 #include "QGSP_BERT_HP.hh"
0073 G4_DECLARE_PHYSLIST_FACTORY(QGSP_BERT_HP);
0074 
0075 #include "QGSP_BIC.hh"
0076 G4_DECLARE_PHYSLIST_FACTORY(QGSP_BIC);
0077 
0078 #include "QGSP_BIC_HP.hh"
0079 G4_DECLARE_PHYSLIST_FACTORY(QGSP_BIC_HP);
0080 
0081 #include "QGSP_FTFP_BERT.hh"
0082 G4_DECLARE_PHYSLIST_FACTORY(QGSP_FTFP_BERT);
0083 
0084 #include "QGS_BIC.hh"
0085 G4_DECLARE_PHYSLIST_FACTORY(QGS_BIC);
0086 
0087 #include "QGSP_INCLXX.hh"
0088 G4_DECLARE_PHYSLIST_FACTORY(QGSP_INCLXX);
0089 
0090 #include "QGSP_INCLXX_HP.hh"
0091 G4_DECLARE_PHYSLIST_FACTORY(QGSP_INCLXX_HP);
0092 
0093 #include "Shielding.hh"
0094 G4_DECLARE_PHYSLIST_FACTORY(Shielding);
0095 
0096 /*** no longer necessary as of 2017-12-07
0097 // some extra hoops because the physlist factory expects to be able
0098 // to construct a list using just a verbosity argument
0099 // but
0100 //   "ShieldingLEND" is Shielding(verbose,"LEND");
0101 //   "ShieldingM"    is Shielding(verbose,"HP","M");
0102 
0103 class ShieldingLEND : public Shielding
0104 {
0105 public:
0106   explicit ShieldingLEND(G4int verbose = 1) : Shielding(verbose,"LEND","") { ; }
0107   virtual ~ShieldingLEND() { ; }
0108 };
0109 G4_DECLARE_PHYSLIST_FACTORY(ShieldingLEND);
0110 ***/
0111 
0112 #include "ShieldingLEND.hh"
0113 G4_DECLARE_PHYSLIST_FACTORY(ShieldingLEND);
0114 
0115 class ShieldingM : public Shielding
0116 {
0117 public:
0118   explicit ShieldingM(G4int verbose = 1) : Shielding(verbose,"HP","M") { ; }
0119   virtual ~ShieldingM() { ; }
0120 };
0121 G4_DECLARE_PHYSLIST_FACTORY(ShieldingM);
0122 
0123 #include "NuBeam.hh"
0124 G4_DECLARE_PHYSLIST_FACTORY(NuBeam);
0125 
0126 // for __clang__ this this needs intercoms/include/G4AnyMethod.hh
0127 // to not attempt to defined remove_reference templates, but use std C++11
0128 #include "G4GenericPhysicsList.hh"
0129 G4_DECLARE_PHYSLIST_FACTORY(G4GenericPhysicsList);
0130 
0131 #include "QGSP_BIC_AllHP.hh"
0132 G4_DECLARE_PHYSLIST_FACTORY(QGSP_BIC_AllHP);
0133 
0134 #include "FTFQGSP_BERT.hh"
0135 G4_DECLARE_PHYSLIST_FACTORY(FTFQGSP_BERT);
0136 
0137 ////  should these also be included?
0138 
0139 /*
0140 #include "FTF_BIC.hh"
0141 G4_DECLARE_PHYSLIST_FACTORY(FTF_BIC);
0142 
0143 #include "QGS_BIC.hh"
0144 G4_DECLARE_PHYSLIST_FACTORY(QGS_BIC);
0145 */
0146 
0147 
0148 //