- Timestamp:
- 06/05/06 12:25:13 (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/Release2.0/python/asapreader.py
r895 r1058 6 6 This class allows the user to import single dish files 7 7 (rpfits,sdfits,ms). 8 The reader reads in integrations from the file and re amins at8 The reader reads in integrations from the file and remains at 9 9 the fileposition afterwards. 10 10 Available functions are: 11 11 12 read(integrations) 13 summary CURRENTLY DISABLED 12 read() # read until the (current) end of file) 14 13 15 14 Example: … … 51 50 def read(self): 52 51 """ 53 Reads in an returns a specified sequence of integrations. 54 If no list is given all integrations a read in. 52 Reads in all integrations in the data file. 55 53 """ 56 54 from asap import scantable 57 55 from asap import asaplog 58 if integrations is None:59 integrations = [-1]60 56 asaplog.push("Reading integrations from disk...") 61 57 stfiller._read(self)
Note:
See TracChangeset
for help on using the changeset viewer.