#include <iostream>
#include <sstream>
#include "G4fissionEvent.hh"
Go to the source code of this file.
Functions | |
std::string | itoa (const G4int &x) |
std::string itoa | ( | const G4int & | x | ) |
Definition at line 104 of file G4fissionerr.cc.
00105 { 00106 std::ostringstream o; 00107 if (!(o << x)) return "ERROR"; 00108 return o.str(); 00109 }