Geant4  10.02.p03
G4HadTmpUtil.cc File Reference
#include "G4HadTmpUtil.hh"
#include <sstream>
Include dependency graph for G4HadTmpUtil.cc:

Go to the source code of this file.

Functions

G4String G4inttostring (int ai)
 

Function Documentation

◆ G4inttostring()

G4String G4inttostring ( int  ai)

Definition at line 29 of file G4HadTmpUtil.cc.

30 {
31  std::ostringstream ost;
32  ost << ai;
33  G4String result = ost.str();
34  return result;
35 }