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

    r921 r1203  
    2424// ********************************************************************
    2525//
     26// $Id: G4QGSBinaryPiKBuilder.cc,v 1.3 2009/03/31 11:03:50 vnivanch Exp $
     27// GEANT4 tag $Name: geant4-09-03-cand-03 $
     28//
     29//---------------------------------------------------------------------------
     30//
     31// ClassName:   G4QGSBinaryPiKBuilder
     32//
     33// Author: 2006 G.Folger
     34//
     35// Modified:
     36// 30.03.2009 V.Ivanchenko create cross section by new
     37//
     38//----------------------------------------------------------------------------
     39//
    2640#include "G4QGSBinaryPiKBuilder.hh"
    2741#include "G4ParticleDefinition.hh"
     
    3246G4QGSBinaryPiKBuilder(G4bool quasiElastic)
    3347{
     48  thePiData = new G4PiNuclearCrossSection;
     49
    3450  theMin = 12*GeV;
    3551  theModel = new G4TheoFSGenerator("QGSB");
     
    7389  theModel->SetMinEnergy(theMin);
    7490  theModel->SetMaxEnergy(100*TeV);
    75   aP->AddDataSet(&thePiData);
     91  aP->AddDataSet(thePiData);
    7692  aP->RegisterMe(theModel);
    7793}
     
    8298  theModel->SetMinEnergy(theMin);
    8399  theModel->SetMaxEnergy(100*TeV);
    84   aP->AddDataSet(&thePiData);
     100  aP->AddDataSet(thePiData);
    85101  aP->RegisterMe(theModel);
    86102}
Note: See TracChangeset for help on using the changeset viewer.