108 lines
3.5 KiB
Plaintext
108 lines
3.5 KiB
Plaintext
//
|
|
// ********************************************************************
|
|
// * DISCLAIMER *
|
|
// * *
|
|
// * The following disclaimer summarizes all the specific disclaimers *
|
|
// * of contributors to this software. The specific disclaimers,which *
|
|
// * govern, are listed with their locations in: *
|
|
// * http://cern.ch/geant4/license *
|
|
// * *
|
|
// * 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. *
|
|
// * *
|
|
// * This code implementation is the intellectual property of the *
|
|
// * GEANT4 collaboration. *
|
|
// * By copying, distributing or modifying the Program (or any work *
|
|
// * based on the Program) you indicate your acceptance of this *
|
|
// * statement, and all its terms. *
|
|
// ********************************************************************
|
|
//
|
|
// $Id: FTFP.icc,v 1.7 2005/12/15 20:57:53 gunter Exp $
|
|
// GEANT4 tag $Name: geant4-08-00 $
|
|
//
|
|
//---------------------------------------------------------------------------
|
|
//
|
|
// ClassName:
|
|
//
|
|
// Author: 2002 J.P. Wellisch
|
|
//
|
|
// Modified:
|
|
// 28.11.2005 G.Folger: migration to non static particles
|
|
// 30.11.2005 G.Folger: Register EmStandard first, split Em Standard and Extra
|
|
// 02.12.2005 V.Ivanchenko: rename components
|
|
//
|
|
//----------------------------------------------------------------------------
|
|
//
|
|
|
|
#include "globals.hh"
|
|
#include "G4ParticleDefinition.hh"
|
|
#include "G4ParticleWithCuts.hh"
|
|
#include "G4ProcessManager.hh"
|
|
#include "G4ProcessVector.hh"
|
|
#include "G4ParticleTypes.hh"
|
|
#include "G4ParticleTable.hh"
|
|
|
|
#include "G4Material.hh"
|
|
#include "G4MaterialTable.hh"
|
|
#include "G4ios.hh"
|
|
#include <iomanip>
|
|
|
|
#include "G4DecayPhysics.hh"
|
|
#include "G4EmStandardPhysics.hh"
|
|
#include "G4EmExtraPhysics.hh"
|
|
#include "G4IonPhysics.hh"
|
|
|
|
#include "G4DataQuestionaire.hh"
|
|
#include "HadronPhysicsFTFP.hh"
|
|
|
|
template<class T> TFTFP<T>::TFTFP(G4int ver): T()
|
|
{
|
|
// default cut value (1.0mm)
|
|
// defaultCutValue = 1.0*mm;
|
|
G4DataQuestionaire it(photon);
|
|
G4cout << "<<< Geant4 Physics List simulation engine: FTFP 4.0"<<G4endl;
|
|
G4cout <<G4endl;
|
|
this->defaultCutValue = 0.7*mm;
|
|
this->SetVerboseLevel(ver);
|
|
|
|
// EM Physics
|
|
this->RegisterPhysics( new G4EmStandardPhysics("standard EM",ver));
|
|
|
|
// Synchroton Radiation & GN Physics
|
|
this->RegisterPhysics( new G4EmExtraPhysics("extra EM"));
|
|
|
|
// Decays
|
|
this->RegisterPhysics( new G4DecayPhysics("decay",ver) );
|
|
|
|
// Hadron Physics
|
|
this->RegisterPhysics( new HadronPhysicsFTFP("hadron"));
|
|
|
|
// Ion Physics
|
|
this->RegisterPhysics( new G4IonPhysics("ion"));
|
|
}
|
|
|
|
template<class T> TFTFP<T>::~TFTFP()
|
|
{
|
|
}
|
|
|
|
template<class T> void TFTFP<T>::SetCuts()
|
|
{
|
|
if (this->verboseLevel >1){
|
|
G4cout << "FTFP::SetCuts:";
|
|
}
|
|
// " G4VUserPhysicsList::SetCutsWithDefault" method sets
|
|
// the default cut value for all particle types
|
|
|
|
this->SetCutsWithDefault();
|
|
|
|
// if (this->verboseLevel > 0)
|
|
// G4VUserPhysicsList::DumpCutValuesTable();
|
|
}
|
|
|
|
|
|
|
|
// 2002 by J.P. Wellisch
|