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/processes/electromagnetic/standard/src/G4eMultipleScattering.cc

    r1228 r1315  
    2424// ********************************************************************
    2525//
    26 // $Id: G4eMultipleScattering.cc,v 1.10 2009/11/01 13:05:01 vnivanch Exp $
    27 // GEANT4 tag $Name: geant4-09-03 $
     26// $Id: G4eMultipleScattering.cc,v 1.12 2010/06/04 09:11:02 vnivanch Exp $
     27// GEANT4 tag $Name: geant4-09-04-beta-cand-01 $
    2828//
    2929// -----------------------------------------------------------------------------
     
    4545
    4646#include "G4eMultipleScattering.hh"
    47 #include "G4UrbanMscModel92.hh"
     47#include "G4UrbanMscModel93.hh"
    4848#include "G4MscStepLimitType.hh"
    4949#include "G4Electron.hh"
     
    7777void G4eMultipleScattering::InitialiseProcess(const G4ParticleDefinition*)
    7878{
    79   if(isInitialized) return;
     79  if(isInitialized) { return; }
    8080
    8181  // initialisation of parameters - defaults for particles other
    8282  // than ions can be overwritten by users
    83   G4VMscModel* mscUrban = new G4UrbanMscModel92();
     83  G4VMscModel* mscUrban = new G4UrbanMscModel93();
    8484  AddEmModel(1,mscUrban);
    8585  isInitialized = true;
    86   /*
    87   G4cout << "G4eMultipleScattering::InitialiseProcess for "
    88          << p->GetParticleName()
    89          << " skin= " << Skin()
    90          << " SA= " << steppingAlgorithm
    91          << G4endl;
    92   */
    9386}
    9487
     
    9891{
    9992  G4cout << "      RangeFactor= " << RangeFactor()
    100          << ", step limit type: " << StepLimitType()
    101          << ", lateralDisplacement: " << LateralDisplasmentFlag()
    102          << ", skin= " << Skin() 
    103          << ", geomFactor= " << GeomFactor() 
    104          << G4endl;
     93         << ", stepLimitType: " << StepLimitType()
     94         << ", latDisplacement: " << LateralDisplasmentFlag();
     95  if(StepLimitType() == fUseDistanceToBoundary) {
     96    G4cout  << ", skin= " << Skin() << ", geomFactor= " << GeomFactor();
     97  } 
     98  G4cout << G4endl;
    10599}
    106100
Note: See TracChangeset for help on using the changeset viewer.