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/QGSP_BERT_CHIPS.icc

    r1274 r1315  
    2424// ********************************************************************
    2525//
    26 // $Id: QGSP_BERT_CHIPS.icc,v 1.1 2010/05/26 15:06:49 gunter Exp $
    27 // GEANT4 tag $Name: phys-lists-V09-03-03 $
     26// $Id: QGSP_BERT_CHIPS.icc,v 1.4 2010/06/04 16:05:04 gunter Exp $
     27// GEANT4 tag $Name: geant4-09-04-beta-cand-01 $
    2828//
    2929//---------------------------------------------------------------------------
     
    3535//
    3636// Modified:
     37// 04.06.2010 G.Folger: Use new ctor for builders
    3738//
    3839//----------------------------------------------------------------------------
     
    6364#include "HadronPhysicsQGSP_BERT_CHIPS.hh"
    6465
     66#include "G4WarnPLStatus.hh"
     67
    6568template<class T> TQGSP_BERT_CHIPS<T>::TQGSP_BERT_CHIPS(G4int ver):  T()
    6669{
    6770
    6871  G4DataQuestionaire it(photon);
    69   G4cout << "<<< Geant4 Physics List simulation engine: QGSP_BERT_CHIPS 1.0"<<G4endl;
     72  G4cout << "<<< Geant4 Physics List simulation engine: QGSP_BERT_CHIPS 1.1"<<G4endl;
    7073  G4cout <<G4endl;
    7174
     
    7376  this->SetVerboseLevel(ver);
    7477
     78  G4WarnPLStatus exp;
     79  exp.Experimental("QGSP_BETT_CHIPS");
     80
    7581  // EM Physics
    76   this->RegisterPhysics( new G4EmStandardPhysics(ver));
     82  this->RegisterPhysics( new G4EmStandardPhysics(ver) );
    7783
    7884  // Synchroton Radiation & GN Physics
    79   this->RegisterPhysics( new G4EmExtraPhysics("extra EM"));
     85  this->RegisterPhysics( new G4EmExtraPhysics(ver) );
    8086
    8187  // Decays
    82   this->RegisterPhysics( new G4DecayPhysics("decay",ver) );
     88  this->RegisterPhysics( new G4DecayPhysics(ver) );
    8389
    8490   // Hadron Elastic scattering
    85   this-> RegisterPhysics( new G4HadronElasticPhysics("elastic",ver,false));
     91  this->RegisterPhysics( new G4HadronElasticPhysics(ver) );
    8692
    8793  // Hadron Physics
    88    G4bool quasiElastic;
    89   this->RegisterPhysics( new HadronPhysicsQGSP_BERT_CHIPS("hadron",quasiElastic=true));
     94  this->RegisterPhysics( new HadronPhysicsQGSP_BERT_CHIPS(ver));
    9095
    9196  // Stopping Physics
    92   this->RegisterPhysics( new G4QStoppingPhysics("stopping"));
     97  this->RegisterPhysics( new G4QStoppingPhysics(ver) );
    9398
    9499  // Ion Physics
    95   this->RegisterPhysics( new G4IonPhysics("ion"));
     100  this->RegisterPhysics( new G4IonPhysics(ver));
    96101 
    97102  // Neutron tracking cut
    98   this->RegisterPhysics( new G4NeutronTrackingCut("Neutron tracking cut", ver));
     103  this->RegisterPhysics( new G4NeutronTrackingCut(ver));
    99104
    100105}
Note: See TracChangeset for help on using the changeset viewer.