Changeset 84f3398 in sasmodels for sasmodels/resolution.py


Ignore:
Timestamp:
Dec 19, 2016 5:24:58 AM (7 years ago)
Author:
GitHub <noreply@…>
Branches:
master, core_shell_microgels, costrafo411, magnetic_model, ticket-1257-vesicle-product, ticket_1156, ticket_1265_superball, ticket_822_more_unit_tests
Children:
3a45c2c, f1ec7002
Parents:
cdb867f (diff), b397165 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
git-author:
jhbakker <j.h.bakker@…> (12/19/16 05:24:58)
git-committer:
GitHub <noreply@…> (12/19/16 05:24:58)
Message:

Merge pull request #20 from SasView?/revert-19-Jurtest2

Revert "Jurtest2"

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sasmodels/resolution.py

    r26b848d rb397165  
    99from numpy import sqrt, log, log10, exp, pi  # type: ignore 
    1010import numpy as np  # type: ignore 
    11  
    12 from sasmodels import sesans 
    13 from sasmodels.sesans import SesansTransform as SesansTransform 
    1411 
    1512__all__ = ["Resolution", "Perfect1D", "Pinhole1D", "Slit1D", 
     
    4643        raise NotImplementedError("Subclass does not define the apply function") 
    4744 
     45 
    4846class Perfect1D(Resolution): 
    4947    """ 
     
    5755    def apply(self, theory): 
    5856        return theory 
     57 
    5958 
    6059class Pinhole1D(Resolution): 
Note: See TracChangeset for help on using the changeset viewer.