source: sasview/sansmodels/prototypes/SmearCylinderModel.py @ ee0f3fc

ESS_GUIESS_GUI_DocsESS_GUI_batch_fittingESS_GUI_bumps_abstractionESS_GUI_iss1116ESS_GUI_iss879ESS_GUI_iss959ESS_GUI_openclESS_GUI_orderingESS_GUI_sync_sascalccostrafo411magnetic_scattrelease-4.1.1release-4.1.2release-4.2.2release_4.0.1ticket-1009ticket-1094-headlessticket-1242-2d-resolutionticket-1243ticket-1249ticket885unittest-saveload
Last change on this file since ee0f3fc was 7df1a50, checked in by Jae Cho <jhjcho@…>, 13 years ago

moving a file

  • Property mode set to 100644
File size: 1.9 KB
Line 
1#!/usr/bin/env python
2""" Provide functionality for a C extension model
3
4        WARNING: THIS FILE WAS GENERATED BY WRAPPERGENERATOR.PY
5                 DO NOT MODIFY THIS FILE, MODIFY smeared_cylinder.h
6                 AND RE-RUN THE GENERATOR SCRIPT
7
8    @author: Mathieu Doucet / UTK
9    @contact: mathieu.doucet@nist.gov
10"""
11
12from sans.models.BaseComponent import BaseComponent
13from sans_extension.prototypes.c_models import CSmearCylinderModel
14import copy   
15   
16class SmearCylinderModel(CSmearCylinderModel, BaseComponent):
17    """ Class that evaluates a SmearCylinderModel model.
18        This file was auto-generated from smeared_cylinder.h.
19        Refer to that file and the structure it contains
20        for details of the model.
21        List of default parameters:
22         scale           = 1.0
23         radius          = 20.0 A
24         length          = 400.0 A
25         contrast        = 3e-006 A-2
26         background      = 0.0 cm-1
27         cyl_theta       = 1.0 rad
28         cyl_phi         = 1.0 rad
29         cyl_phi         = 0.0 rad
30         sigma_theta     = 0.0 rad
31         sigma_phi       = 0.0 rad
32         sigma_radius    = 0.0 rad
33
34    """
35       
36    def __init__(self):
37        """ Initialization """
38       
39        # Initialize BaseComponent first, then sphere
40        BaseComponent.__init__(self)
41        CSmearCylinderModel.__init__(self)
42       
43        ## Name of the model
44        self.name = "SmearCylinderModel"
45   
46    def clone(self):
47        """ Return a identical copy of self """
48        obj = SmearCylinderModel()
49        obj.params = copy.deepcopy(self.params)
50        return obj   
51   
52    def run(self, x = 0.0):
53        """ Evaluate the model
54            @param x: input q, or [q,phi]
55            @return: scattering function P(q)
56        """
57       
58        return CSmearCylinderModel.run(self, x)
59   
60# End of file
Note: See TracBrowser for help on using the repository browser.