Warning, file /include/Geant4/G4MuonVDNuclearModel.hh was not indexed
or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016
0017
0018
0019
0020
0021
0022
0023
0024
0025
0026
0027
0028
0029
0030
0031
0032
0033
0034
0035
0036
0037 #ifndef G4MuonVDNuclearModel_h
0038 #define G4MuonVDNuclearModel_h 1
0039
0040 #include "G4HadronicInteraction.hh"
0041
0042 class G4CascadeInterface;
0043 class G4TheoFSGenerator;
0044 class G4LundStringFragmentation;
0045 class G4ExcitedStringDecay;
0046 class G4KokoulinMuonNuclearXS;
0047 class G4ElementData;
0048
0049 class G4MuonVDNuclearModel : public G4HadronicInteraction
0050 {
0051 public:
0052
0053 G4MuonVDNuclearModel();
0054 ~G4MuonVDNuclearModel() override;
0055
0056 G4HadFinalState* ApplyYourself(const G4HadProjectile& aTrack,
0057 G4Nucleus& targetNucleus) override;
0058
0059 void ModelDescription(std::ostream& outFile) const override;
0060
0061 private:
0062
0063 G4DynamicParticle* CalculateEMVertex(const G4HadProjectile& aTrack,
0064 G4Nucleus& targetNucleus);
0065
0066 void CalculateHadronicVertex(G4DynamicParticle* incident,
0067 G4Nucleus& target);
0068
0069 void MakeSamplingTable();
0070
0071 G4MuonVDNuclearModel & operator=(const G4MuonVDNuclearModel &right) = delete;
0072 G4MuonVDNuclearModel(const G4MuonVDNuclearModel&) = delete;
0073
0074 static const G4int NBIN = 800;
0075 static const G4int nzdat = 5;
0076 static const G4int ntdat = 73;
0077
0078 static const G4int zdat[nzdat];
0079 static const G4double adat[nzdat];
0080 static const G4double tdat[ntdat];
0081
0082 static G4ElementData* fElementData;
0083
0084 G4double CutFixed;
0085
0086 G4KokoulinMuonNuclearXS* muNucXS;
0087
0088 G4TheoFSGenerator* ftfp;
0089 G4LundStringFragmentation* theFragmentation;
0090 G4ExcitedStringDecay* theStringDecay;
0091 G4CascadeInterface* bert;
0092
0093 G4int secID;
0094 };
0095
0096 #endif
0097