Geant4-11
Functions
G4HadTmpUtil.cc File Reference
#include "G4HadTmpUtil.hh"
#include <sstream>

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}