You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This issue is related to #170. In DpmJet only final particles are boosted to lab frame. Thus, on graph illustrating history the energies of intermediate (decayed) particles are wrong. I found the place where it could be changed (in Dpmjet code itself):
C in SUBROUTINE DT_LT2LABC ThisDO i = NPOint(4) , NHKk
IF ( (ABS(ISThkk(i)).EQ.1) .OR. (ISThkk(i).EQ.1000) .OR.
& (ISThkk(i).EQ.1001) ) THENCALL DT_LTNUC(PHKk(3,i),PHKk(4,i),pz,pe,-3)
PHKk(3,i) = pz
PHKk(4,i) = pe
END IFEND DOC should be changed toDO i =1 , NHKk
CALL DT_LTNUC(PHKk(3,i),PHKk(4,i),pz,pe,-3)
PHKk(3,i) = pz
PHKk(4,i) = pe
END DO
The text was updated successfully, but these errors were encountered:
This issue is related to #170. In DpmJet only final particles are boosted to lab frame. Thus, on graph illustrating history the energies of intermediate (decayed) particles are wrong. I found the place where it could be changed (in Dpmjet code itself):
The text was updated successfully, but these errors were encountered: