Import Geant4 11.0.0.beta source tree
This commit is contained in:
@@ -23,43 +23,41 @@
|
||||
// * acceptance of all terms of the Geant4 Software license. *
|
||||
// ********************************************************************
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
///////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
//
|
||||
// Model describing a regular radiator of X-ray transition radiation.
|
||||
// It is Garibian like model for XTR after radiator
|
||||
// It is Garibian like model for XTR after radiator
|
||||
// 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:
|
||||
// 10.10.05 V. Grichine, first version
|
||||
// 10.10.05 V. Grichine, first version
|
||||
//
|
||||
|
||||
#ifndef G4XTRRegularRadModel_h
|
||||
#define G4XTRRegularRadModel_h 1
|
||||
|
||||
#include "G4LogicalVolume.hh"
|
||||
#include "G4Material.hh"
|
||||
#include "G4VXTRenergyLoss.hh"
|
||||
|
||||
class G4XTRRegularRadModel : public G4VXTRenergyLoss
|
||||
{
|
||||
public:
|
||||
public:
|
||||
explicit G4XTRRegularRadModel(G4LogicalVolume* anEnvelope, G4Material*,
|
||||
G4Material*, G4double, G4double, G4int,
|
||||
const G4String& processName = "XTRegularModel");
|
||||
~G4XTRRegularRadModel();
|
||||
|
||||
explicit G4XTRRegularRadModel (G4LogicalVolume *anEnvelope,G4Material*,
|
||||
G4Material*, G4double,G4double,G4int,
|
||||
const G4String & processName = "XTRegularModel");
|
||||
virtual ~G4XTRRegularRadModel ();
|
||||
void ProcessDescription(std::ostream&) const override;
|
||||
void DumpInfo() const override { ProcessDescription(G4cout); };
|
||||
|
||||
G4double SpectralXTRdEdx(G4double energy) override;
|
||||
|
||||
// Pure virtual function from base class
|
||||
|
||||
G4double GetStackFactor(G4double energy, G4double gamma,
|
||||
G4double GetStackFactor(G4double energy, G4double gamma,
|
||||
G4double varAngle) override;
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user