Files
geant4/source/processes/parameterisation/include/G4FastTrack.hh
T
2023-12-08 10:43:34 +01:00

237 lines
7.9 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. *
// ********************************************************************
//
//
//
//---------------------------------------------------------------
//
// G4FastTrack.hh
//
// Description:
// Keeps the current track information and special features
// for Parameterised Simulation Models.
//
// History:
// Oct 97: Verderi && MoraDeFreitas - First Implementation.
//
//---------------------------------------------------------------
#ifndef G4FastTrack_h
#define G4FastTrack_h
#include "G4AffineTransform.hh"
#include "G4LogicalVolume.hh"
#include "G4Navigator.hh"
#include "G4Region.hh"
#include "G4Track.hh"
#include "G4VSolid.hh"
//---------------------------
// For possible future needs:
//---------------------------
using G4Envelope = G4Region;
//-------------------------------------------
//
// G4FastTrack class
//
//-------------------------------------------
// Class Description:
// The G4FastTrack provides you access to the current G4Track,
// gives simple access to envelope related features (G4Region,
// G4LogicalVolume, G4VSolid, G4AffineTransform references between
// the global and the envelope local coordinates systems) and
// simple access to the position, momentum expressed in the
// envelope coordinate system. Using those quantities and the
// G4VSolid methods, you can for example easily check how far you
// are from the envelope boundary.
//
class G4FastTrack
{
public: // without description
//------------------------
// Constructor/Destructor
//------------------------
// Only one Constructor. By default the envelope can
// be placed n-Times. If the user is sure that it'll be
// placed just one time, the IsUnique flag should be set
// TRUE to avoid the G4AffineTransform re-calculations each
// time we reach the envelope.
G4FastTrack(G4Envelope* anEnvelope, G4bool IsUnique);
~G4FastTrack() = default;
//------------------------------------------------------------
// The fast simulation manager uses the SetCurrentTrack
// method to setup the current G4FastTrack object
//------------------------------------------------------------
void SetCurrentTrack(const G4Track&, const G4Navigator* a = nullptr);
//------------------------------------------------------------
// The fast simulation manager uses the OnTheBoundaryButExiting
// method to test if the particle is leaving the envelope.
//------------------------------------------------------------
G4bool OnTheBoundaryButExiting() const;
//----------------------------------
// Informations useful to the user :
// General public get functions.
//----------------------------------
// Returns the current G4Track.
const G4Track* GetPrimaryTrack() const;
// Returns the Envelope G4Region pointer.
G4Envelope* GetEnvelope() const;
// Returns the Envelope G4LogicalVolume pointer.
G4LogicalVolume* GetEnvelopeLogicalVolume() const;
// Returns the Envelope G4VPhysicalVolume pointer.
G4VPhysicalVolume* GetEnvelopePhysicalVolume() const;
// Returns the Envelope G4VSolid pointer.
G4VSolid* GetEnvelopeSolid() const;
//-----------------------------------
// Primary track informations in the
// Envelope coordinate system.
//-----------------------------------
// Returns the particle position in envelope coordinates.
G4ThreeVector GetPrimaryTrackLocalPosition() const;
// Returns the particle momentum in envelope coordinates.
G4ThreeVector GetPrimaryTrackLocalMomentum() const;
// Returns the particle direction in envelope coordinates.
G4ThreeVector GetPrimaryTrackLocalDirection() const;
// Returns the particle polarization in envelope coordinates.
G4ThreeVector GetPrimaryTrackLocalPolarization() const;
//------------------------------------
// 3D transformation of the envelope:
//------------------------------------
// Returns the envelope Global -> Local G4AffineTransform
const G4AffineTransform* GetAffineTransformation() const;
// Returns the envelope Local -> Global G4AffineTransform
const G4AffineTransform* GetInverseAffineTransformation() const;
private:
//-----------------
// Private members
//-----------------
// Current G4Track pointer
const G4Track* fTrack{nullptr};
//------------------------------------------------
// Records the Affine/InverseAffine transformation
// of the envelope.
//------------------------------------------------
void FRecordsAffineTransformation(const G4Navigator*);
G4bool fAffineTransformationDefined{false};
G4Envelope* fEnvelope;
G4bool fIsUnique;
G4LogicalVolume* fEnvelopeLogicalVolume{nullptr};
G4VPhysicalVolume* fEnvelopePhysicalVolume{nullptr};
G4VSolid* fEnvelopeSolid{nullptr};
G4ThreeVector fLocalTrackPosition, fLocalTrackMomentum, fLocalTrackDirection,
fLocalTrackPolarization;
G4AffineTransform fAffineTransformation, fInverseAffineTransformation;
};
// -----------------
// -- Inline methods
// -----------------
inline G4Envelope* G4FastTrack::GetEnvelope() const
{
return fEnvelope;
}
inline G4LogicalVolume* G4FastTrack::GetEnvelopeLogicalVolume() const
{
return fEnvelopeLogicalVolume;
}
inline G4VPhysicalVolume* G4FastTrack::GetEnvelopePhysicalVolume() const
{
return fEnvelopePhysicalVolume;
}
inline G4VSolid* G4FastTrack::GetEnvelopeSolid() const
{
return fEnvelopeSolid;
}
inline const G4Track* G4FastTrack::GetPrimaryTrack() const
{
return fTrack;
}
inline G4ThreeVector G4FastTrack::GetPrimaryTrackLocalPosition() const
{
return fLocalTrackPosition;
}
inline G4ThreeVector G4FastTrack::GetPrimaryTrackLocalMomentum() const
{
return fLocalTrackMomentum;
}
inline G4ThreeVector G4FastTrack::GetPrimaryTrackLocalDirection() const
{
return fLocalTrackDirection;
}
inline G4ThreeVector G4FastTrack::GetPrimaryTrackLocalPolarization() const
{
return fLocalTrackPolarization;
}
inline const G4AffineTransform* G4FastTrack::GetAffineTransformation() const
{
return &fAffineTransformation;
}
inline const G4AffineTransform* G4FastTrack::GetInverseAffineTransformation() const
{
return &fInverseAffineTransformation;
}
inline G4bool G4FastTrack::OnTheBoundaryButExiting() const
{
// tests if particle are on the boundary and leaving.
return GetEnvelopeSolid()->DistanceToOut(GetPrimaryTrackLocalPosition(),
GetPrimaryTrackLocalDirection())
== 0.;
}
#endif