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

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

234 {
235 // Convert a number to a string.
236  std::stringstream ss;
237  ss << num;
238  std::string s = ss.str();
239  return s;
240 }