Versions Compared

Key

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

...

  1. Download the Digi, Merit, Magic7L1 and DigiGap files using the datacatalog, placing them in the /scratch directory of the batch worker. 
  2. Run the old code and mine, with the following command lines: 
    1. Old version: 
      Code Block
      makeFT2Entries.exe -M7File $magic7 \
                         -FT2_fits_File ${filenameroot}_andrea.fits \
      		   -DigiTstart $start \
                         -DigiTstop $stop \
      		   -new_tpl $AndreaTemplate \
                         -DigiFile $digifile \
                         -MeritFile $meritfile \
                         -Gaps_File $digigapfileNew version: $digigapfile
      
    2. New version: 
      Code Block
      makeFT2.exe -m7file $magic7 \
                  -ft2file ${filenameroot}_io.fits \
                  -ft2start $start \
                  -ft2stop $stop \
                  -digifile $digifile \
                  -meritfile $meritfile \
                  -gapfile $digigapfile
      
      (without specifying a template, the new version uses the template provided by the current version of fitsGen) 
      $start and $stop are respectively the time stamp of the first and the last event in the Digi file. 
  3. Run a python script which matches the entries in the two FT2 files and produces another FITS file containing the fractional difference for each quantity for each entry.
  4. Move back the produced files to my user disk  

...