- Timestamp:
- 09/25/12 18:36:45 (12 years ago)
- Location:
- trunk/python
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/python/CMakeLists.txt
r2613 r2649 36 36 ${PYTHONDIR}/parameters.py 37 37 # ${PYTHONDIR}/plotter2.py 38 ${PYTHONDIR}/sbseparator.py 38 39 ${PYTHONDIR}/scantable.py 39 40 ${PYTHONDIR}/selector.py -
trunk/python/__init__.py
r2613 r2649 55 55 from edgemarker import edgemarker 56 56 #from plotter2 import plotter2 57 from sbseparator import sbseparator 57 58 from _asap import srctype 58 59 -
trunk/python/sbseparator.py
r2647 r2649 13 13 class sbseparator: 14 14 """ 15 The sbseparator class is defined to separate USB and LSB spectra 16 observed with DSB reciever. It also helps supressing emmission of 17 image sideband. 15 The sbseparator class is defined to separate SIGNAL and IMAGE 16 sideband spectra observed by frequency-switching technique. 17 It also helps supressing emmission of IMAGE sideband. 18 *** WARNING *** THIS MODULE IS EXPERIMENTAL 19 Known issues: 20 - Frequencies of IMAGE sideband cannot be reconstructed from 21 information in scantable in sideband sparation. Frequency 22 setting of SIGNAL sideband is stored in output table for now. 23 - Flag information (stored in FLAGTRA) is ignored. 18 24 19 25 Example: … … 262 268 signaltab.save(signalname) 263 269 if self.getboth: 270 # Warnings 271 asaplog.post() 272 asaplog.push("Saving IMAGE sideband.") 273 asaplog.push("Note, frequency information of IMAGE sideband cannot be properly filled so far. (future development)") 274 asaplog.push("Storing frequency setting of SIGNAL sideband in FREQUENCIES table for now.") 275 asaplog.post("WARN") 276 264 277 imagename = outname + ".imageband" 265 278 if os.path.exists(imagename):
Note:
See TracChangeset
for help on using the changeset viewer.