diff options
author | Joe Hunkeler <jhunkeler@gmail.com> | 2015-08-11 16:51:37 -0400 |
---|---|---|
committer | Joe Hunkeler <jhunkeler@gmail.com> | 2015-08-11 16:51:37 -0400 |
commit | 40e5a5811c6ffce9b0974e93cdd927cbcf60c157 (patch) | |
tree | 4464880c571602d54f6ae114729bf62a89518057 /pkg/vocl/_samp.cmds | |
download | iraf-osx-40e5a5811c6ffce9b0974e93cdd927cbcf60c157.tar.gz |
Repatch (from linux) of OSX IRAF
Diffstat (limited to 'pkg/vocl/_samp.cmds')
-rw-r--r-- | pkg/vocl/_samp.cmds | 101 |
1 files changed, 101 insertions, 0 deletions
diff --git a/pkg/vocl/_samp.cmds b/pkg/vocl/_samp.cmds new file mode 100644 index 00000000..a6ebeabc --- /dev/null +++ b/pkg/vocl/_samp.cmds @@ -0,0 +1,101 @@ + + + cl> =sampDbg (ival) # explicitly set debug value + cl> =sampDbg () # toggle debug value + + +sampStatus: + + cl> =samStatus() # print current SAMP connection status + yes + cl> =samStatus("on") # enable SAMP messaging + yes + cl> =samStatus("off") # disable SAMP messaging + no + cl> =samStatus("on") # enable SAMP messaging + yes + cl> =samStatus("restart") # restart SAMP messaging + vocl.e(69352,0x7fff70f14cc0) malloc: *** error for object 0x101125350: + incorrect checksum for freed object - object was probably modified after + being freed. + *** set a breakpoint in malloc_error_break to debug + ERROR: abort + + or + + segmentation violation + + +sampAccess + + cl> =sampAccess("topcat") # print whether named app is running + no + +sampName + + cl> =sampName() # print current samp.name attribute + IRAF + cl> =sampName("foo1") # set samp.name attribute + foo1 + +sampMetadata + + cl> =sampMetadata ("samp.name") # print a specific metadata attribute + IRAF + cl> =sampMetadata ("foo", "bar") # set a new attribute + ok + +sampSend + +sampHandler + + +------------------------------------------------------------------------------ + +sampLoadImage + + cl> =sampLoadImage (tblId, url, row, to) + +sampLoadVOTable +sampLoadFITS +sampLoadSpec +sampLoadBibcode +sampLoadResource + + +sampShowRow + + cl> =sampShowRow (tblId, url, row, to) + +sampSelectRows + + cl> =sampSelectRows (tblId, url, rows[], to) + +sampPointAt + + cl> =sampPointAt (ra, dec, to) + +sampCmdExec + + cl> =sampCmdExec ("imstat dev$pix") + cl> =sampCmdExec ("imstat dev$pix", "iraf2") + +sampEnvSet + + cl> =sampEnvSet ("foo", "bar") + +sampEnvGet + + cl> =sampEnvGet ("foo") + bar + +sampParamSet + + cl> =sampParamSet ("imstat.images", "dev$pix") + ok + +sampParamGet + + cl> =sampParamGet ("imstat.images") + dev$pix + |