QBBC.cc

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 // $Id$
00027 //
00028 //---------------------------------------------------------------------------
00029 //
00030 // ClassName:QBBC
00031 //
00032 // Author: 11 April 2006 V. Ivanchenko
00033 //
00034 // Modified:
00035 // 24.11.06 V.Ivanchenko: Add G4HadronHElasticPhysics and G4NeutronTrackingCut
00036 // 16.05.07 V.Ivanchenko: rename EM builders
00037 // 20.04.11 V.Ivanchenko: remove extra headers of elastic builders
00038 //                        added FTFP/Binary ion physics 
00039 // 16.10.12 A.Ribon: renamed the used physics classes
00040 //
00041 //----------------------------------------------------------------------------
00042 //
00043 
00044 #include "QBBC.hh"
00045 #include "globals.hh"
00046 #include "G4PhysicalConstants.hh"
00047 #include "G4SystemOfUnits.hh"
00048 #include "G4ParticleDefinition.hh"
00049 
00050 #include "G4DecayPhysics.hh"
00051 #include "G4EmStandardPhysics.hh"
00052 #include "G4EmStandardPhysics_option2.hh"
00053 #include "G4EmExtraPhysics.hh"
00054 #include "G4StoppingPhysics.hh"
00055 
00056 #include "G4DataQuestionaire.hh"
00057 #include "G4HadronInelasticQBBC.hh"
00058 #include "G4HadronElasticPhysics.hh"
00059 #include "G4HadronElasticPhysicsXS.hh"
00060 #include "G4HadronElasticPhysicsHP.hh"
00061 #include "G4ChargeExchangePhysics.hh"
00062 #include "G4IonPhysics.hh"
00063 #include "G4NeutronTrackingCut.hh"
00064 
00065 QBBC::QBBC( G4int ver, const G4String&)
00066 {
00067   G4DataQuestionaire it(photon, neutronxs);
00068   G4cout << "<<< Reference Physics List QBBC "
00069          <<G4endl;      
00070 
00071   defaultCutValue = 0.7*mm;  
00072   SetVerboseLevel(ver);
00073 
00074   // EM Physics
00075   RegisterPhysics( new G4EmStandardPhysics(ver) );
00076 
00077   // Synchroton Radiation & GN Physics
00078   RegisterPhysics( new G4EmExtraPhysics(ver) );
00079 
00080   // Decays
00081   RegisterPhysics( new G4DecayPhysics(ver) );
00082 
00083    // Hadron Physics
00084   RegisterPhysics( new G4HadronElasticPhysicsXS(ver) );
00085 
00086   RegisterPhysics( new G4StoppingPhysics(ver) );
00087 
00088   RegisterPhysics( new G4IonPhysics(ver) );
00089 
00090   RegisterPhysics( new G4HadronInelasticQBBC(ver));
00091 
00092   // Neutron tracking cut
00093   RegisterPhysics( new G4NeutronTrackingCut(ver) );
00094 }                
00095 
00096 QBBC::~QBBC() 
00097 {}
00098 
00099 void QBBC::SetCuts()
00100 {
00101   SetCutsWithDefault();   
00102 }
00103 

Generated on Mon May 27 17:50:32 2013 for Geant4 by  doxygen 1.4.7