154 lines
4.5 KiB
C++
154 lines
4.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: G4OpWLS.hh,v 1.1 2003/09/23 22:23:57 gum Exp $
|
|
// GEANT4 tag $Name: geant4-06-00-patch-01 $
|
|
//
|
|
////////////////////////////////////////////////////////////////////////
|
|
// Optical Photon WaveLength Shifting (WLS) Class Definition
|
|
////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// File: G4OpWLS.hh
|
|
// Description: Discrete Process -- Wavelength Shifting of Optical Photons
|
|
// Version: 1.0
|
|
// Created: 2003-05-13
|
|
// Author: John Paul Archambault
|
|
// (Adaptation of G4Scintillation and G4OpAbsorption)
|
|
// Updated:
|
|
// mail: gum@triumf.ca
|
|
// jparcham@phys.ualberta.ca
|
|
//
|
|
////////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef G4OpWLS_h
|
|
#define G4OpWLS_h 1
|
|
|
|
/////////////
|
|
// Includes
|
|
/////////////
|
|
|
|
#include "globals.hh"
|
|
#include "templates.hh"
|
|
#include "Randomize.hh"
|
|
#include "G4Poisson.hh"
|
|
#include "G4ThreeVector.hh"
|
|
#include "G4ParticleMomentum.hh"
|
|
#include "G4Step.hh"
|
|
#include "G4VDiscreteProcess.hh"
|
|
#include "G4DynamicParticle.hh"
|
|
#include "G4Material.hh"
|
|
#include "G4OpticalPhoton.hh"
|
|
#include "G4PhysicsTable.hh"
|
|
#include "G4MaterialPropertiesTable.hh"
|
|
#include "G4PhysicsOrderedFreeVector.hh"
|
|
|
|
// Class Description:
|
|
// Discrete Process -- Bulk absorption of Optical Photons.
|
|
// Class inherits publicly from G4VDiscreteProcess
|
|
// Class Description - End:
|
|
|
|
/////////////////////
|
|
// Class Definition
|
|
/////////////////////
|
|
|
|
class G4OpWLS : public G4VDiscreteProcess
|
|
{
|
|
|
|
public: // Without description
|
|
|
|
////////////////////////////////
|
|
// Constructors and Destructor
|
|
////////////////////////////////
|
|
|
|
G4OpWLS(const G4String& processName = "OpWLS");
|
|
|
|
~G4OpWLS();
|
|
|
|
////////////
|
|
// Methods
|
|
////////////
|
|
|
|
public: // With description
|
|
|
|
G4bool IsApplicable(const G4ParticleDefinition& aParticleType);
|
|
// Returns true -> 'is applicable' only for an optical photon.
|
|
|
|
G4double GetMeanFreePath(const G4Track& aTrack,
|
|
G4double ,
|
|
G4ForceCondition* );
|
|
// Returns the absorption length for bulk absorption of optical
|
|
// photons in media with a specified attenuation length.
|
|
|
|
G4VParticleChange* PostStepDoIt(const G4Track& aTrack,
|
|
const G4Step& aStep);
|
|
// This is the method implementing bulk absorption of optical
|
|
// photons.
|
|
|
|
G4PhysicsTable* GetIntegralTable() const;
|
|
// Returns the address of the WLS integral table.
|
|
|
|
void DumpPhysicsTable() const;
|
|
// Prints the WLS integral table.
|
|
|
|
private:
|
|
|
|
void BuildThePhysicsTable();
|
|
// Is the WLS integral table;
|
|
|
|
protected:
|
|
|
|
G4PhysicsTable* theIntegralTable;
|
|
|
|
};
|
|
|
|
////////////////////
|
|
// Inline methods
|
|
////////////////////
|
|
|
|
inline
|
|
G4bool G4OpWLS::IsApplicable(const G4ParticleDefinition& aParticleType)
|
|
{
|
|
return ( &aParticleType == G4OpticalPhoton::OpticalPhoton() );
|
|
}
|
|
|
|
inline
|
|
G4PhysicsTable* G4OpWLS::GetIntegralTable() const
|
|
{
|
|
return theIntegralTable;
|
|
}
|
|
|
|
inline
|
|
void G4OpWLS::DumpPhysicsTable() const
|
|
{
|
|
G4int PhysicsTableSize = theIntegralTable->entries();
|
|
G4PhysicsOrderedFreeVector *v;
|
|
|
|
for (G4int i = 0 ; i < PhysicsTableSize ; i++ )
|
|
{
|
|
v = (G4PhysicsOrderedFreeVector*)(*theIntegralTable)[i];
|
|
v->DumpValues();
|
|
}
|
|
}
|
|
|
|
#endif /* G4OpWLS_h */
|