Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:00:08

0001 #ifndef HAVE_XDAQ
0002 #include "CaloOnlineTools/HcalOnlineDb/interface/xdaq_compat.h"
0003 
0004 std::string toolbox::toString(const char* format, ...) {
0005   va_list varlist;
0006   va_start(varlist, format);
0007   char tmp[512];
0008   vsnprintf(tmp, 512, format, varlist);
0009   return tmp;
0010 }
0011 
0012 #endif