packages feed

lha 0.1 → 0.1.1

raw patch · 2 files changed

+15/−1 lines, 2 files

Files

Data/LHA.lhs view
@@ -134,3 +134,17 @@ >   | DocumentationOnly     -- ^ Corresponds to status code +3. >   | IncomingBeam          -- ^ Corresponds to status code -9. +> statusToInt Incoming = (-1)+> statusToInt OutgoingFinal = (1)+> statusToInt IntermediateSpaceLike = (-2)+> statusToInt IntermediateResonance = (2)+> statusToInt DocumentationOnly = (3)+> statusToInt IncomingBeam = (-9)++> statusFromInt (-1) = Incoming+> statusFromInt (1) = OutgoingFinal+> statusFromInt (-2) = IntermediateSpaceLike+> statusFromInt (2) = IntermediateResonance+> statusFromInt (3) = DocumentationOnly+> statusFromInt (-9) = IncomingBeam+
lha.cabal view
@@ -1,5 +1,5 @@ Name:                lha-Version:             0.1+Version:             0.1.1 Synopsis:            Data structures for the Les Houches Accord Description:         This package provides data structures for HEP events, as outlined by the Les Houches Accord (hep-ph/0109068v1) Homepage:            https://github.com/bytbox/lha.hs