CMS 3D CMS Logo

Functions
Tree.cc File Reference
#include "L1Trigger/L1TMuonEndCap/interface/bdt/Tree.h"
#include <iostream>
#include <sstream>
#include <cmath>

Go to the source code of this file.

Functions

template<typename T >
std::string numToStr (T num)
 

Function Documentation

template<typename T >
std::string numToStr ( T  num)

Definition at line 407 of file Tree.cc.

References pileupDistInMC::num, alignCSCRings::s, and AlCaHLTBitMon_QueryRunRegistry::string.

408 {
409 // Convert a number to a string.
410  std::stringstream ss;
411  ss << num;
412  std::string s = ss.str();
413  return s;
414 }