120 lines
3.5 KiB
C++
120 lines
3.5 KiB
C++
//
|
|
// ********************************************************************
|
|
// * DISCLAIMER *
|
|
// * *
|
|
// * The following disclaimer summarizes all the specific disclaimers *
|
|
// * of contributors to this software. The specific disclaimers,which *
|
|
// * govern, are listed with their locations in: *
|
|
// * http://cern.ch/geant4/license *
|
|
// * *
|
|
// * Neither the authors of this software system, nor their employing *
|
|
// * institutes,nor the agencies providing financial support for this *
|
|
// * work make any representation or warranty, express or implied, *
|
|
// * regarding this software system or assume any liability for its *
|
|
// * use. *
|
|
// * *
|
|
// * This code implementation is the intellectual property of the *
|
|
// * GEANT4 collaboration. *
|
|
// * By copying, distributing or modifying the Program (or any work *
|
|
// * based on the Program) you indicate your acceptance of this *
|
|
// * statement, and all its terms. *
|
|
// ********************************************************************
|
|
//
|
|
//
|
|
// $Id: G4ParticleChangeForLoss.hh,v 1.4 2001/07/11 10:08:35 gunter Exp $
|
|
// GEANT4 tag $Name: geant4-06-00 $
|
|
//
|
|
//
|
|
// ------------------------------------------------------------
|
|
// GEANT 4 class header file
|
|
//
|
|
//
|
|
// ------------------------------------------------------------
|
|
// Implemented for the new scheme 23 Mar. 1998 H.Kurahige
|
|
//
|
|
// Class Description
|
|
// This class is a concrete class for ParticleChange for EnergyLoss
|
|
//
|
|
#ifndef G4ParticleChangeForLoss_h
|
|
#define G4ParticleChangeForLoss_h 1
|
|
|
|
#include "globals.hh"
|
|
#include "G4ios.hh"
|
|
class G4DynamicParticle;
|
|
#include "G4VParticleChange.hh"
|
|
|
|
class G4ParticleChangeForLoss: public G4VParticleChange
|
|
{
|
|
public:
|
|
// default constructor
|
|
G4ParticleChangeForLoss();
|
|
|
|
// destructor
|
|
virtual ~G4ParticleChangeForLoss();
|
|
|
|
protected:
|
|
// hide copy constructor and assignment operaor as protected
|
|
G4ParticleChangeForLoss(const G4ParticleChangeForLoss &right);
|
|
G4ParticleChangeForLoss & operator=(const G4ParticleChangeForLoss &right);
|
|
|
|
public:
|
|
// equal/unequal operator
|
|
G4bool operator==(const G4ParticleChangeForLoss &right) const;
|
|
G4bool operator!=(const G4ParticleChangeForLoss &right) const;
|
|
|
|
|
|
public: // with description
|
|
// ----------------------------------------------------
|
|
// --- the following methods are for updating G4Step -----
|
|
virtual G4Step* UpdateStepForAlongStep(G4Step* Step);
|
|
|
|
virtual void Initialize(const G4Track&);
|
|
// Initialize all propoerties by using G4Track information
|
|
|
|
G4double GetEnergyChange() const;
|
|
void SetEnergyChange(G4double theEnergyChange);
|
|
// Get/Set the final kinetic energy of the current particle.
|
|
|
|
|
|
public:
|
|
virtual void DumpInfo() const;
|
|
|
|
protected:
|
|
G4double theEnergyChange;
|
|
// The final kinetic energy of the current particle.
|
|
|
|
public:
|
|
// for Debug
|
|
virtual G4bool CheckIt(const G4Track&);
|
|
};
|
|
|
|
inline
|
|
G4double G4ParticleChangeForLoss::GetEnergyChange() const
|
|
{
|
|
return theEnergyChange;
|
|
}
|
|
|
|
inline
|
|
void G4ParticleChangeForLoss::SetEnergyChange(G4double Energy)
|
|
{
|
|
theEnergyChange = Energy;
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|