Ignore:
Timestamp:
Jun 4, 2010 5:04:49 PM (14 years ago)
Author:
Gervaise Alina <gervyh@…>
Branches:
master, ESS_GUI, ESS_GUI_Docs, ESS_GUI_batch_fitting, ESS_GUI_bumps_abstraction, ESS_GUI_iss1116, ESS_GUI_iss879, ESS_GUI_iss959, ESS_GUI_opencl, ESS_GUI_ordering, ESS_GUI_sync_sascalc, costrafo411, magnetic_scatt, release-4.1.1, release-4.1.2, release-4.2.2, release_4.0.1, ticket-1009, ticket-1094-headless, ticket-1242-2d-resolution, ticket-1243, ticket-1249, ticket885, unittest-saveload
Children:
5062bbf
Parents:
7116b6e0
Message:

working on documentation

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sansmodels/src/sans/models/StackedDisksModel.py

    rf9a1279 r79ac6f8  
    11#!/usr/bin/env python 
    2 """ 
    3         This software was developed by the University of Tennessee as part of the 
    4         Distributed Data Analysis of Neutron Scattering Experiments (DANSE) 
    5         project funded by the US National Science Foundation. 
    62 
    7         If you use DANSE applications to do scientific research that leads to 
    8         publication, we ask that you acknowledge the use of the software with the 
    9         following sentence: 
     3############################################################################## 
     4#       This software was developed by the University of Tennessee as part of the 
     5#       Distributed Data Analysis of Neutron Scattering Experiments (DANSE) 
     6#       project funded by the US National Science Foundation. 
     7# 
     8#       If you use DANSE applications to do scientific research that leads to 
     9#       publication, we ask that you acknowledge the use of the software with the 
     10#       following sentence: 
     11# 
     12#       "This work benefited from DANSE software developed under NSF award DMR-0520547." 
     13# 
     14#       copyright 2008, University of Tennessee 
     15############################################################################## 
    1016 
    11         "This work benefited from DANSE software developed under NSF award DMR-0520547." 
    1217 
    13         copyright 2008, University of Tennessee 
    14 """ 
     18"""  
     19Provide functionality for a C extension model 
    1520 
    16 """ Provide functionality for a C extension model 
    17  
    18         WARNING: THIS FILE WAS GENERATED BY WRAPPERGENERATOR.PY 
    19                  DO NOT MODIFY THIS FILE, MODIFY ..\c_extensions\stacked_disks.h 
    20                  AND RE-RUN THE GENERATOR SCRIPT 
     21:WARNING: THIS FILE WAS GENERATED BY WRAPPERGENERATOR.PY 
     22         DO NOT MODIFY THIS FILE, MODIFY ..\c_extensions\stacked_disks.h 
     23         AND RE-RUN THE GENERATOR SCRIPT 
    2124 
    2225""" 
     
    2730     
    2831class StackedDisksModel(CStackedDisksModel, BaseComponent): 
    29     """ Class that evaluates a StackedDisksModel model.  
    30         This file was auto-generated from ..\c_extensions\stacked_disks.h. 
    31         Refer to that file and the structure it contains 
    32         for details of the model. 
    33         List of default parameters: 
     32    """  
     33    Class that evaluates a StackedDisksModel model.  
     34    This file was auto-generated from ..\c_extensions\stacked_disks.h. 
     35    Refer to that file and the structure it contains 
     36    for details of the model. 
     37    List of default parameters: 
    3438         scale           = 0.01  
    3539         radius          = 3000.0 [A] 
     
    9397         
    9498    def __getstate__(self): 
    95         """ return object state for pickling and copying """ 
     99        """ 
     100        return object state for pickling and copying 
     101        """ 
    96102        model_state = {'params': self.params, 'dispersion': self.dispersion, 'log': self.log} 
    97103         
     
    99105         
    100106    def __setstate__(self, state): 
    101         """ create object from pickled state """ 
     107        """ 
     108        create object from pickled state 
     109         
     110        :param state: the state of the current model 
     111         
     112        """ 
    102113         
    103114        self.__dict__, model_state = state 
     
    107118         
    108119    
    109     def run(self, x = 0.0): 
    110         """ Evaluate the model 
    111             @param x: input q, or [q,phi] 
    112             @return: scattering function P(q) 
     120    def run(self, x=0.0): 
     121        """  
     122        Evaluate the model 
     123         
     124        :param x: input q, or [q,phi] 
     125         
     126        :return: scattering function P(q) 
     127         
    113128        """ 
    114129         
    115130        return CStackedDisksModel.run(self, x) 
    116131    
    117     def runXY(self, x = 0.0): 
    118         """ Evaluate the model in cartesian coordinates 
    119             @param x: input q, or [qx, qy] 
    120             @return: scattering function P(q) 
     132    def runXY(self, x=0.0): 
     133        """  
     134        Evaluate the model in cartesian coordinates 
     135         
     136        :param x: input q, or [qx, qy] 
     137         
     138        :return: scattering function P(q) 
     139         
    121140        """ 
    122141         
    123142        return CStackedDisksModel.runXY(self, x) 
    124143         
    125     def evalDistribution(self, x = []): 
    126         """ Evaluate the model in cartesian coordinates 
    127             @param x: input q[], or [qx[], qy[]] 
    128             @return: scattering function P(q[]) 
     144    def evalDistribution(self, x=[]): 
     145        """  
     146        Evaluate the model in cartesian coordinates 
     147         
     148        :param x: input q[], or [qx[], qy[]] 
     149         
     150        :return: scattering function P(q[]) 
     151         
    129152        """ 
    130153        return CStackedDisksModel.evalDistribution(self, x) 
    131154         
    132155    def calculate_ER(self): 
    133         """ Calculate the effective radius for P(q)*S(q) 
    134             @return: the value of the effective radius 
     156        """  
     157        Calculate the effective radius for P(q)*S(q) 
     158         
     159        :return: the value of the effective radius 
     160         
    135161        """        
    136162        return CStackedDisksModel.calculate_ER(self) 
     
    138164    def set_dispersion(self, parameter, dispersion): 
    139165        """ 
    140             Set the dispersion object for a model parameter 
    141             @param parameter: name of the parameter [string] 
    142             @dispersion: dispersion object of type DispersionModel 
     166        Set the dispersion object for a model parameter 
     167         
     168        :param parameter: name of the parameter [string] 
     169        :param dispersion: dispersion object of type DispersionModel 
     170         
    143171        """ 
    144172        return CStackedDisksModel.set_dispersion(self, parameter, dispersion.cdisp) 
Note: See TracChangeset for help on using the changeset viewer.