Ignore:
Timestamp:
Jun 14, 2010, 3:54:58 PM (14 years ago)
Author:
garnier
Message:

geant4.9.4 beta rc0

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/examples/novice/N05/src/ExN05PhysicsList.cc

    r1230 r1313  
    2525//
    2626//
    27 // $Id: ExN05PhysicsList.cc,v 1.14 2007/11/30 18:08:42 mverderi Exp $
    28 // GEANT4 tag $Name: geant4-09-03-cand-01 $
     27// $Id: ExN05PhysicsList.cc,v 1.15 2010/03/19 08:59:39 gcosmo Exp $
     28// GEANT4 tag $Name: geant4-09-04-beta-cand-00 $
    2929//
    3030//
     
    132132#include "G4PhotoElectricEffect.hh"
    133133
    134 #include "G4MultipleScattering.hh"
     134#include "G4eMultipleScattering.hh"
     135#include "G4MuMultipleScattering.hh"
     136#include "G4hMultipleScattering.hh"
    135137
    136138#include "G4eIonisation.hh"
     
    161163    //electron
    162164      // Construct processes for electron
    163       G4VProcess* theeminusMultipleScattering = new G4MultipleScattering();
     165      G4VProcess* theeminusMultipleScattering = new G4eMultipleScattering();
    164166      G4VProcess* theeminusIonisation = new G4eIonisation();
    165167      G4VProcess* theeminusBremsstrahlung = new G4eBremsstrahlung();
     
    179181    //positron
    180182      // Construct processes for positron
    181       G4VProcess* theeplusMultipleScattering = new G4MultipleScattering();
     183      G4VProcess* theeplusMultipleScattering = new G4eMultipleScattering();
    182184      G4VProcess* theeplusIonisation = new G4eIonisation();
    183185      G4VProcess* theeplusBremsstrahlung = new G4eBremsstrahlung();
     
    203205    //muon 
    204206     // Construct processes for muon+
    205      G4VProcess* aMultipleScattering = new G4MultipleScattering();
     207     G4VProcess* aMultipleScattering = new G4MuMultipleScattering();
    206208     G4VProcess* aBremsstrahlung = new G4MuBremsstrahlung();
    207209     G4VProcess* aPairProduction = new G4MuPairProduction();
     
    225227              (particle->GetParticleName() != "chargedgeantino")) {
    226228     // all others charged particles except geantino
    227      G4VProcess* aMultipleScattering = new G4MultipleScattering();
     229     G4VProcess* aMultipleScattering = new G4hMultipleScattering();
    228230     G4VProcess* anIonisation = new G4hIonisation();
    229231     // add processes
Note: See TracChangeset for help on using the changeset viewer.