// This code implementation is the intellectual property of // the RD44 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: G4RegularXrayTRmodel.hh,v 1.1 2000/11/14 16:06:47 gcosmo Exp $ // GEANT4 tag $Name: geant4-03-00 $ // // /////////////////////////////////////////////////////////////////////////// // // Model 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: // 10.02.00 V. Grichine, first version // #ifndef G4RegularXrayTRmodel_h #define G4RegularXrayTRmodel_h 1 #include "G4VFastSimulationModel.hh" // #include "G4ForwardXrayTR.hh" #include "G4VXrayTRmodel.hh" class G4RegularXrayTRmodel : public G4VXrayTRmodel { public: G4RegularXrayTRmodel (G4LogicalVolume *anEnvelope,G4double,G4double); ~G4RegularXrayTRmodel (); // Pure virtual function from base class G4double GetStackFactor( G4double energy, G4double gamma, G4double varAngle); }; #endif