Import Geant4 11.0.0.beta source tree

This commit is contained in:
Gabriele Cosmo
2021-06-25 16:12:29 +02:00
parent c968e26a39
commit 6399a014b6
4200 changed files with 207479 additions and 237366 deletions
@@ -23,45 +23,41 @@
// * acceptance of all terms of the Geant4 Software license. *
// ********************************************************************
//
//
//
//
///////////////////////////////////////////////////////////////////////////
//
// Process describing a radiator of X-ray transition radiation.
//
// Process describing a radiator of X-ray transition radiation.
// Thicknesses of plates and gas gaps are fixed.
// We suppose that:
// formation zone ~ mean thickness << absorption length
// for each material and in the range 1-100 keV. This allows us to simplify
// interference effects in radiator stack (GetStackFactor method).
//
//
// History:
// 16.01.02 V. Grichine, first version
//
//
// History:
// 16.01.02 V. Grichine, first version
//
#ifndef G4RegularXTRadiator_h
#define G4RegularXTRadiator_h 1
#include "G4Material.hh"
#include "G4VXTRenergyLoss.hh"
class G4RegularXTRadiator : public G4VXTRenergyLoss
{
public:
explicit G4RegularXTRadiator (G4LogicalVolume *anEnvelope,
G4Material*,G4Material*,
G4double,G4double,G4int,
const G4String & processName = "XTRegularRadiator");
~G4RegularXTRadiator ();
public:
explicit G4RegularXTRadiator(
G4LogicalVolume* anEnvelope, G4Material*, G4Material*, G4double, G4double,
G4int, const G4String& processName = "XTRegularRadiator");
~G4RegularXTRadiator();
G4double SpectralXTRdEdx(G4double energy) override;
// Pure virtual function from base class
G4double GetStackFactor(G4double energy, G4double gamma,
G4double varAngle) override;
G4double GetStackFactor( G4double energy, G4double gamma,
G4double varAngle) override;
void ProcessDescription(std::ostream&) const override;
void DumpInfo() const override { ProcessDescription(G4cout); };
};
#endif