// $Id: writeTranslations.cc,v 1.9 2002/06/09 12:10:58 boudreau Exp $ // ---------------------------------------------------------------------- // // writeTranslations.cc // Author: Lynn Garren // // ---------------------------------------------------------------------- #include "CLHEP/config/CLHEP.h" #include "CLHEP/config/iomanip.h" #include "CLHEP/config/sstream.h" #include "CLHEP/HepPDT/PDGtoQQTable.hh" namespace HepPDT { void PDGtoQQTable::writeTranslations( std::ostream & os ) const { int i, ipdt, iqq; for( i=0; isecond; } else { iqq = 0; } os << " index " ; os.width(5); os << i << " PDT number " ; os.width(12); os << ipdt << " QQ number " ; os.width(5); os << iqq << std::endl; } } } // namespace HepPDT