TSIO++ Time series input/output

◆ readSSFF() [4/8]

TSFileList ts::sff::readSSFF ( const tfxx::cmdline::Tparsed &  flist,
const bool &  verbose = false,
Ttracelistkey  tracekey = "t",
const std::string &  format = datrw::anyID(datrw::Fsff) 
)

read complete list of SFF files with trace selection

read complete list of SFF files with trace selection (single precision version).

Read a complete set of files like defined in the structure of command line arguments.

Returns
structure that contains file data together with command line arguments
Parameters
flistlist of file names together with command line options and arguments
verboseselect verbosity
tracekeykey string for command line option that defines trace selection
formatdata format to be read

Definition at line 141 of file cmdlinefiles.cc.

References readSSFF().

145  {
146  TSFileList retval;
147  tfxx::cmdline::Tparsed::const_iterator file=flist.begin();
148  while (file != flist.end())
149  {
150  retval.push_back(readSSFF(*file, verbose, tracekey, format));
151  ++file;
152  }
153  return(retval);
154  }
TSFileList readSSFF(const tfxx::cmdline::Tparsed &flist, const bool &verbose, Ttracelistkey tracekey, const datrw::Eformat &format)
read complete list of SFF files with trace selection
std::list< SFile > TSFileList
complete list of files (single precision version).
Definition: cmdlinefiles.h:151
Here is the call graph for this function: