|
ldasJob { -name {} -password {} -email {} } { userCmd -opt1 {} ... }
Which is in the format of a Tcl command, ldasJob, with two required arguments:
Returns list of absolute paths to frame files.
An exception is generated if the filename provided (or the calcualted filename when no explicit filename is provided) does not exist or is not readable due to permission problems.
An e-mail with a URL pointing to the location of the results file is sent (-returnprotocol http or ftp is supported for retrieval of the file by mailcap/mime-types).
Calling convention (all on a single line):
ldasJob { -name "username" -password "********" -email "user@foobar.edu"} {cacheGetFilenames -ifos IFO Abbrev -types frame type -times GPS times -channels list of channel names -framequery alternate syntax -allowgaps {Boolean} (see dataPipeline) }
Option Descriptions:
-ifos: Valid IFO
The -ifos option is being deprecated in favor of the -channels
option, q.v.
-types: {}
Optional: defaults to best guess based on other options
The argument of the -ifos option is a list of interferometer
(ifo) abbreviations as used in the file naming convention and
corresponding to the file name prefix of the frame files created
from that interferometer.
This option is used together with the -times and -types options.
Optional: defaults to R
The argument to the -types option is a list of frame types
as used in the frame file naming convention. This corresponds
to the second field of the frame file name.
This option is used together with the -times and -ifos
options to specify a frame file with the desired list of channels.
cacheGetFilenames -times 693960000-693960032 -ifos H -types R_GAP_TEST -channels {} -allowgaps 1
/scratch/test/frames/gap_test16/H-R_GAP_TEST-693960000-16.gwf
/scratch/test/frames/gap_test16/H-R_GAP_TEST-693960032-16.gwf
cacheGetFilenames -times 693960000-693960032 -ifos H -types R_GAP_TEST -channels {} -allowgaps 0
returnFilenames.diskcache: cache::find: cache::findByTime:getFrameFiles_t(H R_GAP_TEST 693960000 693960032 0):
{{/scratch/test/frames/gap_test16/H-R_GAP_TEST-693960000-16.gwf /scratch/test/frames/gap_test16/H-R_GAP_TEST-693960032-16.gwf}
{ {Gaps are detected: 693960016 693960032}}}
cacheGetFilenames -framequery {R_GAP_TEST H {} {693960000-693960032} Adc() } -allowgaps 1
/scratch/test/frames/gap_test16/H-R_GAP_TEST-693960000-16.gwf
/scratch/test/frames/gap_test16/H-R_GAP_TEST-693960032-16.gwf
cacheGetFilenames -framequery {R_GAP_TEST H {} {693960000-693960032} Adc() } -allowgaps 0
returnFilenames.diskcache: cache::find: cache::findByTime:getFrameFiles_t(H R_GAP_TEST 693960000 693960032 0):
{{/scratch/test/frames/gap_test16/H-R_GAP_TEST-693960000-16.gwf /scratch/test/frames/gap_test16/H-R_GAP_TEST-693960032-16.gwf}
{ {Gaps are detected: 693960016 693960032}}}
Return to Top