Changeset 0528cd6 in sasview


Ignore:
Timestamp:
Mar 8, 2012 2:17:07 PM (12 years ago)
Author:
Jae Cho <jhjcho@…>
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:
270cc72e
Parents:
23a1747
Message:

less number of points as default

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sansmodels/src/c_models/parameters.cpp

    r67424cd r0528cd6  
    9595 
    9696GaussianDispersion :: GaussianDispersion() { 
    97         npts  = 100; 
     97        npts  = 35; 
    9898        width = 0.0; 
    99         nsigmas = 10; 
     99        nsigmas = 3; 
    100100}; 
    101101 
     
    127127                width = 0.0; 
    128128                npts  = 1; 
    129                 nsigmas = 10; 
     129                nsigmas = 3; 
    130130        } 
    131131 
     
    162162 
    163163RectangleDispersion :: RectangleDispersion() { 
    164         npts  = 100; 
     164        npts  = 35; 
    165165        width = 0.0; 
    166166        nsigmas = 1.73205; 
     
    231231 
    232232LogNormalDispersion :: LogNormalDispersion() { 
    233         npts  = 100; 
     233        npts  = 80; 
    234234        width = 0.0; 
    235         nsigmas = 10.0; 
     235        nsigmas = 8.0; 
    236236}; 
    237237 
     
    262262                width = 0.0; 
    263263                npts  = 1; 
    264                 nsigmas = 10.0; 
     264                nsigmas = 8.0; 
    265265        } 
    266266 
     
    305305 
    306306SchulzDispersion :: SchulzDispersion() { 
    307         npts  = 100; 
     307        npts  = 80; 
    308308        width = 0.0; 
    309         nsigmas = 10.0; 
     309        nsigmas = 8.0; 
    310310}; 
    311311 
     
    338338                width = 0.0; 
    339339                npts  = 1; 
    340                 nsigmas = 10.0; 
     340                nsigmas = 8.0; 
    341341        } 
    342342 
Note: See TracChangeset for help on using the changeset viewer.