147 lines
4.5 KiB
Plaintext
147 lines
4.5 KiB
Plaintext
//
|
|
// ********************************************************************
|
|
// * License and Disclaimer *
|
|
// * *
|
|
// * The Geant4 software is copyright of the Copyright Holders of *
|
|
// * the Geant4 Collaboration. It is provided under the terms and *
|
|
// * conditions of the Geant4 Software License, included in the file *
|
|
// * LICENSE and available at http://cern.ch/geant4/license . These *
|
|
// * include a list of copyright holders. *
|
|
// * *
|
|
// * Neither the authors of this software system, nor their employing *
|
|
// * institutes,nor the agencies providing financial support for this *
|
|
// * work make any representation or warranty, express or implied, *
|
|
// * regarding this software system or assume any liability for its *
|
|
// * use. Please see the license in the file LICENSE and URL above *
|
|
// * for the full disclaimer and the limitation of liability. *
|
|
// * *
|
|
// * This code implementation is the result of the scientific and *
|
|
// * technical work of the GEANT4 collaboration. *
|
|
// * By using, copying, modifying or distributing the software (or *
|
|
// * any work based on the software) you agree to acknowledge its *
|
|
// * use in resulting scientific publications, and indicate your *
|
|
// * acceptance of all terms of the Geant4 Software license. *
|
|
// ********************************************************************
|
|
//
|
|
// $Id: RegisterPhysLists.icc 66704 2013-01-10 18:20:17Z rhatcher $
|
|
//
|
|
//---------------------------------------------------------------------------
|
|
//
|
|
// ClassName: RegisterPhysLists
|
|
//
|
|
// Author: R. Hatcher 2014-10-15
|
|
//
|
|
// Modified:
|
|
//
|
|
//----------------------------------------------------------------------------
|
|
|
|
#include "G4PhysListStamper.hh"
|
|
|
|
#include "FTFP_BERT.hh"
|
|
G4_DECLARE_PHYSLIST_FACTORY(FTFP_BERT);
|
|
|
|
#include "FTFP_BERT_HP.hh"
|
|
G4_DECLARE_PHYSLIST_FACTORY(FTFP_BERT_HP);
|
|
|
|
#include "FTFP_BERT_TRV.hh"
|
|
G4_DECLARE_PHYSLIST_FACTORY(FTFP_BERT_TRV);
|
|
|
|
#include "FTFP_BERT_ATL.hh"
|
|
G4_DECLARE_PHYSLIST_FACTORY(FTFP_BERT_ATL);
|
|
|
|
#include "FTFP_INCLXX.hh"
|
|
G4_DECLARE_PHYSLIST_FACTORY(FTFP_INCLXX);
|
|
|
|
#include "FTFP_INCLXX_HP.hh"
|
|
G4_DECLARE_PHYSLIST_FACTORY(FTFP_INCLXX_HP);
|
|
|
|
#include "FTF_BIC.hh"
|
|
G4_DECLARE_PHYSLIST_FACTORY(FTF_BIC);
|
|
|
|
#include "LBE.hh"
|
|
G4_DECLARE_PHYSLIST_FACTORY(LBE);
|
|
|
|
#include "QBBC.hh"
|
|
G4_DECLARE_PHYSLIST_FACTORY(QBBC);
|
|
|
|
#include "QGSP_BERT.hh"
|
|
G4_DECLARE_PHYSLIST_FACTORY(QGSP_BERT);
|
|
|
|
#include "QGSP_BERT_HP.hh"
|
|
G4_DECLARE_PHYSLIST_FACTORY(QGSP_BERT_HP);
|
|
|
|
#include "QGSP_BIC.hh"
|
|
G4_DECLARE_PHYSLIST_FACTORY(QGSP_BIC);
|
|
|
|
#include "QGSP_BIC_HP.hh"
|
|
G4_DECLARE_PHYSLIST_FACTORY(QGSP_BIC_HP);
|
|
|
|
#include "QGSP_FTFP_BERT.hh"
|
|
G4_DECLARE_PHYSLIST_FACTORY(QGSP_FTFP_BERT);
|
|
|
|
#include "QGS_BIC.hh"
|
|
G4_DECLARE_PHYSLIST_FACTORY(QGS_BIC);
|
|
|
|
#include "QGSP_INCLXX.hh"
|
|
G4_DECLARE_PHYSLIST_FACTORY(QGSP_INCLXX);
|
|
|
|
#include "QGSP_INCLXX_HP.hh"
|
|
G4_DECLARE_PHYSLIST_FACTORY(QGSP_INCLXX_HP);
|
|
|
|
#include "Shielding.hh"
|
|
G4_DECLARE_PHYSLIST_FACTORY(Shielding);
|
|
|
|
/*** no longer necessary as of 2017-12-07
|
|
// some extra hoops because the physlist factory expects to be able
|
|
// to construct a list using just a verbosity argument
|
|
// but
|
|
// "ShieldingLEND" is Shielding(verbose,"LEND");
|
|
// "ShieldingM" is Shielding(verbose,"HP","M");
|
|
|
|
class ShieldingLEND : public Shielding
|
|
{
|
|
public:
|
|
explicit ShieldingLEND(G4int verbose = 1) : Shielding(verbose,"LEND","") { ; }
|
|
virtual ~ShieldingLEND() { ; }
|
|
};
|
|
G4_DECLARE_PHYSLIST_FACTORY(ShieldingLEND);
|
|
***/
|
|
|
|
#include "ShieldingLEND.hh"
|
|
G4_DECLARE_PHYSLIST_FACTORY(ShieldingLEND);
|
|
|
|
class ShieldingM : public Shielding
|
|
{
|
|
public:
|
|
explicit ShieldingM(G4int verbose = 1) : Shielding(verbose,"HP","M") { ; }
|
|
virtual ~ShieldingM() { ; }
|
|
};
|
|
G4_DECLARE_PHYSLIST_FACTORY(ShieldingM);
|
|
|
|
#include "NuBeam.hh"
|
|
G4_DECLARE_PHYSLIST_FACTORY(NuBeam);
|
|
|
|
// for __clang__ this this needs intercoms/include/G4AnyMethod.hh
|
|
// to not attempt to defined remove_reference templates, but use std C++11
|
|
#include "G4GenericPhysicsList.hh"
|
|
G4_DECLARE_PHYSLIST_FACTORY(G4GenericPhysicsList);
|
|
|
|
#include "QGSP_BIC_AllHP.hh"
|
|
G4_DECLARE_PHYSLIST_FACTORY(QGSP_BIC_AllHP);
|
|
|
|
#include "FTFQGSP_BERT.hh"
|
|
G4_DECLARE_PHYSLIST_FACTORY(FTFQGSP_BERT);
|
|
|
|
//// should these also be included?
|
|
|
|
/*
|
|
#include "FTF_BIC.hh"
|
|
G4_DECLARE_PHYSLIST_FACTORY(FTF_BIC);
|
|
|
|
#include "QGS_BIC.hh"
|
|
G4_DECLARE_PHYSLIST_FACTORY(QGS_BIC);
|
|
*/
|
|
|
|
|
|
//
|