184 lines
6.8 KiB
C++
184 lines
6.8 KiB
C++
//
|
|
// ********************************************************************
|
|
// * License and Disclaimer *
|
|
// * *
|
|
// * The Geant4 software is copyright of the Copyright Holders of *
|
|
// * the Geant4 Collaboration. It is provided under the terms and *
|
|
// * conditions of the Geant4 Software License, included in the file *
|
|
// * LICENSE and available at http://cern.ch/geant4/license . These *
|
|
// * include a list of copyright holders. *
|
|
// * *
|
|
// * 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. Please see the license in the file LICENSE and URL above *
|
|
// * for the full disclaimer and the limitation of liability. *
|
|
// * *
|
|
// * This code implementation is the result of the scientific and *
|
|
// * technical work of the GEANT4 collaboration. *
|
|
// * By using, copying, modifying or distributing the software (or *
|
|
// * any work based on the software) you agree to acknowledge its *
|
|
// * use in resulting scientific publications, and indicate your *
|
|
// * acceptance of all terms of the Geant4 Software license. *
|
|
// ********************************************************************
|
|
//
|
|
////////////////////////////////////////////////////////////////////////
|
|
// Cerenkov Radiation Class Definition
|
|
////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// File: G4Cerenkov.hh
|
|
// Description: Discrete Process - Generation of Cerenkov Photons
|
|
// Version: 2.0
|
|
// Created: 1996-02-21
|
|
// Author: Juliet Armstrong
|
|
// Updated: 2007-09-30 change inheritance to G4VDiscreteProcess
|
|
// 2005-07-28 add G4ProcessType to constructor
|
|
// 1999-10-29 add method and class descriptors
|
|
// 1997-04-09 by Peter Gumplinger
|
|
// > G4MaterialPropertiesTable; new physics/tracking scheme
|
|
//
|
|
////////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef G4Cerenkov_h
|
|
#define G4Cerenkov_h 1
|
|
|
|
#include "globals.hh"
|
|
#include "G4DynamicParticle.hh"
|
|
#include "G4ForceCondition.hh"
|
|
#include "G4GPILSelection.hh"
|
|
#include "G4MaterialPropertyVector.hh"
|
|
#include "G4VDiscreteProcess.hh"
|
|
|
|
#include <map>
|
|
|
|
class G4Material;
|
|
class G4ParticleDefinition;
|
|
class G4PhysicsTable;
|
|
class G4Step;
|
|
class G4Track;
|
|
class G4VParticleChange;
|
|
|
|
class G4Cerenkov : public G4VDiscreteProcess
|
|
{
|
|
public:
|
|
explicit G4Cerenkov(const G4String& processName = "Cerenkov",
|
|
G4ProcessType type = fElectromagnetic);
|
|
~G4Cerenkov() override;
|
|
|
|
G4Cerenkov(const G4Cerenkov& right) = delete;
|
|
G4Cerenkov& operator=(const G4Cerenkov& right) = delete;
|
|
|
|
G4bool IsApplicable(const G4ParticleDefinition& aParticleType) override;
|
|
// Returns true -> 'is applicable', for all charged particles
|
|
// except short-lived particles.
|
|
|
|
void BuildPhysicsTable(const G4ParticleDefinition& aParticleType) override;
|
|
// Build table at a right time
|
|
|
|
void PreparePhysicsTable(const G4ParticleDefinition& part) override;
|
|
|
|
G4double GetMeanFreePath(const G4Track& aTrack, G4double, G4ForceCondition*) override;
|
|
// Returns the discrete step limit and sets the 'StronglyForced'
|
|
// condition for the DoIt to be invoked at every step.
|
|
|
|
G4double PostStepGetPhysicalInteractionLength(const G4Track& aTrack, G4double,
|
|
G4ForceCondition*) override;
|
|
// Returns the discrete step limit and sets the 'StronglyForced'
|
|
// condition for the DoIt to be invoked at every step.
|
|
|
|
G4VParticleChange* PostStepDoIt(const G4Track& aTrack,
|
|
const G4Step& aStep) override;
|
|
// This is the method implementing the Cerenkov process.
|
|
|
|
void SetTrackSecondariesFirst(const G4bool state);
|
|
// If set, the primary particle tracking is interrupted and any
|
|
// produced Cerenkov photons are tracked next. When all have
|
|
// been tracked, the tracking of the primary resumes.
|
|
|
|
G4bool GetTrackSecondariesFirst() const;
|
|
// Returns the boolean flag for tracking secondaries first.
|
|
|
|
void SetMaxBetaChangePerStep(const G4double d);
|
|
// Set the maximum allowed change in beta = v/c in % (perCent) per step.
|
|
|
|
G4double GetMaxBetaChangePerStep() const;
|
|
// Returns the maximum allowed change in beta = v/c in % (perCent)
|
|
|
|
void SetMaxNumPhotonsPerStep(const G4int NumPhotons);
|
|
// Set the maximum number of Cerenkov photons allowed to be generated during
|
|
// a tracking step. This is an average ONLY; the actual number will vary
|
|
// around this average. If invoked, the maximum photon stack will roughly be
|
|
// of the size set. If not called, the step is not limited by the number of
|
|
// photons generated.
|
|
|
|
G4int GetMaxNumPhotonsPerStep() const;
|
|
// Returns the maximum number of Cerenkov photons allowed to be
|
|
// generated during a tracking step.
|
|
|
|
void SetStackPhotons(const G4bool);
|
|
// Call by the user to set the flag for stacking the Cerenkov photons
|
|
|
|
G4bool GetStackPhotons() const;
|
|
// Return the boolean for whether or not the Cerenkov photons are stacked
|
|
|
|
G4int GetNumPhotons() const;
|
|
// Returns the current number of scint. photons (after PostStepDoIt)
|
|
|
|
G4PhysicsTable* GetPhysicsTable() const;
|
|
// Returns the address of the physics table.
|
|
|
|
void DumpPhysicsTable() const;
|
|
// Prints the physics table.
|
|
|
|
G4double GetAverageNumberOfPhotons(const G4double charge, const G4double beta,
|
|
const G4Material* aMaterial,
|
|
G4MaterialPropertyVector* Rindex) const;
|
|
|
|
void DumpInfo() const override;
|
|
void ProcessDescription(std::ostream& out) const override;
|
|
|
|
void SetVerboseLevel(G4int);
|
|
// sets verbosity
|
|
|
|
protected:
|
|
G4PhysicsTable* thePhysicsTable;
|
|
std::map<std::size_t, std::size_t> fIndexMPT;
|
|
|
|
private:
|
|
void Initialise();
|
|
|
|
G4double fMaxBetaChange;
|
|
|
|
G4int fMaxPhotons;
|
|
G4int fNumPhotons;
|
|
|
|
G4bool fStackingFlag;
|
|
G4bool fTrackSecondariesFirst;
|
|
|
|
G4int secID = -1; // creator modelID
|
|
};
|
|
|
|
inline G4bool G4Cerenkov::GetTrackSecondariesFirst() const
|
|
{
|
|
return fTrackSecondariesFirst;
|
|
}
|
|
|
|
inline G4double G4Cerenkov::GetMaxBetaChangePerStep() const
|
|
{
|
|
return fMaxBetaChange;
|
|
}
|
|
|
|
inline G4int G4Cerenkov::GetMaxNumPhotonsPerStep() const { return fMaxPhotons; }
|
|
|
|
inline G4bool G4Cerenkov::GetStackPhotons() const { return fStackingFlag; }
|
|
|
|
inline G4int G4Cerenkov::GetNumPhotons() const { return fNumPhotons; }
|
|
|
|
inline G4PhysicsTable* G4Cerenkov::GetPhysicsTable() const
|
|
{
|
|
return thePhysicsTable;
|
|
}
|
|
|
|
#endif /* G4Cerenkov_h */
|