[Swift-commit] r4578 - in SwiftApps/Montage: . scripts

jonmon at ci.uchicago.edu jonmon at ci.uchicago.edu
Tue Jun 7 14:50:56 CDT 2011


Author: jonmon
Date: 2011-06-07 14:50:56 -0500 (Tue, 07 Jun 2011)
New Revision: 4578

Modified:
   SwiftApps/Montage/TODO
   SwiftApps/Montage/scripts/Swift_Montage_Apps.swift
Log:
removed commented out lines during the testing of mapping the area files out. Updated TODO file


Modified: SwiftApps/Montage/TODO
===================================================================
--- SwiftApps/Montage/TODO	2011-06-07 19:47:37 UTC (rev 4577)
+++ SwiftApps/Montage/TODO	2011-06-07 19:50:56 UTC (rev 4578)
@@ -1,5 +1,4 @@
 o scripts/Swift_Montage_Batch.swift
-  -- Must map out the area files as well.  Then change all the app procedures accordingly to remove the -n option.(-n stands for ignore the area files)	
   -- Need to fix mProjectBatch.  Currently calls mProject blindly.  Need to figure out how to choose between mProject and mProjectPP
 
 o exec/montage.sh

Modified: SwiftApps/Montage/scripts/Swift_Montage_Apps.swift
===================================================================
--- SwiftApps/Montage/scripts/Swift_Montage_Apps.swift	2011-06-07 19:47:37 UTC (rev 4577)
+++ SwiftApps/Montage/scripts/Swift_Montage_Apps.swift	2011-06-07 19:50:56 UTC (rev 4578)
@@ -6,7 +6,6 @@
 
 app ( Image bg_img ) mBackground( Image img, Image area_img, float a, float b, float c )
 {
-//    mBackground "-n" @img @bg_img a b c;
     mBackground @img @bg_img a b c;
 }
 
@@ -25,22 +24,18 @@
 
 app ( Image diff_img ) mDiff( Image proj_img_1, Image area_img_1, Image proj_img_2, Image area_img_2, MosaicData hdr )
 {
-//    mDiff "-n" @proj_img_1 @proj_img_2 @diff_img @hdr;
-//    mDiff_wrap "-n" @proj_img_1 @proj_img_2 @diff_img @hdr;
     mDiff_wrap @proj_img_1 @proj_img_2 @diff_img @hdr;
 }
 
 
 app ( Image diff_img, Status stat ) mDiffFit( Image img_1, Image area_img_1, Image img_2, Image area_img_2, MosaicData hdr )
 {
-//    mDiffFit "-n" "-s" @stat @img_1 @img_2 @diff_img @hdr;
     mDiffFit "-s" @stat @img_1 @img_2 @diff_img @hdr;
 }
 
 
 app ( Status stat ) mFitplane( Image diff_img )
 {
-//    mFitplane "-s" @stat @diff_img;
     mFitplane_wrap "-s" @stat @diff_img;
 }
 
@@ -75,7 +70,6 @@
 }
 
 
-//app ( Image proj_img ) mProject( Image raw_img, MosaicData hdr )
 app ( Image proj_img, Image area_img ) mProject( Image raw_img, MosaicData hdr )
 {
     mProject "-X" @raw_img @proj_img @hdr;




More information about the Swift-commit mailing list