Пример #1
0
 def makeDark(self):
     """
     Wrapper for iraf routine darkcombine.
     Takes .fits with headers imagetyp=dark and makes a master dark.
     """
     reduction_tools.rmFile(self.writedir + 'Dark*')
     iraf.noao.imred.ccdred.darkcombine(
         input=self.calimages + '*', output=self.writedir + 'Dark', process='no', delete='no', clobber='no')
Пример #2
0
 def makeFlat(self):
     """
     Wrapper for iraf routine flatcombine.
     Takes .fits with headers imagetyp=flat and makes a master flat.
     """
     reduction_tools.rmFile(self.writedir + 'Flat*')
     iraf.noao.imred.ccdred.flatcombine(
         input=self.calimages + '*', output=self.writedir + 'Flat', process='no', delete='no', clobber='no', subset='yes')
Пример #3
0
 def makeZero(self):
     """
     Wrapper for iraf routine zerocombine.
     Takes .fits with header imagetyp=zero and makes a master zero.
     """
     reduction_tools.rmFile(self.writedir + 'Zero*')
     iraf.noao.imred.ccdred.zerocombine(
         input=self.calimages + '*', output=self.writedir + 'Zero', process='no', delete='no', clobber='no')