Ignore:
Timestamp:
Nov 27, 2009, 11:46:04 AM (15 years ago)
Author:
garnier
Message:

update CVS

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/source/physics_lists/builders/src/G4FTFPNeutronBuilder.cc

    r921 r1203  
    2424// ********************************************************************
    2525//
     26// $Id: G4FTFPNeutronBuilder.cc,v 1.5 2009/04/23 18:54:57 japost Exp $
     27// GEANT4 tag $Name: geant4-09-03-cand-03 $
     28//
     29//---------------------------------------------------------------------------
     30//
     31// ClassName:   G4FTFPNeutronBuilder
     32//
     33// Author: 2002 J.P. Wellisch
     34//
     35// Modified:
     36// 30.03.2009 V.Ivanchenko create cross section by new
     37//
     38//----------------------------------------------------------------------------
     39//
    2640#include "G4FTFPNeutronBuilder.hh"
    2741#include "G4ParticleDefinition.hh"
    2842#include "G4ParticleTable.hh"
    2943#include "G4ProcessManager.hh"
     44#include "G4NeutronInelasticCrossSection.hh"
    3045
    3146G4FTFPNeutronBuilder::
    3247G4FTFPNeutronBuilder(G4bool quasiElastic)
    3348{
    34   theMin = 4*GeV;
     49  theMin =   4*GeV;
     50  theMax = 100*TeV;
    3551  theModel = new G4TheoFSGenerator("FTFP");
    3652
     
    5268  } else
    5369  {  theQuasiElastic=0;} 
     70
     71  theModel->SetMinEnergy(theMin);
     72  theModel->SetMaxEnergy(100*TeV);
    5473}
    5574
     
    83102{
    84103  theModel->SetMinEnergy(theMin);
    85   theModel->SetMaxEnergy(100*TeV);
     104  theModel->SetMaxEnergy(theMax);
    86105  aP->RegisterMe(theModel);
    87   aP->AddDataSet(&theXSec); 
     106  aP->AddDataSet(new G4NeutronInelasticCrossSection); 
    88107}
    89108
Note: See TracChangeset for help on using the changeset viewer.