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

◆ notchecked()

void datrw::Subformat::notchecked ( std::ostream &  os) const

output all modifier which have not been checked yet

Definition at line 168 of file formatmodifier.cc.

References allarechecked(), and Mparamap.

Referenced by datrw::ithiesdl1stream::ithiesdl1stream().

169  {
170  if (!this->allarechecked())
171  {
172  formatmodifiers::Tparamap::const_iterator I=Mparamap.begin();
173  os << "Format modifiers which were not recognized:" << std::endl;
174  while (I!=Mparamap.end())
175  {
176  if (!I->second.checked)
177  {
178  os << " " << I->first << "=" << I->second.value << std::endl;
179  }
180  ++I;
181  }
182  }
183  } // void Subformat::notchecked(std::ostream& os) const
bool allarechecked() const
check if user provided keys not being recognized
formatmodifiers::Tparamap Mparamap
actual container for parameters
Here is the call graph for this function:
Here is the caller graph for this function: