Changeset 17801 for fact/tools/pyscripts/new_pyfact/pyfact.py
- Timestamp:
- 05/07/14 17:44:02 (11 years ago)
- 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/mcore1 extern_Mars_mcore -r17730 https://www.fact-project.org/svn/trunk/Mars/mcore
-
- Property svn:externals
-
fact/tools/pyscripts/new_pyfact/pyfact.py
r17795 r17801 154 154 self.cols['StartCellData'], 155 155 self.header['NROI']+10) 156 )157 156 self.drs_calibrate.CorrectStep( 158 157 self.cols['CalibData'], … … 162 161 self.cols['StartCellData'], 163 162 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) 168 166 169 167 for ch in range(self.header['NPIX']):
Note:
See TracChangeset
for help on using the changeset viewer.