[SCHEDULER-687]  AUTOCAL_SAVE_RAW = False in AcquireSupport fails in Scheduler
Type Bug
Priority Medium
Severity Minor
Component AcquireScheduler Script
Fixed In Version [3.43.4
Versions Affected [3.33.3
Severity Closed
Resolution Complete
Reported By Bob Denny
Resources Bob Denny
Start Date 10/21/2011

Description
See this Comm Center thread by Mike Beales. In AcquireSupport need to make the Moving of the Raw file conditional omn its existence just like the test in the line above.

'
' In this case, AcquireSupport (probably) produced a RAW-xxx file, which is named
' the same as the working tempfile xxx. We need to move this to it's final place
' and we might as well do that now while we know that ACP AutoCal is on.
'
trfnf = FSO.GetParentFolderName(tfnf) + "\RAW-" + FSO.GetFileName(tfnf)
rfnf = FSO.GetParentFolderName(fnf) + "\RAW-" + bfn + ".fts"
If FSO.FileExists(rfnf) Then FSO.DeleteFile(rfnf)
If FSO.FileExists(rfnf) Then FSO.MoveFile trfnf, rfnf

Comments
10/21/2011 3:02:20 PM   Bob Denny
SVN Comment
Author rbdenny
Repository svn+ssh://rbdenny@a2_svn_dc3/home/rbdenny/svn/astro/scheduler
SVN Revision 230
Affected files /trunk/AcquireScheduler.vbs (Modified)
/trunk/Help/RelNotes.htm (Modified)
Check-in comment Fis script error if not saving raw images for autocal. GEM:687