lha 0.1.1 → 0.1.2
raw patch · 2 files changed
+4/−2 lines, 2 filesPVP: major bump suggested
API removals or changes: PVP suggests a major version bump
API changes (from Hackage documentation)
+ Data.LHA: PBoth :: (a, a) -> MaybePair a
+ Data.LHA: POne :: a -> MaybePair a
+ Data.LHA: PZero :: MaybePair a
+ Data.LHA: data MaybePair a
- Data.LHA: Particle :: Int -> ParticleStatus -> (Int, Maybe Int) -> (Int, Int) -> Double -> Double -> Double -> Double -> Double -> Double -> Double -> Particle
+ Data.LHA: Particle :: Int -> ParticleStatus -> MaybePair Int -> (Int, Int) -> Double -> Double -> Double -> Double -> Double -> Double -> Double -> Particle
- Data.LHA: mothers :: Particle -> (Int, Maybe Int)
+ Data.LHA: mothers :: Particle -> MaybePair Int
Files
- Data/LHA.lhs +3/−1
- lha.cabal +1/−1
Data/LHA.lhs view
@@ -106,7 +106,7 @@ ^ Status code of the particle. -> , mothers :: (Int, Maybe Int)+> , mothers :: MaybePair Int ^ The mother particles. @@ -147,4 +147,6 @@ > statusFromInt (2) = IntermediateResonance > statusFromInt (3) = DocumentationOnly > statusFromInt (-9) = IncomingBeam++> data MaybePair a = PZero | POne a | PBoth (a, a)
lha.cabal view
@@ -1,5 +1,5 @@ Name: lha-Version: 0.1.1+Version: 0.1.2 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