Ignore:
Timestamp:
Sep 30, 2010, 2:47:17 PM (14 years ago)
Author:
garnier
Message:

tag geant4.9.4 beta 1 + modifs locales

Location:
trunk/examples/extended/biasing/B01/src
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • trunk/examples/extended/biasing/B01/src/B01DetectorConstruction.cc

    r1230 r1337  
    2626//
    2727// $Id: B01DetectorConstruction.cc,v 1.20 2007/06/22 13:15:29 ahoward Exp $
    28 // GEANT4 tag $Name: geant4-09-03-cand-01 $
     28// GEANT4 tag $Name: geant4-09-04-beta-01 $
    2929//
    3030
  • trunk/examples/extended/biasing/B01/src/B01PhysicsList.cc

    r1230 r1337  
    2525//
    2626//
    27 // $Id: B01PhysicsList.cc,v 1.8 2007/06/05 18:20:09 ahoward Exp $
    28 // GEANT4 tag $Name: geant4-09-03-cand-01 $
     27// $Id: B01PhysicsList.cc,v 1.9 2010/03/24 21:04:23 gcosmo Exp $
     28// GEANT4 tag $Name: geant4-09-04-beta-01 $
    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"
     
    162164    //electron
    163165      // Construct processes for electron
    164       pmanager->AddProcess(new G4MultipleScattering(),-1,1,1);
     166      pmanager->AddProcess(new G4eMultipleScattering(),-1,1,1);
    165167      pmanager->AddProcess(new G4eIonisation(),-1,2,2);
    166168      pmanager->AddProcess(new G4eBremsstrahlung(),-1,-1,3);
     
    169171    //positron
    170172      // Construct processes for positron
    171      pmanager->AddProcess(new G4MultipleScattering(),-1,1,1);
     173     pmanager->AddProcess(new G4eMultipleScattering(),-1,1,1);
    172174     
    173175     pmanager->AddProcess(new G4eIonisation(),-1,2,2);
     
    179181    //muon 
    180182     // Construct processes for muon+
    181      pmanager->AddProcess(new G4MultipleScattering(),-1,1,1);
     183     pmanager->AddProcess(new G4MuMultipleScattering(),-1,1,1);
    182184     pmanager->AddProcess(new G4MuIonisation(),-1,2,2);
    183185     pmanager->AddProcess(new G4MuBremsstrahlung(),-1,-1,3);
     
    185187     
    186188    } else if( particleName == "GenericIon" ) {
    187       pmanager->AddProcess(new G4MultipleScattering(),-1,1,1);
     189      pmanager->AddProcess(new G4hMultipleScattering(),-1,1,1);
    188190      pmanager->AddProcess(new G4hIonisation(),-1,2,2);
    189191    } else {
     
    192194          (!particle->IsShortLived()) ) {
    193195     // all others charged particles except geantino
    194        pmanager->AddProcess(new G4MultipleScattering(),-1,1,1);
     196       pmanager->AddProcess(new G4hMultipleScattering(),-1,1,1);
    195197       pmanager->AddProcess(new G4hIonisation(),-1,2,2);       
    196198     }
  • trunk/examples/extended/biasing/B01/src/B01PrimaryGeneratorAction.cc

    r1230 r1337  
    2626//
    2727// $Id: B01PrimaryGeneratorAction.cc,v 1.8 2006/06/29 16:34:20 gunter Exp $
    28 // GEANT4 tag $Name: geant4-09-03-cand-01 $
     28// GEANT4 tag $Name: geant4-09-04-beta-01 $
    2929//
    3030
  • trunk/examples/extended/biasing/B01/src/B01Run.cc

    r1230 r1337  
    2626//
    2727// $Id: B01Run.cc,v 1.4 2007/06/21 15:03:37 gunter Exp $
    28 // GEANT4 tag $Name: geant4-09-03-cand-01 $
     28// GEANT4 tag $Name: geant4-09-04-beta-01 $
    2929//
    3030
  • trunk/examples/extended/biasing/B01/src/B01RunAction.cc

    r1230 r1337  
    2626//
    2727// $Id: B01RunAction.cc,v 1.4 2007/06/22 13:29:45 ahoward Exp $
    28 // GEANT4 tag $Name: geant4-09-03-cand-01 $
     28// GEANT4 tag $Name: geant4-09-04-beta-01 $
    2929//
    3030#include "B01RunAction.hh"
  • trunk/examples/extended/biasing/B01/src/B01ScoreTable.cc

    r1230 r1337  
    2626//
    2727// $Id: B01ScoreTable.cc,v 1.2 2007/06/22 13:15:29 ahoward Exp $
    28 // GEANT4 tag $Name: geant4-09-03-cand-01 $
     28// GEANT4 tag $Name: geant4-09-04-beta-01 $
    2929//
    3030// ----------------------------------------------------------------------
Note: See TracChangeset for help on using the changeset viewer.