Ignore:
Timestamp:
Aug 20, 2009 1:24:23 PM (15 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:
1d67243
Parents:
191b369
Message:

fixed and tested ppmodel 2d and cleaned it up.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sansmodels/src/sans/models/c_models/parallelepiped.cpp

    r3c102d4 r8e36cdd  
    3737        short_a     = Parameter(35.0, true); 
    3838        short_a.set_max(1.0); 
    39         long_b     = Parameter(75.0, true); 
    40         long_b.set_min(1.0); 
    41         longer_c     = Parameter(400.0, true); 
    42         longer_c.set_min(1.0); 
     39        short_b     = Parameter(75.0, true); 
     40        short_b.set_min(1.0); 
     41        long_c     = Parameter(400.0, true); 
     42        long_c.set_min(1.0); 
    4343        contrast   = Parameter(53.e-7); 
    4444        background = Parameter(0.0); 
     
    6161        dp[0] = scale(); 
    6262        dp[1] = short_a(); 
    63         dp[2] = long_b(); 
    64         dp[3] = longer_c(); 
     63        dp[2] = short_b(); 
     64        dp[3] = long_c(); 
    6565        dp[4] = contrast(); 
    6666        dp[5] = 0.0; 
     
    7171 
    7272        // Get the dispersion points for the longer_edgeB 
    73         vector<WeightPoint> weights_long_b; 
    74         long_b.get_weights(weights_long_b); 
     73        vector<WeightPoint> weights_short_b; 
     74        short_b.get_weights(weights_short_b); 
    7575 
    7676        // Get the dispersion points for the longuest_edgeC 
    77         vector<WeightPoint> weights_longer_c; 
    78         longer_c.get_weights(weights_longer_c); 
     77        vector<WeightPoint> weights_long_c; 
     78        long_c.get_weights(weights_long_c); 
    7979 
    8080 
     
    8989 
    9090                // Loop over longer_edgeB weight points 
    91                 for(int j=0; j< (int)weights_long_b.size(); j++) { 
    92                         dp[2] = weights_long_b[j].value; 
     91                for(int j=0; j< (int)weights_short_b.size(); j++) { 
     92                        dp[2] = weights_short_b[j].value; 
    9393 
    9494                        // Loop over longuest_edgeC weight points 
    95                         for(int k=0; k< (int)weights_longer_c.size(); k++) { 
    96                                 dp[3] = weights_longer_c[k].value; 
    97  
    98                                 sum += weights_short_a[i].weight * weights_long_b[j].weight 
    99                                         * weights_longer_c[k].weight * Parallelepiped(dp, q); 
     95                        for(int k=0; k< (int)weights_long_c.size(); k++) { 
     96                                dp[3] = weights_long_c[k].value; 
     97 
     98                                sum += weights_short_a[i].weight * weights_short_b[j].weight 
     99                                        * weights_long_c[k].weight * Parallelepiped(dp, q); 
    100100 
    101101                                norm += weights_short_a[i].weight 
    102                                          * weights_long_b[j].weight * weights_longer_c[k].weight; 
     102                                         * weights_short_b[j].weight * weights_long_c[k].weight; 
    103103                        } 
    104104                } 
     
    117117        dp.scale      = scale(); 
    118118        dp.short_a   = short_a(); 
    119         dp.long_b   = long_b(); 
    120         dp.longer_c  = longer_c(); 
     119        dp.short_b   = short_b(); 
     120        dp.long_c  = long_c(); 
    121121        dp.contrast   = contrast(); 
    122122        dp.background = 0.0; 
     
    132132 
    133133        // Get the dispersion points for the longer_edgeB 
    134         vector<WeightPoint> weights_long_b; 
    135         long_b.get_weights(weights_long_b); 
     134        vector<WeightPoint> weights_short_b; 
     135        short_b.get_weights(weights_short_b); 
    136136 
    137137        // Get angular averaging for the longuest_edgeC 
    138         vector<WeightPoint> weights_longer_c; 
    139         longer_c.get_weights(weights_longer_c); 
     138        vector<WeightPoint> weights_long_c; 
     139        long_c.get_weights(weights_long_c); 
    140140 
    141141        // Get angular averaging for theta 
     
    160160 
    161161                // Loop over longer_edgeB weight points 
    162                 for(int j=0; j< (int)weights_long_b.size(); j++) { 
    163                         dp.long_b = weights_long_b[j].value; 
     162                for(int j=0; j< (int)weights_short_b.size(); j++) { 
     163                        dp.short_b = weights_short_b[j].value; 
    164164 
    165165                        // Average over longuest_edgeC distribution 
    166                         for(int k=0; k< (int)weights_longer_c.size(); k++) { 
    167                                 dp.longer_c = weights_longer_c[k].value; 
     166                        for(int k=0; k< (int)weights_long_c.size(); k++) { 
     167                                dp.long_c = weights_long_c[k].value; 
    168168 
    169169                                // Average over theta distribution 
     
    180180 
    181181                                                        double _ptvalue = weights_short_a[i].weight 
    182                                                                 * weights_long_b[j].weight 
    183                                                                 * weights_longer_c[k].weight 
     182                                                                * weights_short_b[j].weight 
     183                                                                * weights_long_c[k].weight 
    184184                                                                * weights_parallel_theta[l].weight 
    185185                                                                * weights_parallel_phi[m].weight 
     
    192192 
    193193                                                        norm += weights_short_a[i].weight 
    194                                                                 * weights_long_b[j].weight 
    195                                                                 * weights_longer_c[k].weight 
     194                                                                * weights_short_b[j].weight 
     195                                                                * weights_long_c[k].weight 
    196196                                                                * weights_parallel_theta[l].weight 
    197197                                                                * weights_parallel_phi[m].weight 
Note: See TracChangeset for help on using the changeset viewer.