diff --git a/documentation/simDetectorDoc.html b/documentation/simDetectorDoc.html
index 517ad7c..5a5ef6d 100755
--- a/documentation/simDetectorDoc.html
+++ b/documentation/simDetectorDoc.html
@@ -215,6 +215,26 @@
longout
longin
+
+ |
+ SimNoise |
+
+ asynInt32 |
+
+ r/w |
+
+ Used to introduce randomness. Each affected pixel is assigned a scaling factor.
+ scalingFactor = 1.0 + (rand()%noise +1)/100.0
+ |
+
+ SIM_NOISE |
+
+ $(P)$(R)Noise
+ $(P)$(R)Noise_RBV |
+
+ longout
+ longin |
+
| Parameters for Peak Array |
@@ -362,6 +382,26 @@
longout
longin
+
+ |
+ SimPeakHeightVariation |
+
+ asynInt32 |
+
+ r/w |
+
+ Used to introduce randomness. Each gaussian peak in the array is assigned a scaling factor.
+ scalingFactor = 1.0 + (rand()%peakVariation +1)/100.0
+ |
+
+ SIM_PEAK_HEIGHT_VARIATION |
+
+ $(P)$(R)PeakVariation
+ $(P)$(R)PeakVariation_RBV |
+
+ longout
+ longin |
+
@@ -394,10 +434,16 @@
start location for the first peak in PeakStartX & PeakStartY. The size of the peak is
controlled by PeakWidthX and PeakWidthY. The array is specified by giving the number of
peaks in each direction with PeakNumX and PeakNumY and the step size between peak centroids
- with PeakStepX and PeakStepY.
+ with PeakStepX and PeakStepY. Note that data for each peak is only added to the image over a
+ range of four times the PeakWidth in any direction (in the interest of speed).
- Some random behavior and RGB implementation will be added later.
+ Dynamic behavior can be introduced into the system by changing PeakVariation and Noise
+ records. PeakVariation introduces variation on each pixel in the array and Noise introduces
+ variation in each pixel.
+
+
+ RGB implementation will be added later.
Array of Rings