Ignore:
Timestamp:
Jan 8, 2010, 11:56:51 AM (16 years ago)
Author:
garnier
Message:

update geant4.9.3 tag

Location:
trunk/source/processes/electromagnetic/standard/src
Files:
53 edited

Legend:

Unmodified
Added
Removed
  • trunk/source/processes/electromagnetic/standard/src/G4ASTARStopping.cc

    r1196 r1228  
    2525//
    2626// $Id: G4ASTARStopping.cc,v 1.8 2008/11/24 18:28:09 vnivanch Exp $
    27 // GEANT4 tag $Name: geant4-09-03-cand-01 $
     27// GEANT4 tag $Name: geant4-09-03 $
    2828
    2929//---------------------------------------------------------------------------
  • trunk/source/processes/electromagnetic/standard/src/G4BetheBlochModel.cc

    r1196 r1228  
    2424// ********************************************************************
    2525//
    26 // $Id: G4BetheBlochModel.cc,v 1.34 2009/11/11 23:22:27 vnivanch Exp $
    27 // GEANT4 tag $Name: geant4-09-03-cand-01 $
     26// $Id: G4BetheBlochModel.cc,v 1.36 2009/12/03 17:26:40 vnivanch Exp $
     27// GEANT4 tag $Name: geant4-09-03 $
    2828//
    2929// -------------------------------------------------------------------
     
    277277
    278278//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
     279/*
     280void G4BetheBlochModel::CorrectionsAlongStep(const G4MaterialCutsCouple*,
     281                                             const G4DynamicParticle*,
     282                                             G4double&,
     283                                             G4double&,
     284                                             G4double)
     285{}
     286*/
    279287
    280288void G4BetheBlochModel::CorrectionsAlongStep(const G4MaterialCutsCouple* couple,
     
    293301    G4double q2 = corr->EffectiveChargeSquareRatio(p,mat,e);
    294302    GetModelOfFluctuations()->SetParticleAndCharge(p, q2);
    295     eloss *= q2*corr->EffectiveChargeCorrection(p,mat,e)/corrFactor;
    296     eloss += length*corr->IonHighOrderCorrections(p,couple,e);
    297   }
    298   /*
    299   if(nuclearStopping && preKinEnergy*proton_mass_c2/mass < chargeSquare*100.*MeV) {
    300 
    301     G4double nloss = length*corr->NuclearDEDX(p,mat,e,false);
    302 
    303     // too big energy loss
    304     if(eloss + nloss > preKinEnergy) {
    305       nloss *= (preKinEnergy/(eloss + nloss));
    306       eloss = preKinEnergy;
    307     } else {
    308       eloss += nloss;
    309     }
    310    
    311     G4cout << "G4ionIonisation::CorrectionsAlongStep: e= " << preKinEnergy
    312            << " de= " << eloss << " NIEL= " << nloss
    313            << " dynQ= " << dp->GetCharge()/eplus << G4endl;
    314    
    315     fParticleChange->ProposeNonIonizingEnergyDeposit(nloss);
    316   }
    317   */
     303    G4double qfactor = q2*corr->EffectiveChargeCorrection(p,mat,e)/corrFactor;
     304    G4double highOrder = length*corr->IonHighOrderCorrections(p,couple,e);
     305    eloss *= qfactor;
     306    eloss += highOrder;
     307    //G4cout << "G4BetheBlochModel::CorrectionsAlongStep: e= " << preKinEnergy
     308    //     << " qfactor= " << qfactor
     309    //     << " highOrder= " << highOrder << " (" << highOrder/eloss << ")" << G4endl;   
     310  }
    318311}
    319312
  • trunk/source/processes/electromagnetic/standard/src/G4BetheHeitlerModel.cc

    r1196 r1228  
    2525//
    2626// $Id: G4BetheHeitlerModel.cc,v 1.13 2009/04/09 18:41:18 vnivanch Exp $
    27 // GEANT4 tag $Name: geant4-09-03-cand-01 $
     27// GEANT4 tag $Name: geant4-09-03 $
    2828//
    2929// -------------------------------------------------------------------
  • trunk/source/processes/electromagnetic/standard/src/G4BohrFluctuations.cc

    r1196 r1228  
    2525//
    2626// $Id: G4BohrFluctuations.cc,v 1.8 2009/09/29 11:33:22 vnivanch Exp $
    27 // GEANT4 tag $Name: geant4-09-03-cand-01 $
     27// GEANT4 tag $Name: geant4-09-03 $
    2828//
    2929// -------------------------------------------------------------------
  • trunk/source/processes/electromagnetic/standard/src/G4BraggIonModel.cc

    r1196 r1228  
    2424// ********************************************************************
    2525//
    26 // $Id: G4BraggIonModel.cc,v 1.26 2009/11/10 19:25:47 vnivanch Exp $
    27 // GEANT4 tag $Name: geant4-09-03-cand-01 $
     26// $Id: G4BraggIonModel.cc,v 1.27 2009/11/22 18:00:23 vnivanch Exp $
     27// GEANT4 tag $Name: geant4-09-03 $
    2828//
    2929// -------------------------------------------------------------------
     
    263263  if(e < 0.0) e = preKinEnergy*0.5;
    264264
    265   //G4cout << "G4BraggIonModel::CorrectionsAlongStep e= " <<  e << G4endl;
    266 
    267265  G4double q2 = corr->EffectiveChargeSquareRatio(p,mat,e);
    268266  GetModelOfFluctuations()->SetParticleAndCharge(p, q2);
    269   eloss *= q2*corr->EffectiveChargeCorrection(p,mat,e)/corrFactor;
    270   /*
    271   if(nuclearStopping) {
    272 
    273     G4double nloss = length*corr->NuclearDEDX(p,mat,e,false);
    274 
    275     // too big energy loss
    276     if(eloss + nloss > preKinEnergy) {
    277       nloss *= (preKinEnergy/(eloss + nloss));
    278       eloss = preKinEnergy;
    279     } else {
    280       eloss += nloss;
    281     }
    282    
    283     G4cout << "G4ionIonisation::CorrectionsAlongStep: e= " << preKinEnergy
    284            << " de= " << eloss << " NIEL= " << nloss
    285            << " dynQ= " << dp->GetCharge()/eplus << G4endl;
    286    
    287     fParticleChange->ProposeNonIonizingEnergyDeposit(nloss);
    288   }
    289   */
    290   //G4cout << "G4BraggIonModel::CorrectionsAlongStep end" << G4endl;
     267  G4double qfactor = q2*corr->EffectiveChargeCorrection(p,mat,e)/corrFactor;
     268  eloss *= qfactor;
     269
     270  //G4cout << "G4BraggIonModel::CorrectionsAlongStep e= " <<  e
     271  //     << " qfactor= " << qfactor << " " << p->GetParticleName() <<G4endl;
    291272}
    292273
  • trunk/source/processes/electromagnetic/standard/src/G4BraggModel.cc

    r1196 r1228  
    2525//
    2626// $Id: G4BraggModel.cc,v 1.23 2009/11/10 19:25:47 vnivanch Exp $
    27 // GEANT4 tag $Name: geant4-09-03-cand-01 $
     27// GEANT4 tag $Name: geant4-09-03 $
    2828//
    2929// -------------------------------------------------------------------
  • trunk/source/processes/electromagnetic/standard/src/G4ComptonScattering.cc

    r1196 r1228  
    2525//
    2626// $Id: G4ComptonScattering.cc,v 1.31 2009/02/20 12:06:37 vnivanch Exp $
    27 // GEANT4 tag $Name: geant4-09-03-cand-01 $
     27// GEANT4 tag $Name: geant4-09-03 $
    2828//
    2929//
  • trunk/source/processes/electromagnetic/standard/src/G4ComptonScattering52.cc

    r1196 r1228  
    2525//
    2626// $Id: G4ComptonScattering52.cc,v 1.7 2008/10/15 17:53:44 vnivanch Exp $
    27 // GEANT4 tag $Name: geant4-09-03-cand-01 $
     27// GEANT4 tag $Name: geant4-09-03 $
    2828//
    2929//
  • trunk/source/processes/electromagnetic/standard/src/G4CoulombScattering.cc

    r1196 r1228  
    2525//
    2626// $Id: G4CoulombScattering.cc,v 1.25 2009/10/28 10:14:13 vnivanch Exp $
    27 // GEANT4 tag $Name: geant4-09-03-cand-01 $
     27// GEANT4 tag $Name: geant4-09-03 $
    2828//
    2929// -------------------------------------------------------------------
  • trunk/source/processes/electromagnetic/standard/src/G4CoulombScatteringModel.cc

    r1196 r1228  
    2424// ********************************************************************
    2525//
    26 // $Id: G4CoulombScatteringModel.cc,v 1.43 2009/10/28 10:14:13 vnivanch Exp $
    27 // GEANT4 tag $Name: geant4-09-03-cand-01 $
     26// $Id: G4CoulombScatteringModel.cc,v 1.44 2009/12/03 09:59:07 vnivanch Exp $
     27// GEANT4 tag $Name: geant4-09-03 $
    2828//
    2929// -------------------------------------------------------------------
     
    108108
    109109  //invbeta2 = 1.0 +  m12/mom2;
    110  
    111   G4double fm = m2/(mass + m2);
    112   invbeta2 = 1.0 +  m12*fm*fm/mom2;
     110  //  G4double fm = m2/(mass + m2); 
     111
     112  // 03.09.2009 C.Consaldi
     113  G4double Ecm=sqrt(m12 + m2*m2 + 2.0*etot*m2);
     114  G4double mu_rel=mass*m2/Ecm;
     115
     116  invbeta2 = 1.0 +  mu_rel*mu_rel/mom2;
     117  //
    113118
    114119  SetupTarget(Z, tkin);
     
    158163
    159164  // a correction for heavy projectile
    160   G4double fm = m2/(mass + m2);
    161   invbeta2 = 1.0 +  m12*fm*fm/mom2;
     165  //  G4double fm = m2/(mass + m2);
     166  //  invbeta2 = 1.0 +  m12*fm*fm/mom2;
     167
     168  // 03.09.2009 C.Consaldi
     169  G4double Ecm=sqrt(m12 + m2*m2 + 2.0*etot*m2);
     170  G4double mu_rel=mass*m2/Ecm;
     171
     172  invbeta2 = 1.0 +  mu_rel*mu_rel/mom2;
     173  //
    162174
    163175  // sample scattering angle in CM system
     
    181193  fParticleChange->ProposeMomentumDirection(newDirection);   
    182194
    183   //  G4double elab = gam*(eCM + bet*pzCM);
    184 
    185   G4double Ecm  = sqrt(mass*mass + m2*m2 + 2.0*etot*m2);
     195 //   G4double elab = gam*(eCM + bet*pzCM);
     196
     197 // G4double Ecm  = sqrt(mass*mass + m2*m2 + 2.0*etot*m2);
    186198  G4double elab = etot - m2*(ptot/Ecm)*(ptot/Ecm)*(1.-cost) ;
    187199
     
    211223//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
    212224
    213 
  • trunk/source/processes/electromagnetic/standard/src/G4GammaConversion.cc

    r1196 r1228  
    2525//
    2626// $Id: G4GammaConversion.cc,v 1.31 2009/02/20 12:06:37 vnivanch Exp $
    27 // GEANT4 tag $Name: geant4-09-03-cand-01 $
     27// GEANT4 tag $Name: geant4-09-03 $
    2828//
    2929//
  • trunk/source/processes/electromagnetic/standard/src/G4GoudsmitSaundersonMscModel.cc

    r1196 r1228  
    2424// ********************************************************************
    2525//
    26 // $Id: G4GoudsmitSaundersonMscModel.cc,v 1.19 2009/11/09 18:40:25 vnivanch Exp $
    27 // GEANT4 tag $Name: geant4-09-03-cand-01 $
     26// $Id: G4GoudsmitSaundersonMscModel.cc,v 1.20 2009/12/16 17:50:11 gunter Exp $
     27// GEANT4 tag $Name: geant4-09-03 $
    2828//
    2929// -------------------------------------------------------------------
  • trunk/source/processes/electromagnetic/standard/src/G4GoudsmitSaundersonTable.cc

    r1196 r1228  
    2525//
    2626// $Id: G4GoudsmitSaundersonTable.cc,v 1.4 2009/08/28 16:36:52 vnivanch Exp $
    27 // GEANT4 tag $Name: geant4-09-03-cand-01 $
     27// GEANT4 tag $Name: geant4-09-03 $
    2828//
    2929// -------------------------------------------------------------------
  • trunk/source/processes/electromagnetic/standard/src/G4HeatedKleinNishinaCompton.cc

    r1196 r1228  
    2525//
    2626// $Id: G4HeatedKleinNishinaCompton.cc,v 1.5 2009/04/12 17:09:57 vnivanch Exp $
    27 // GEANT4 tag $Name: geant4-09-03-cand-01 $
     27// GEANT4 tag $Name: geant4-09-03 $
    2828//
    2929// -------------------------------------------------------------------
  • trunk/source/processes/electromagnetic/standard/src/G4ICRU49NuclearStoppingModel.cc

    r1197 r1228  
    2525//
    2626// $Id: G4ICRU49NuclearStoppingModel.cc,v 1.2 2009/11/10 19:25:47 vnivanch Exp $
    27 // GEANT4 tag $Name: geant4-09-03-cand-01 $
     27// GEANT4 tag $Name: geant4-09-03 $
    2828//
    2929// -------------------------------------------------------------------
  • trunk/source/processes/electromagnetic/standard/src/G4InitXscPAI.cc

    r1196 r1228  
    2626//
    2727// $Id: G4InitXscPAI.cc,v 1.9 2006/06/29 19:53:00 gunter Exp $
    28 // GEANT4 tag $Name: geant4-09-03-cand-01 $
     28// GEANT4 tag $Name: geant4-09-03 $
    2929//
    3030//
  • trunk/source/processes/electromagnetic/standard/src/G4IonFluctuations.cc

    r1196 r1228  
    2525//
    2626// $Id: G4IonFluctuations.cc,v 1.26 2009/03/31 13:24:40 toshito Exp $
    27 // GEANT4 tag $Name: geant4-09-03-cand-01 $
     27// GEANT4 tag $Name: geant4-09-03 $
    2828//
    2929// -------------------------------------------------------------------
  • trunk/source/processes/electromagnetic/standard/src/G4KleinNishinaCompton.cc

    r1196 r1228  
    2525//
    2626// $Id: G4KleinNishinaCompton.cc,v 1.10 2009/05/15 17:12:33 vnivanch Exp $
    27 // GEANT4 tag $Name: geant4-09-03-cand-01 $
     27// GEANT4 tag $Name: geant4-09-03 $
    2828//
    2929// -------------------------------------------------------------------
  • trunk/source/processes/electromagnetic/standard/src/G4MollerBhabhaModel.cc

    r1196 r1228  
    2525//
    2626// $Id: G4MollerBhabhaModel.cc,v 1.35 2009/11/09 19:16:13 vnivanch Exp $
    27 // GEANT4 tag $Name: geant4-09-03-cand-01 $
     27// GEANT4 tag $Name: geant4-09-03 $
    2828//
    2929// -------------------------------------------------------------------
  • trunk/source/processes/electromagnetic/standard/src/G4MscModel71.cc

    r1196 r1228  
    2525//
    2626// $Id: G4MscModel71.cc,v 1.8 2009/11/01 13:05:01 vnivanch Exp $
    27 // GEANT4 tag $Name: geant4-09-03-cand-01 $
     27// GEANT4 tag $Name: geant4-09-03 $
    2828//
    2929// -------------------------------------------------------------------
  • trunk/source/processes/electromagnetic/standard/src/G4MultipleScattering.cc

    r1196 r1228  
    2525//
    2626// $Id: G4MultipleScattering.cc,v 1.77 2009/11/01 13:05:01 vnivanch Exp $
    27 // GEANT4 tag $Name: geant4-09-03-cand-01 $
     27// GEANT4 tag $Name: geant4-09-03 $
    2828//
    2929// -----------------------------------------------------------------------------
  • trunk/source/processes/electromagnetic/standard/src/G4MultipleScattering71.cc

    r1196 r1228  
    2525//
    2626// $Id: G4MultipleScattering71.cc,v 1.5 2008/07/16 11:27:41 vnivanch Exp $
    27 // GEANT4 tag $Name: geant4-09-03-cand-01 $
     27// GEANT4 tag $Name: geant4-09-03 $
    2828//
    2929// -----------------------------------------------------------------------------
  • trunk/source/processes/electromagnetic/standard/src/G4NuclearStopping.cc

    r1197 r1228  
    2525//
    2626// $Id: G4NuclearStopping.cc,v 1.2 2009/11/10 19:25:47 vnivanch Exp $
    27 // GEANT4 tag $Name: geant4-09-03-cand-01 $
     27// GEANT4 tag $Name: geant4-09-03 $
    2828//
    2929// -----------------------------------------------------------------------------
  • trunk/source/processes/electromagnetic/standard/src/G4PAIModel.cc

    r1196 r1228  
    2525//
    2626// $Id: G4PAIModel.cc,v 1.51 2009/08/12 21:28:50 vnivanch Exp $
    27 // GEANT4 tag $Name: geant4-09-03-cand-01 $
     27// GEANT4 tag $Name: geant4-09-03 $
    2828//
    2929// -------------------------------------------------------------------
  • trunk/source/processes/electromagnetic/standard/src/G4PAIPhotonModel.cc

    r1196 r1228  
    2525//
    2626// $Id: G4PAIPhotonModel.cc,v 1.23 2009/07/26 15:51:01 vnivanch Exp $
    27 // GEANT4 tag $Name: geant4-09-03-cand-01 $
     27// GEANT4 tag $Name: geant4-09-03 $
    2828//
    2929// -------------------------------------------------------------------
  • trunk/source/processes/electromagnetic/standard/src/G4PAIxSection.cc

    r1196 r1228  
    2626//
    2727// $Id: G4PAIxSection.cc,v 1.24 2008/05/30 16:04:40 grichine Exp $
    28 // GEANT4 tag $Name: geant4-09-03-cand-01 $
     28// GEANT4 tag $Name: geant4-09-03 $
    2929//
    3030//
  • trunk/source/processes/electromagnetic/standard/src/G4PAIySection.cc

    r1196 r1228  
    2626//
    2727// $Id: G4PAIySection.cc,v 1.4 2009/07/26 15:51:01 vnivanch Exp $
    28 // GEANT4 tag $Name: geant4-09-03-cand-01 $
     28// GEANT4 tag $Name: geant4-09-03 $
    2929//
    3030//
  • trunk/source/processes/electromagnetic/standard/src/G4PEEffectModel.cc

    r1196 r1228  
    2525//
    2626// $Id: G4PEEffectModel.cc,v 1.8 2009/04/09 18:41:18 vnivanch Exp $
    27 // GEANT4 tag $Name: geant4-09-03-cand-01 $
     27// GEANT4 tag $Name: geant4-09-03 $
    2828//
    2929// -------------------------------------------------------------------
  • trunk/source/processes/electromagnetic/standard/src/G4PSTARStopping.cc

    r1196 r1228  
    2525//
    2626// $Id: G4PSTARStopping.cc,v 1.8 2008/11/24 18:28:09 vnivanch Exp $
    27 // GEANT4 tag $Name: geant4-09-03-cand-01 $
     27// GEANT4 tag $Name: geant4-09-03 $
    2828
    2929//---------------------------------------------------------------------------
  • trunk/source/processes/electromagnetic/standard/src/G4PairProductionRelModel.cc

    r1196 r1228  
    2525//
    2626// $Id: G4PairProductionRelModel.cc,v 1.3 2009/05/15 17:12:33 vnivanch Exp $
    27 // GEANT4 tag $Name: geant4-09-03-cand-01 $
     27// GEANT4 tag $Name: geant4-09-03 $
    2828//
    2929// -------------------------------------------------------------------
  • trunk/source/processes/electromagnetic/standard/src/G4PhotoElectricEffect.cc

    r1196 r1228  
    2525//
    2626// $Id: G4PhotoElectricEffect.cc,v 1.42 2009/02/20 12:06:37 vnivanch Exp $
    27 // GEANT4 tag $Name: geant4-09-03-cand-01 $
     27// GEANT4 tag $Name: geant4-09-03 $
    2828//
    2929//
  • trunk/source/processes/electromagnetic/standard/src/G4PolarizedComptonScattering.cc

    r1196 r1228  
    2626//
    2727// $Id: G4PolarizedComptonScattering.cc,v 1.18 2008/10/15 17:53:44 vnivanch Exp $
    28 // GEANT4 tag $Name: geant4-09-03-cand-01 $
     28// GEANT4 tag $Name: geant4-09-03 $
    2929//
    3030//
  • trunk/source/processes/electromagnetic/standard/src/G4UniversalFluctuation.cc

    r1196 r1228  
    2525//
    2626// $Id: G4UniversalFluctuation.cc,v 1.22 2009/03/20 18:11:23 urban Exp $
    27 // GEANT4 tag $Name: geant4-09-03-cand-01 $
     27// GEANT4 tag $Name: geant4-09-03 $
    2828//
    2929// -------------------------------------------------------------------
  • trunk/source/processes/electromagnetic/standard/src/G4UrbanMscModel.cc

    r1196 r1228  
    2626//
    2727// $Id: G4UrbanMscModel.cc,v 1.91 2009/07/20 18:41:34 vnivanch Exp $
    28 // GEANT4 tag $Name: geant4-09-03-cand-01 $
     28// GEANT4 tag $Name: geant4-09-03 $
    2929//
    3030// -------------------------------------------------------------------
  • trunk/source/processes/electromagnetic/standard/src/G4UrbanMscModel2.cc

    r1196 r1228  
    2626//
    2727// $Id: G4UrbanMscModel2.cc,v 1.27 2009/07/20 18:41:34 vnivanch Exp $
    28 // GEANT4 tag $Name: geant4-09-03-cand-01 $
     28// GEANT4 tag $Name: geant4-09-03 $
    2929//
    3030// -------------------------------------------------------------------
  • trunk/source/processes/electromagnetic/standard/src/G4UrbanMscModel90.cc

    r1196 r1228  
    2525//
    2626// $Id: G4UrbanMscModel90.cc,v 1.13 2009/04/10 18:10:58 vnivanch Exp $
    27 // GEANT4 tag $Name: geant4-09-03-cand-01 $
     27// GEANT4 tag $Name: geant4-09-03 $
    2828//
    2929// -------------------------------------------------------------------
  • trunk/source/processes/electromagnetic/standard/src/G4UrbanMscModel92.cc

    r1197 r1228  
    2626//
    2727// $Id: G4UrbanMscModel92.cc,v 1.1 2009/11/01 13:05:01 vnivanch Exp $
    28 // GEANT4 tag $Name: geant4-09-03-cand-01 $
     28// GEANT4 tag $Name: geant4-09-03 $
    2929//
    3030// -------------------------------------------------------------------
  • trunk/source/processes/electromagnetic/standard/src/G4UrbanMscModel93.cc

    r1197 r1228  
    2626//
    2727// $Id: G4UrbanMscModel93.cc,v 1.1 2009/11/01 13:05:01 vnivanch Exp $
    28 // GEANT4 tag $Name: geant4-09-03-cand-01 $
     28// GEANT4 tag $Name: geant4-09-03 $
    2929//
    3030// -------------------------------------------------------------------
  • trunk/source/processes/electromagnetic/standard/src/G4WaterStopping.cc

    r1196 r1228  
    2525//
    2626// $Id: G4WaterStopping.cc,v 1.18 2009/06/19 10:39:48 vnivanch Exp $
    27 // GEANT4 tag $Name: geant4-09-03-cand-01 $
     27// GEANT4 tag $Name: geant4-09-03 $
    2828
    2929//---------------------------------------------------------------------------
  • trunk/source/processes/electromagnetic/standard/src/G4WentzelVIModel.cc

    r1196 r1228  
    2525//
    2626// $Id: G4WentzelVIModel.cc,v 1.37 2009/10/28 10:14:13 vnivanch Exp $
    27 // GEANT4 tag $Name: geant4-09-03-cand-01 $
     27// GEANT4 tag $Name: geant4-09-03 $
    2828//
    2929// -------------------------------------------------------------------
  • trunk/source/processes/electromagnetic/standard/src/G4alphaIonisation.cc

    r1197 r1228  
    2525//
    2626// $Id: G4alphaIonisation.cc,v 1.1 2009/11/10 11:50:30 vnivanch Exp $
    27 // GEANT4 tag $Name: geant4-09-03-cand-01 $
     27// GEANT4 tag $Name: geant4-09-03 $
    2828//
    2929// -------------------------------------------------------------------
  • trunk/source/processes/electromagnetic/standard/src/G4eBremsstrahlung.cc

    r1196 r1228  
    2525//
    2626// $Id: G4eBremsstrahlung.cc,v 1.56 2009/02/20 12:06:37 vnivanch Exp $
    27 // GEANT4 tag $Name: geant4-09-03-cand-01 $
     27// GEANT4 tag $Name: geant4-09-03 $
    2828//
    2929// -------------------------------------------------------------------
  • trunk/source/processes/electromagnetic/standard/src/G4eBremsstrahlungModel.cc

    r1196 r1228  
    2525//
    2626// $Id: G4eBremsstrahlungModel.cc,v 1.44 2009/04/09 18:41:18 vnivanch Exp $
    27 // GEANT4 tag $Name: geant4-09-03-cand-01 $
     27// GEANT4 tag $Name: geant4-09-03 $
    2828//
    2929// -------------------------------------------------------------------
  • trunk/source/processes/electromagnetic/standard/src/G4eBremsstrahlungRelModel.cc

    r1196 r1228  
    2525//
    2626// $Id: G4eBremsstrahlungRelModel.cc,v 1.14 2009/04/09 18:41:18 vnivanch Exp $
    27 // GEANT4 tag $Name: geant4-09-03-cand-01 $
     27// GEANT4 tag $Name: geant4-09-03 $
    2828//
    2929// -------------------------------------------------------------------
  • trunk/source/processes/electromagnetic/standard/src/G4eCoulombScatteringModel.cc

    r1196 r1228  
    2525//
    2626// $Id: G4eCoulombScatteringModel.cc,v 1.78 2009/10/28 10:14:13 vnivanch Exp $
    27 // GEANT4 tag $Name: geant4-09-03-cand-01 $
     27// GEANT4 tag $Name: geant4-09-03 $
    2828//
    2929// -------------------------------------------------------------------
  • trunk/source/processes/electromagnetic/standard/src/G4eIonisation.cc

    r1196 r1228  
    2525//
    2626// $Id: G4eIonisation.cc,v 1.57 2009/02/20 12:06:37 vnivanch Exp $
    27 // GEANT4 tag $Name: geant4-09-03-cand-01 $
     27// GEANT4 tag $Name: geant4-09-03 $
    2828//
    2929// -------------------------------------------------------------------
  • trunk/source/processes/electromagnetic/standard/src/G4eMultipleScattering.cc

    r1196 r1228  
    2525//
    2626// $Id: G4eMultipleScattering.cc,v 1.10 2009/11/01 13:05:01 vnivanch Exp $
    27 // GEANT4 tag $Name: geant4-09-03-cand-01 $
     27// GEANT4 tag $Name: geant4-09-03 $
    2828//
    2929// -----------------------------------------------------------------------------
  • trunk/source/processes/electromagnetic/standard/src/G4eeToTwoGammaModel.cc

    r1196 r1228  
    2525//
    2626// $Id: G4eeToTwoGammaModel.cc,v 1.15 2009/04/09 18:41:18 vnivanch Exp $
    27 // GEANT4 tag $Name: geant4-09-03-cand-01 $
     27// GEANT4 tag $Name: geant4-09-03 $
    2828//
    2929// -------------------------------------------------------------------
  • trunk/source/processes/electromagnetic/standard/src/G4eplusAnnihilation.cc

    r1196 r1228  
    2525//
    2626// $Id: G4eplusAnnihilation.cc,v 1.30 2009/02/20 12:06:37 vnivanch Exp $
    27 // GEANT4 tag $Name: geant4-09-03-cand-01 $
     27// GEANT4 tag $Name: geant4-09-03 $
    2828//
    2929// -------------------------------------------------------------------
  • trunk/source/processes/electromagnetic/standard/src/G4hIonisation.cc

    r1196 r1228  
    2525//
    2626// $Id: G4hIonisation.cc,v 1.82 2009/02/20 12:06:37 vnivanch Exp $
    27 // GEANT4 tag $Name: geant4-09-03-cand-01 $
     27// GEANT4 tag $Name: geant4-09-03 $
    2828//
    2929// -------------------------------------------------------------------
  • trunk/source/processes/electromagnetic/standard/src/G4hMultipleScattering.cc

    r1196 r1228  
    2525//
    2626// $Id: G4hMultipleScattering.cc,v 1.16 2009/11/01 13:05:01 vnivanch Exp $
    27 // GEANT4 tag $Name: geant4-09-03-cand-01 $
     27// GEANT4 tag $Name: geant4-09-03 $
    2828//
    2929// -----------------------------------------------------------------------------
  • trunk/source/processes/electromagnetic/standard/src/G4ionGasIonisation.cc

    r1196 r1228  
    2525//
    2626// $Id: G4ionGasIonisation.cc,v 1.15 2009/11/10 11:50:30 vnivanch Exp $
    27 // GEANT4 tag $Name: geant4-09-03-cand-01 $
     27// GEANT4 tag $Name: geant4-09-03 $
    2828//
    2929// -------------------------------------------------------------------
  • trunk/source/processes/electromagnetic/standard/src/G4ionIonisation.cc

    r1196 r1228  
    2424// ********************************************************************
    2525//
    26 // $Id: G4ionIonisation.cc,v 1.66 2009/02/20 12:06:37 vnivanch Exp $
    27 // GEANT4 tag $Name: geant4-09-03-cand-01 $
     26// $Id: G4ionIonisation.cc,v 1.70 2009/11/27 20:06:32 vnivanch Exp $
     27// GEANT4 tag $Name: geant4-09-03 $
    2828//
    2929// -------------------------------------------------------------------
     
    8989    nuclearStopping(true)
    9090{
    91   SetLinearLossLimit(0.15);
     91  SetLinearLossLimit(0.02);
    9292  SetStepFunction(0.1, 0.1*mm);
    9393  SetIntegral(true);
Note: See TracChangeset for help on using the changeset viewer.