Something went wrong on our end
-
Matthias Steinke authored260b6b52
PdtParser.hh 366 B
#ifndef PDTPARSER_HH
#define PDTPARSER_HH
#include <string>
#include "Particle/ParticleTable.hh"
struct ParticleData;
class PdtParser
{
public:
PdtParser();
~PdtParser();
bool parse(std::string& fileName, ParticleTable& table);
bool parse(std::string::const_iterator begin,
std::string::const_iterator end,
ParticleData& pData);
};
#endif