CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
Functions
DDutils.cc File Reference
#include "DetectorDescription/Base/interface/DDutils.h"
#include <sstream>

Go to the source code of this file.

Functions

std::vector< int > dbl_to_int (const std::vector< double > &vecdbl)
 Converts a std::vector of doubles to a std::vector of int. More...
 
std::string dbl_to_string (const double &in)
 Converts only the integer part of a double to a string. More...
 
std::string int_to_string (const int &in)
 

Function Documentation

std::vector<int> dbl_to_int ( const std::vector< double > &  vecdbl)

Converts a std::vector of doubles to a std::vector of int.

Definition at line 4 of file DDutils.cc.

Referenced by DDHCalForwardAlgo::initialize(), DDHCalFibreBundle::initialize(), DDHCalBarrelAlgo::initialize(), and DDHCalEndcapAlgo::initialize().

4  {
5  std::vector<int> tInt;
6  for (std::vector<double>::const_iterator vd_it = vecdbl.begin(); vd_it != vecdbl.end(); ++vd_it) {
7  tInt.push_back(int(*vd_it));
8  }
9  return tInt;
10 }
std::string dbl_to_string ( const double &  in)
std::string int_to_string ( const int &  in)