CMS 3D CMS Logo

Functions
StorageAccount.cc File Reference
#include "Utilities/StorageFactory/interface/StorageAccount.h"
#include <cassert>
#include <mutex>
#include <sstream>
#include <unistd.h>
#include <sys/time.h>

Go to the source code of this file.

Functions

static std::string d2str (double d)
 
static std::string i2str (int i)
 

Function Documentation

static std::string d2str ( double  d)
static

Definition at line 47 of file StorageAccount.cc.

References edmIntegrityCheck::d, and lumiQTWidget::t.

Referenced by StorageAccount::fillSummary().

47  {
48  std::ostringstream t;
49  t << d;
50  return t.str();
51 }
static std::string i2str ( int  i)
static

Definition at line 41 of file StorageAccount.cc.

References mps_fire::i, and lumiQTWidget::t.

Referenced by StorageAccount::fillSummary().

41  {
42  std::ostringstream t;
43  t << i;
44  return t.str();
45 }