CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
Classes | Functions
perftools::detail Namespace Reference

Classes

struct  Hist
 

Functions

void dump (std::ostream &co, EdmEventSize::BranchRecord const &br)
 
void shorterName (EdmEventSize::BranchRecord &br)
 

Function Documentation

void perftools::detail::dump ( std::ostream &  co,
EdmEventSize::BranchRecord const &  br 
)

Definition at line 160 of file EdmEventSize.cc.

References perftools::EdmEventSize::BranchRecord::compr_size, perftools::EdmEventSize::BranchRecord::name, and perftools::EdmEventSize::BranchRecord::uncompr_size.

Referenced by perftools::EdmEventSize::dump().

160  {
161  co << br.name << " " << br.uncompr_size << " " << br.compr_size << "\n";
162  }
void perftools::detail::shorterName ( EdmEventSize::BranchRecord &  br)

Definition at line 134 of file EdmEventSize.cc.

References alignCSCRings::e, perftools::EdmEventSize::BranchRecord::fullName, and perftools::EdmEventSize::BranchRecord::name.

Referenced by perftools::EdmEventSize::formatNames().

134  {
135  size_t b = br.fullName.find('_');
136  size_t e = br.fullName.rfind('_');
137  if (b==e) br.name=br.fullName;
138  else {
139  // remove type and process
140  br.name = br.fullName.substr(b+1,e-b-1);
141  // change label separator in :
142  e = br.name.rfind('_');
143  if (e!=std::string::npos) br.name.replace(e,1,":");
144  // add the type name
145  br.name.append(" ("+br.fullName.substr(0,b)+")");
146  }
147  }
double b
Definition: hdecay.h:120