CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
Functions
Tree.cc File Reference
#include "L1Trigger/L1TMuonEndCap/interface/Tree.h"
#include <iostream>
#include <sstream>

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 311 of file Tree.cc.

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

312 {
313  // Convert a number to a string.
314  std::stringstream ss;
315  ss << num;
316  std::string s = ss.str();
317  return s;
318 }