Warning: Trying to access array offset on value of type null in /home/site/wwwroot/lib/plugins/move/action/rename.php on line 42

Warning: Cannot modify header information - headers already sent by (output started at /home/site/wwwroot/lib/plugins/move/action/rename.php:42) in /home/site/wwwroot/inc/common.php on line 1955

Warning: Cannot modify header information - headers already sent by (output started at /home/site/wwwroot/lib/plugins/move/action/rename.php:42) in /home/site/wwwroot/inc/actions.php on line 38
gem_instrumental_peakshape [topas wiki]

User Tools

Site Tools


gem_instrumental_peakshape

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision
Previous revision
gem_instrumental_peakshape [2009/08/06 13:07] – created claregem_instrumental_peakshape [2022/11/03 15:08] (current) – external edit 127.0.0.1
Line 1: Line 1:
 +====== gem_instrumental_peakshape ======
  
 +
 +Description: "old" gem tof peak shape; wifd_mic probably does a better job.
 +
 +Contributed by: John Evans
 +
 +<code topas>
 +macro gem_instrumental_peakshape( ,prma0, ,prma1, ,prmb0, ,prmb1)
 +{
 +   push_peak        
 +      exp_conv_const = prma0 + prma1 / D_spacing;
 + bring_2nd_peak_to_top
 +      user_defined_convolution        
 +          = prmb0 Exp(- prmb1  X) / D_spacing^4;  
 +            min 0
 +            max = -Ln(0.001) / prmb1;
 +   add_pop_1st_2nd_peak
 +      peak_buffer_step 1 'report_on
 +
 +}
 +
 +</code>