TSIO++ Time series input/output

◆ readDSFF() [4/8]

TDFileList ts::sff::readDSFF ( 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.

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 157 of file cmdlinefiles.cc.

References readDSFF().

161  {
162  TDFileList retval;
163  tfxx::cmdline::Tparsed::const_iterator file=flist.begin();
164  while (file != flist.end())
165  {
166  retval.push_back(readDSFF(*file, verbose, tracekey, format));
167  ++file;
168  }
169  return(retval);
170  }
std::list< DFile > TDFileList
complete list of files.
Definition: cmdlinefiles.h:144
TDFileList readDSFF(const tfxx::cmdline::Tparsed &flist, const bool &verbose, Ttracelistkey tracekey, const datrw::Eformat &format)
read complete list of SFF files with trace selection
Here is the call graph for this function: