Ignore:
Timestamp:
Jun 18, 2010, 11:42:07 AM (14 years ago)
Author:
garnier
Message:

update geant4-09-04-beta-cand-01 interfaces-V09-03-09 vis-V09-03-08

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/source/physics_lists/lists/include/LHEP.icc

    r1228 r1315  
    2424// ********************************************************************
    2525//
    26 // $Id: LHEP.icc,v 1.3 2007/05/16 11:35:36 vnivanch Exp $
    27 // GEANT4 tag $Name: geant4-09-03 $
     26// $Id: LHEP.icc,v 1.5 2010/06/04 16:05:04 gunter Exp $
     27// GEANT4 tag $Name: geant4-09-04-beta-cand-01 $
    2828//
    2929//---------------------------------------------------------------------------
     
    3939// 14.06.2006 G.Folger: Migrate to HadronElasticPhysics using G4LElastic
    4040// 16.05.2007 V.Ivanchenko: rename EM builders
     41// 04.06.2010 G.Folger: Use new ctor for builders
    4142//
    4243//----------------------------------------------------------------------------
     
    5960#include "G4EmExtraPhysics.hh"
    6061#include "G4IonPhysics.hh"
    61 #include "G4HadronElasticPhysics.hh"
     62#include "G4HadronElasticPhysicsLHEP.hh"
    6263
    6364#include "G4DataQuestionaire.hh"
     
    6970  // defaultCutValue = 1.0*mm;
    7071  G4DataQuestionaire it(photon);
    71   G4cout << "<<< Geant4 Physics List simulation engine: LHEP 4.2"<<G4endl;
     72  G4cout << "<<< Geant4 Physics List simulation engine: LHEP 4.3"<<G4endl;
    7273  G4cout <<G4endl;
    7374  this->defaultCutValue = 0.7*mm; 
     
    7576
    7677  // EM Physics
    77   this->RegisterPhysics( new G4EmStandardPhysics(ver));
     78  this->RegisterPhysics( new G4EmStandardPhysics(ver) );
    7879
    7980  // Synchroton Radiation & GN Physics
    80   this->RegisterPhysics( new G4EmExtraPhysics("extra EM"));
     81  this->RegisterPhysics( new G4EmExtraPhysics(ver) );
    8182
    8283  // General Physics - i.e. decay
    83   this->RegisterPhysics( new G4DecayPhysics("decay",ver) );
     84  this->RegisterPhysics( new G4DecayPhysics(ver) );
    8485
    8586   // Hadron Elastic scattering
    86   this-> RegisterPhysics( new G4HadronElasticPhysics("LElastic",ver,false));
     87  this-> RegisterPhysics( new G4HadronElasticPhysicsLHEP(ver) );
    8788
    8889   // Hadron Physics
    89   this->RegisterPhysics(  new HadronPhysicsLHEP("hadron"));
     90  this->RegisterPhysics(  new HadronPhysicsLHEP(ver));
    9091
    9192  // Ion Physics
    92   this->RegisterPhysics( new G4IonPhysics("ion"));
     93  this->RegisterPhysics( new G4IonPhysics(ver));
    9394
    9495}
Note: See TracChangeset for help on using the changeset viewer.