DATRW++ library: seismic data I/O with multiple formats

◆ operator>>() [3/3]

std::istream & datrw::hpmo::operator>> ( std::istream &  is,
MinuteBlock block 
)

read a full minute block from C++ stream

Definition at line 205 of file readhpmo.cc.

References datrw::hpmo::Header::errorflag(), datrw::hpmo::MinuteBlock::Mdata, datrw::hpmo::MinuteBlock::Mquality_flag, datrw::hpmo::MinuteBlock::Mtime, and datrw::hpmo::Header::time().

206  {
207  datrw::hpmo::Header header(is);
208  block.Mtime=header.time();
209  block.Mquality_flag=header.errorflag();
210  is >> block.Mdata;
211  return(is);
212  }
Read, hold and handle one minute block header line.
Definition: readhpmo.h:88
Here is the call graph for this function: