Geant4  10.01
G4RegisterPhysLists.cc
Go to the documentation of this file.
1 //
2 // ********************************************************************
3 // * License and Disclaimer *
4 // * *
5 // * The Geant4 software is copyright of the Copyright Holders of *
6 // * the Geant4 Collaboration. It is provided under the terms and *
7 // * conditions of the Geant4 Software License, included in the file *
8 // * LICENSE and available at http://cern.ch/geant4/license . These *
9 // * include a list of copyright holders. *
10 // * *
11 // * Neither the authors of this software system, nor their employing *
12 // * institutes,nor the agencies providing financial support for this *
13 // * work make any representation or warranty, express or implied, *
14 // * regarding this software system or assume any liability for its *
15 // * use. Please see the license in the file LICENSE and URL above *
16 // * for the full disclaimer and the limitation of liability. *
17 // * *
18 // * This code implementation is the result of the scientific and *
19 // * technical work of the GEANT4 collaboration. *
20 // * By using, copying, modifying or distributing the software (or *
21 // * any work based on the software) you agree to acknowledge its *
22 // * use in resulting scientific publications, and indicate your *
23 // * acceptance of all terms of the Geant4 Software license. *
24 // ********************************************************************
25 //
26 // $Id: RegisterPhysLists.icc 66704 2013-01-10 18:20:17Z rhatcher $
27 //
28 //---------------------------------------------------------------------------
29 //
30 // ClassName: RegisterPhysLists
31 //
32 // Author: R. Hatcher 2014-10-15
33 //
34 // Modified:
35 //
36 //----------------------------------------------------------------------------
37 
38 #include "G4PhysListStamper.hh"
39 
40 #include "FTFP_BERT.hh"
42 
43 #include "FTFP_BERT_HP.hh"
45 
46 #include "FTFP_BERT_TRV.hh"
48 
49 #include "FTFP_INCLXX.hh"
51 
52 #include "FTFP_INCLXX_HP.hh"
54 
55 #include "FTF_BIC.hh"
57 
58 #include "LBE.hh"
60 
61 #include "QBBC.hh"
63 
64 #include "QGSP_BERT.hh"
66 
67 #include "QGSP_BERT_HP.hh"
69 
70 #include "QGSP_BIC.hh"
72 
73 #include "QGSP_BIC_HP.hh"
75 
76 #include "QGSP_FTFP_BERT.hh"
78 
79 #include "QGS_BIC.hh"
81 
82 #include "QGSP_INCLXX.hh"
84 
85 #include "QGSP_INCLXX_HP.hh"
87 
88 #include "Shielding.hh"
90 
91 /***********************************************************************
92 // rhatcher 2014-11-07
93 // investigating why this is problematic for mac/clang & linux/icc
94 // so for now don't support ShieldingLEND and ShieldingM
95 
96 // some extra hoops because the physlist factory expects to be able
97 // to construct a list using no args (or just a verbosity)
98 // but
99 // "ShieldingLEND" is Shielding(verbose,"LEND");
100 // "ShieldingM" is Shielding(verbose,"HP","M");
101 template<class T>
102 class TShieldingLEND : public Shielding
103 {
104 public:
105  explicit TShieldingLEND(G4int verbose = 1) : TShielding(verbose,"LEND") { ; }
106  virtual ~TShieldingLEND() { ; }
107 };
108 typedef TShieldingLEND<G4VModularPhysicsList> ShieldingLEND;
109 G4_DECLARE_PHYSLIST_FACTORY(ShieldingLEND);
110 
111 template<class T>
112 class TShieldingM : public Shielding
113 {
114 public:
115  explicit TShieldingM(G4int verbose = 1) : TShielding(verbose,"HP","M") { ; }
116  virtual ~TShieldingM() { ; }
117 };
118 typedef TShieldingM<G4VModularPhysicsList> ShieldingM;
119 G4_DECLARE_PHYSLIST_FACTORY(ShieldingM);
120 
121 ***********************************************************************/
122 
123 #include "NuBeam.hh"
125 
126 /***********************************************************************
127 // rhatcher 2014-11-07
128 // investigating why this is problematic for mac/clang ( & linux/icc ? )
129 
130 #include "G4GenericPhysicsList.hh"
131 G4_DECLARE_PHYSLIST_FACTORY(G4GenericPhysicsList);
132 
133 ***********************************************************************/
134 
G4_DECLARE_PHYSLIST_FACTORY(FTFP_BERT)
Definition: LBE.hh:61
Definition: QBBC.hh:44