00001 // $Id: TableBuilder.hh,v 1.1 2001/11/09 15:23:40 mf Exp $ 00002 // ---------------------------------------------------------------------- 00003 // 00004 // TableBuilder.hh 00005 // Author: Marc Paterno, Walter Brown 00006 // 00007 // ---------------------------------------------------------------------- 00008 // User code: 00009 // ParticleDataTable pdt; 00010 // { 00011 // TableBuilder tb(pdt); 00012 // addPythiaParticles( istream1, tb ); 00013 // addPythiaParticles( istream2, tb ); 00014 // tb.addParticle( myTempParticleData ); 00015 // // ... 00016 // } // triggers tb's destruction, filling pdt! 00017 // ---------------------------------------------------------------------- 00018 #ifndef TABLEBUILDER_HH 00019 #define TABLEBUILDER_HH 00020 00021 #include "CLHEP/config/CLHEP.h" 00022 #include "CLHEP/HepPDT/DefaultConfig.hh" 00023 #include "CLHEP/HepPDT/TableBuilderT.hh" 00024 00025 namespace HepPDT { 00026 00027 typedef TableBuilderT<DefaultConfig> TableBuilder; 00028 00029 } // namespace HepPDT 00030 00031 #endif // TABLEBUILDER_HH