Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-31 09:21:48

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  *       Filename:  CexmcBasicPhysicsSettings.hh
0030  *
0031  *    Description:  basic typedefs etc. to build studied physics
0032  *
0033  *        Version:  1.0
0034  *        Created:  28.11.2009 15:30:55
0035  *       Revision:  none
0036  *       Compiler:  gcc
0037  *
0038  *         Author:  Alexey Radkov (), 
0039  *        Company:  PNPI
0040  *
0041  * =============================================================================
0042  */
0043 
0044 #ifndef CEXMC_BASIC_PHYSICS_SETTINGS_HH
0045 #define CEXMC_BASIC_PHYSICS_SETTINGS_HH
0046 
0047 #ifdef CEXMC_USE_QGSP_BIC_EMY
0048 /* this reference physics list promises higher accuracy for electrons, hadrons
0049  * and ions tracking */
0050 #include <QGSP_BIC_EMY.hh>
0051 #else
0052 #ifdef CEXMC_USE_QGSP_BERT
0053 #include <QGSP_BERT.hh>
0054 #else
0055 /* standard reference physics list */
0056 #include <FTFP_BERT.hh>
0057 #endif
0058 #endif
0059 #include <G4PionMinus.hh>
0060 #include "CexmcProductionModelFactory.hh"
0061 #include "CexmcHadronicPhysics.hh"
0062 #include "CexmcChargeExchangeProductionModel.hh"
0063 
0064 
0065 #ifdef CEXMC_USE_QGSP_BIC_EMY
0066 typedef QGSP_BIC_EMY                  CexmcBasePhysics;
0067 #else
0068 #ifdef CEXMC_USE_QGSP_BERT
0069 typedef QGSP_BERT                     CexmcBasePhysics;
0070 #else
0071 typedef FTFP_BERT                     CexmcBasePhysics;
0072 #endif
0073 #endif
0074 
0075 typedef CexmcProductionModelFactory< CexmcBasePhysics,
0076                                      CexmcHadronicPhysics,
0077                                      CexmcChargeExchangeProductionModel >
0078                                       CexmcChargeExchangePMFactory;
0079 
0080 typedef CexmcChargeExchangePMFactory  CexmcPMFactoryInstance;
0081 
0082 
0083 #endif
0084