CMS 3D CMS Logo

Classes | Functions
SiStripHistoTitle.h File Reference
#include "DataFormats/SiStripCommon/interface/SiStripConstants.h"
#include <ostream>
#include <sstream>
#include <string>

Go to the source code of this file.

Classes

class  SiStripHistoTitle
 Utility class that holds histogram title. More...
 

Functions

std::ostream & operator<< (std::ostream &, const SiStripHistoTitle &)
 

Function Documentation

std::ostream& operator<< ( std::ostream &  ,
const SiStripHistoTitle  
)

Debug info for class.

Definition at line 174 of file SiStripHistoTitle.cc.

References SiStripHistoTitle::channel(), TauDecayModes::dec, SiStripHistoTitle::extraInfo(), SiStripEnumsAndStrings::granularity(), SiStripHistoTitle::granularity(), SiStripEnumsAndStrings::histoType(), SiStripHistoTitle::histoType(), SiStripEnumsAndStrings::keyType(), SiStripHistoTitle::keyType(), SiStripHistoTitle::keyValue(), SiStripEnumsAndStrings::runType(), SiStripHistoTitle::runType(), and SiStripHistoTitle::title().

174  {
175  std::stringstream ss;
176  ss << "[SiStripHistoTitle::print]" << std::endl
177  << " Title : " << title.title() << std::endl
178  << " HistoType : " << SiStripEnumsAndStrings::histoType( title.histoType() ) << std::endl
179  << " RunType : " << SiStripEnumsAndStrings::runType( title.runType() ) << std::endl
180  << " KeyType : " << SiStripEnumsAndStrings::keyType( title.keyType() ) << std::endl
181  << " KeyValue (hex) : " << std::hex << std::setfill('0') << std::setw(8) << title.keyValue() << std::dec << std::endl
182  << " Granularity : " << SiStripEnumsAndStrings::granularity( title.granularity() ) << std::endl
183  << " Channel : " << title.channel() << std::endl
184  << " ExtraInfo : ";
185  if ( title.extraInfo() != "" ) { ss << "\"" << title.extraInfo() << "\""; }
186  else { ss << "(none)"; }
187  os << ss.str();
188  return os;
189 }
static std::string granularity(const sistrip::Granularity &)
static std::string runType(const sistrip::RunType &)
static std::string histoType(const sistrip::HistoType &)
static std::string keyType(const sistrip::KeyType &)