Ignore:
Timestamp:
Nov 19, 2009, 2:53:25 PM (15 years ago)
Author:
garnier
Message:

update par rapport a CVS

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/source/processes/electromagnetic/lowenergy/src/G4PenelopeIonisationModel.cc

    r1055 r1192  
    2424// ********************************************************************
    2525//
    26 // $Id: G4PenelopeIonisationModel.cc,v 1.5 2009/05/19 14:57:01 pandola Exp $
    27 // GEANT4 tag $Name: geant4-09-03-beta-cand-01 $
     26// $Id: G4PenelopeIonisationModel.cc,v 1.10 2009/10/23 09:29:24 pandola Exp $
     27// GEANT4 tag $Name: emlowen-V09-02-64 $
    2828//
    2929// Author: Luciano Pandola
     
    3939// 19 May 2009   L Pandola    Explicitely set to zero pointers deleted in
    4040//                            Initialise(), since they might be checked later on
     41// 21 Oct 2009   L Pandola    Remove un-necessary fUseAtomicDeexcitation flag - now managed by
     42//                            G4VEmModel::DeexcitationFlag()
     43//                            Add ActivateAuger() method
    4144//
    4245
     
    7780  SetHighEnergyLimit(fIntrinsicHighEnergyLimit);
    7881  //
    79  
    80   fUseAtomicDeexcitation = true;
     82  // Atomic deexcitation model activated by default
     83  SetDeexcitationFlag(true);
    8184  verboseLevel= 0;
    8285 
     
    17211724
    17221725
     1726//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
     1727
     1728void G4PenelopeIonisationModel::ActivateAuger(G4bool augerbool)
     1729{
     1730  if (!DeexcitationFlag() && augerbool)
     1731    {
     1732      G4cout << "WARNING - G4PenelopeIonisationModel" << G4endl;
     1733      G4cout << "The use of the Atomic Deexcitation Manager is set to false " << G4endl;
     1734      G4cout << "Therefore, Auger electrons will be not generated anyway" << G4endl;
     1735    }
     1736  deexcitationManager.ActivateAugerElectronProduction(augerbool);
     1737  if (verboseLevel > 1)
     1738    G4cout << "Auger production set to " << augerbool << G4endl;
     1739}
     1740
     1741//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
Note: See TracChangeset for help on using the changeset viewer.