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/G4QGSCPiKBuilder.cc

    r921 r1203  
    2424// ********************************************************************
    2525//
     26// $Id: G4QGSCPiKBuilder.cc,v 1.5 2009/03/31 11:03:50 vnivanch Exp $
     27// GEANT4 tag $Name: geant4-09-03-cand-03 $
     28//
     29//---------------------------------------------------------------------------
     30//
     31// ClassName:   G4QGSCPiKBuilder
     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 "G4QGSCPiKBuilder.hh"
    2741#include "G4ParticleDefinition.hh"
     
    3246G4QGSCPiKBuilder(G4bool quasiElastic)
    3347{
     48  thePiCross = new G4PiNuclearCrossSection;
    3449  theMin = 8*GeV;
    3550  theModel = new G4TheoFSGenerator("QGSC");
     
    6984  theModel->SetMinEnergy(theMin);
    7085  theModel->SetMaxEnergy(100*TeV);
    71   aP->AddDataSet(&thePiCross);
     86  aP->AddDataSet(thePiCross);
    7287  aP->RegisterMe(theModel);
    7388}
     
    7893  theModel->SetMinEnergy(theMin);
    7994  theModel->SetMaxEnergy(100*TeV);
    80   aP->AddDataSet(&thePiCross);
     95  aP->AddDataSet(thePiCross);
    8196  aP->RegisterMe(theModel);
    8297}
Note: See TracChangeset for help on using the changeset viewer.