Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Table of Contents

Tuesday Jul 2nd

Initial XRay aligned positions:
Y position: 0.0000 mm
X position: 0.1512 mm

Test examples
Single shot 10 images

Code Block

   ccdtake(1,10, bShutter=True)
   

Burst mode 3 shots 100 images

Code Block

   ccdtake(3,100, bShutter=True)
   

Alignment Laser used to test the system

  1. To insert the laser
    Code Block
    
        In [2]: rl2.movein()
        
  2. To remove the laser
    Code Block
    
        In [2]: rl2.moveiout()
        

Results: Tests doesn't work satisfactory.
Problems found in Mcode:

  1. Intergrate Integrate 4 shots instead of 3 (using ccdtake(3, 1 , bShutter=True))
  2. Stopping the program (:RESET_PG 1) tooks long time than before 1-3 sec more)
    Needed one variable to check if RESET_PG is completed or if is OK to change mode.
  3. Switch from mode 1 to 3 still doesn't work. Example:
    ccdtake(1, 1 , bShutter=True) WORKS
    ccdtake(3, 1 , bShutter=True) FAILS!
  4. Fast OPEN and CLOSE doesn't work.

...