Ignore:
Timestamp:
Apr 6, 2009, 12:21:12 PM (16 years ago)
Author:
garnier
Message:

update processes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/source/processes/electromagnetic/utils/src/G4VEmFluctuationModel.cc

    r819 r961  
    2424// ********************************************************************
    2525//
    26 // $Id: G4VEmFluctuationModel.cc,v 1.2 2006/06/29 19:55:15 gunter Exp $
    27 // GEANT4 tag $Name: $
     26// $Id: G4VEmFluctuationModel.cc,v 1.4 2009/02/19 11:25:50 vnivanch Exp $
     27// GEANT4 tag $Name: geant4-09-02-ref-02 $
    2828//
    2929// -------------------------------------------------------------------
     
    4949
    5050#include "G4VEmFluctuationModel.hh"
    51 
     51#include "G4LossTableManager.hh"
    5252
    5353//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
     
    5656G4VEmFluctuationModel::G4VEmFluctuationModel(const G4String& nam)
    5757  : name(nam)
     58{
     59  G4LossTableManager::Instance()->Register(this);
     60}
     61
     62G4VEmFluctuationModel::~G4VEmFluctuationModel()
     63{
     64  G4LossTableManager::Instance()->DeRegister(this);
     65}
     66
     67void G4VEmFluctuationModel::InitialiseMe(const G4ParticleDefinition*)
    5868{}
    5969
    60 G4VEmFluctuationModel::~G4VEmFluctuationModel()
     70void G4VEmFluctuationModel::SetParticleAndCharge(const G4ParticleDefinition*,
     71                                                 G4double)
    6172{}
    6273
Note: See TracChangeset for help on using the changeset viewer.