Go to the source code of this file.
Functions | |
std::string | itoa (int i) |
std::string itoa | ( | int | i | ) |
_________________________________________________________________ class: JetCombinatorics.cc package: Analyzer/TopTools
author: Francisco Yumiceva, Fermilab (yumiceva@fnal.gov)
version
________________________________________________________________
Definition at line 18 of file JetCombinatorics.cc.
References AlCaHLTBitMon_QueryRunRegistry::string, and groupFilesInBlocks::temp.
Referenced by JetCombinatorics::Combinatorics().
{ char temp[20]; sprintf(temp,"%d",i); return((std::string)temp); }