CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
SummaryGeneratorControlView.cc
Go to the documentation of this file.
6 #include <iostream>
7 #include <iomanip>
8 #include <sstream>
9 #include <cmath>
10 
11 using namespace sistrip;
12 
13 // -----------------------------------------------------------------------------
14 //
16  SummaryGenerator("SummaryGeneratorControlView") {;}
17 
18 // -----------------------------------------------------------------------------
19 //
20 void SummaryGeneratorControlView::fill( const std::string& top_level_dir,
21  const sistrip::Granularity& granularity,
22  const uint32_t& device_key,
23  const float& value,
24  const float& error ) {
25 
26  // Check granularity is recognised
27  std::string gran = SiStripEnumsAndStrings::granularity( granularity );
28 
29  if ( granularity != sistrip::UNDEFINED_GRAN &&
30  granularity != sistrip::FEC_CRATE &&
31  granularity != sistrip::FEC_SLOT &&
32  granularity != sistrip::FEC_RING &&
33  granularity != sistrip::CCU_ADDR &&
34  granularity != sistrip::CCU_CHAN &&
35  granularity != sistrip::LLD_CHAN &&
36  granularity != sistrip::APV ) {
39  << "[SummaryGeneratorControlView::" << __func__ << "]"
40  << " Unexpected granularity requested: " << gran;
41  return;
42  }
43 
44  // Create key representing "top level" directory
45  SiStripFecKey top( top_level_dir );
46 
47  // Path and std::string for "present working directory" as defined by device key
48  SiStripFecKey path( device_key );
49  std::string pwd = path.path();
50 
51 // LogTrace(mlTest_)
52 // << "TEST "
53 // << "top " << top
54 // << "path " << path;
55 
56  if ( top.isValid() &&
57  path.isValid() &&
58  ( path.fecCrate() == top.fecCrate() || !top.fecCrate() ) &&
59  ( path.fecSlot() == top.fecSlot() || !top.fecSlot() ) &&
60  ( path.fecRing() == top.fecRing() || !top.fecRing() ) &&
61  ( path.ccuAddr() == top.ccuAddr() || !top.ccuAddr() ) &&
62  ( path.ccuChan() == top.ccuChan() || !top.ccuChan() ) ) {
63 
64  // Extract path and std::string corresponding to "top-level down to granularity"
65  std::string sub_dir = pwd;
66  size_t pos = pwd.find( gran );
67  if ( pos != std::string::npos ) {
68  sub_dir = pwd.substr( 0, pwd.find(sistrip::dir_,pos) );
69  } else if ( granularity == sistrip::UNKNOWN_GRAN ) {
70  sub_dir = pwd;
71  }
72 
73  SiStripFecKey sub_path( sub_dir );
74 
75 // LogTrace(mlTest_)
76 // << "TEST "
77 // << "sub_path " << sub_path;
78 
79  // Construct bin label
80  std::stringstream bin;
81  if ( sub_path.fecCrate() != sistrip::invalid_ ) { bin << std::setw(1) << std::setfill('0') << sub_path.fecCrate(); }
82  if ( sub_path.fecSlot() != sistrip::invalid_ ) { bin << sistrip::dot_ << std::setw(2) << std::setfill('0') << sub_path.fecSlot(); }
83  if ( sub_path.fecRing() != sistrip::invalid_ ) { bin << sistrip::dot_ << std::setw(1) << std::setfill('0') << sub_path.fecRing(); }
84  if ( sub_path.ccuAddr() != sistrip::invalid_ ) { bin << sistrip::dot_ << std::setw(3) << std::setfill('0') << sub_path.ccuAddr(); }
85  if ( sub_path.ccuChan() != sistrip::invalid_ ) { bin << sistrip::dot_ << std::setw(2) << std::setfill('0') << sub_path.ccuChan(); }
86  if ( ( granularity == sistrip::LLD_CHAN ||
87  granularity == sistrip::APV ) &&
88  path.channel() != sistrip::invalid_ ) { bin << sistrip::dot_ << path.channel(); }
89 
90  // Store "value" in appropriate std::vector within std::map (key is bin label)
91  map_[bin.str()].push_back( Data(value,error) );
92  entries_++;
93 // LogTrace(mlTest_)
94 // << "TEST "
95 // << " filling " << bin.str() << " " << value << " " << error << " ";
96 
97  }
98 
99 }
100 
static const char dot_[]
const uint16_t & fecRing() const
static const char dir_[]
void fill(const std::string &directory_level, const sistrip::Granularity &, const uint32_t &key, const float &value, const float &error)
static std::string granularity(const sistrip::Granularity &)
: Fills summary histograms.
std::pair< float, float > Data
const uint16_t & fecSlot() const
Utility class that identifies a position within the strip tracker control structure, down to the level of an APV25.
Definition: SiStripFecKey.h:46
list path
Definition: scaleCards.py:51
const std::string & path() const
Definition: SiStripKey.h:127
const uint16_t & fecCrate() const
static const char mlSummaryPlots_[]
const uint16_t & channel() const
Definition: SiStripKey.h:129
const uint16_t & ccuAddr() const
static const uint16_t invalid_
Definition: Constants.h:17
bool isValid() const
const uint16_t & ccuChan() const