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

◆ dump() [8/15]

void datrw::mseed::SEED::dump ( const datrw::mseed::SEED::ActivityFlags f,
std::ostream &  os 
)

Definition at line 207 of file seedstructdump.cc.

References datrw::mseed::SEED::ActivityFlags::begevent, datrw::mseed::SEED::ActivityFlags::calpres, datrw::mseed::SEED::ActivityFlags::endevent, datrw::mseed::SEED::ActivityFlags::event, datrw::mseed::SEED::ActivityFlags::negleap, datrw::mseed::SEED::ActivityFlags::posleap, and datrw::mseed::SEED::ActivityFlags::tcorrapp.

208  {
209  os << "Activity Flags:" << std::endl;
210  if (f.calpres)
211  { os << " calibration signals present" << std::endl; }
212  if (f.tcorrapp) { os << " time correction applied" << std::endl; }
213  if (f.begevent) { os << " beginning of event" << std::endl; }
214  if (f.endevent) { os << " end of event" << std::endl; }
215  if (f.posleap)
216  { os << " a positive leap second happened" << std::endl; }
217  if (f.negleap)
218  { os << " a negative leap second happened" << std::endl; }
219  if (f.event) { os << " event in progress" << std::endl; }
220  } // void dump(const ActivityFlags& f, std::ostream& os)
bool event
event in progress
Definition: seedstructs.h:244
bool calpres
calibration signals present
Definition: seedstructs.h:238
bool negleap
a negative leap second happend
Definition: seedstructs.h:243
bool posleap
a positive leap second happend
Definition: seedstructs.h:242
bool begevent
beginning of event
Definition: seedstructs.h:240
bool tcorrapp
time correction applied
Definition: seedstructs.h:239