Ignore:
Timestamp:
05/07/14 17:44:02 (11 years ago)
Author:
dneise
Message:
reverted externals link to older revision, since current version fits.h can't be compiled without MLog.h and MLogManip.h.
Fixed some typos in pyfact.py
Location:
fact/tools/pyscripts/new_pyfact
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • fact/tools/pyscripts/new_pyfact

    • Property svn:externals
      •  

        old new  
        1 extern_Mars_mcore https://www.fact-project.org/svn/trunk/Mars/mcore
         1extern_Mars_mcore -r17730 https://www.fact-project.org/svn/trunk/Mars/mcore
  • fact/tools/pyscripts/new_pyfact/pyfact.py

    r17795 r17801  
    154154                                self.cols['StartCellData'],
    155155                                self.header['NROI']+10)
    156                            )
    157156            self.drs_calibrate.CorrectStep(
    158157                                self.cols['CalibData'],
     
    162161                                self.cols['StartCellData'],
    163162                                3)
    164                            )
    165         self.fPrevStart.append(self.cols['StartCellData'])
    166         if len(self.fPrevStart) > 5:
    167             self.fPrevStart.pop(0)
     163        self.list_of_previous_start_cells.append(self.cols['StartCellData'])
     164        if len(self.list_of_previous_start_cells) > 5:
     165            self.list_of_previous_start_cells.pop(0)
    168166
    169167        for ch in range(self.header['NPIX']):
Note: See TracChangeset for help on using the changeset viewer.