CMS 3D CMS Logo

List of all members | Public Member Functions
SummaryGeneratorControlView Class Reference

Fills "summary histograms" in FEC or "control" view. More...

#include <SummaryGeneratorControlView.h>

Inheritance diagram for SummaryGeneratorControlView:
SummaryGenerator

Public Member Functions

void fill (const std::string &directory_level, const sistrip::Granularity &, const uint32_t &key, const float &value, const float &error) override
 
 SummaryGeneratorControlView ()
 
 ~SummaryGeneratorControlView () override
 
- Public Member Functions inherited from SummaryGenerator
void axisLabel (const std::string &)
 
void clearMap ()
 
void fillMap (const std::string &top_level_dir, const sistrip::Granularity &, const uint32_t &key, const float &value, const float &error=0.)
 
void format (const sistrip::RunType &, const sistrip::Monitorable &, const sistrip::Presentation &, const sistrip::View &, const std::string &directory, const sistrip::Granularity &, TH1 &)
 
void histo1D (TH1 &)
 
void histo2DScatter (TH1 &)
 
void histo2DSum (TH1 &)
 
const std::string & myName () const
 
uint32_t nBins () const
 
void printMap ()
 
void profile1D (TH1 &)
 
uint32_t size () const
 
 SummaryGenerator (std::string name)
 
virtual ~SummaryGenerator ()
 

Additional Inherited Members

- Public Types inherited from SummaryGenerator
typedef std::vector< DataBinData
 
typedef std::pair< float, float > Data
 
typedef std::map< std::string, BinDataHistoData
 
- Static Public Member Functions inherited from SummaryGenerator
static TH1 * histogram (const sistrip::Presentation &, const uint32_t &xbins)
 
static SummaryGeneratorinstance (const sistrip::View &)
 
static std::string name (const sistrip::RunType &, const sistrip::Monitorable &, const sistrip::Presentation &, const sistrip::View &, const std::string &directory)
 
- Protected Attributes inherited from SummaryGenerator
float entries_
 
std::string label_
 
HistoData map_
 
float max_
 
float min_
 

Detailed Description

Fills "summary histograms" in FEC or "control" view.

Author
M.Wingham, R.Bainbridge

Definition at line 12 of file SummaryGeneratorControlView.h.

Constructor & Destructor Documentation

◆ SummaryGeneratorControlView()

SummaryGeneratorControlView::SummaryGeneratorControlView ( )

Definition at line 15 of file SummaryGeneratorControlView.cc.

15 : SummaryGenerator("SummaryGeneratorControlView") { ; }
SummaryGenerator(std::string name)

◆ ~SummaryGeneratorControlView()

SummaryGeneratorControlView::~SummaryGeneratorControlView ( )
inlineoverride

Definition at line 16 of file SummaryGeneratorControlView.h.

16 { ; }

Member Function Documentation

◆ fill()

void SummaryGeneratorControlView::fill ( const std::string &  top_level_dir,
const sistrip::Granularity gran,
const uint32_t &  key,
const float &  value,
const float &  error 
)
overridevirtual

Fills the map used to generate the histogram.

Reimplemented from SummaryGenerator.

Definition at line 19 of file SummaryGeneratorControlView.cc.

References sistrip::APV, newFWLiteAna::bin, sistrip::CCU_ADDR, sistrip::CCU_CHAN, SiStripFecKey::ccuAddr(), SiStripFecKey::ccuChan(), sistrip::dir_, sistrip::dot_, SummaryGenerator::entries_, relativeConstraints::error, sistrip::FEC_CRATE, sistrip::FEC_RING, sistrip::FEC_SLOT, SiStripFecKey::fecCrate(), SiStripFecKey::fecRing(), SiStripFecKey::fecSlot(), SiStripEnumsAndStrings::granularity(), sistrip::invalid_, SiStripFecKey::isValid(), sistrip::LLD_CHAN, SummaryGenerator::map_, sistrip::mlSummaryPlots_, castor_dqm_sourceclient_file_cfg::path, alignCSCRings::pwd, AlCaHLTBitMon_QueryRunRegistry::string, groupFilesInBlocks::temp, sistrip::UNDEFINED_GRAN, and sistrip::UNKNOWN_GRAN.

23  {
24  // Check granularity is recognised
26 
31  edm::LogWarning(mlSummaryPlots_) << "[SummaryGeneratorControlView::" << __func__ << "]"
32  << " Unexpected granularity requested: " << gran;
33  return;
34  }
35 
36  // Create key representing "top level" directory
37  SiStripFecKey top(top_level_dir);
38 
39  // Path and std::string for "present working directory" as defined by device key
40  SiStripFecKey path(device_key);
41  const std::string& pwd = path.path();
42 
43  // LogTrace(mlTest_)
44  // << "TEST "
45  // << "top " << top
46  // << "path " << path;
47 
48  if (top.isValid() && path.isValid() && (path.fecCrate() == top.fecCrate() || !top.fecCrate()) &&
49  (path.fecSlot() == top.fecSlot() || !top.fecSlot()) && (path.fecRing() == top.fecRing() || !top.fecRing()) &&
50  (path.ccuAddr() == top.ccuAddr() || !top.ccuAddr()) && (path.ccuChan() == top.ccuChan() || !top.ccuChan())) {
51  // Extract path and std::string corresponding to "top-level down to granularity"
52  std::string sub_dir = pwd;
53  size_t pos = pwd.find(gran);
54  if (pos != std::string::npos) {
55  sub_dir = pwd.substr(0, pwd.find(sistrip::dir_, pos));
56  } else if (granularity == sistrip::UNKNOWN_GRAN) {
57  sub_dir = pwd;
58  }
59 
60  SiStripFecKey sub_path(sub_dir);
61 
62  // LogTrace(mlTest_)
63  // << "TEST "
64  // << "sub_path " << sub_path;
65 
66  // Construct bin label
67  std::stringstream bin;
68  if (sub_path.fecCrate() != sistrip::invalid_) {
69  bin << std::setw(1) << std::setfill('0') << sub_path.fecCrate();
70  }
71  if (sub_path.fecSlot() != sistrip::invalid_) {
72  bin << sistrip::dot_ << std::setw(2) << std::setfill('0') << sub_path.fecSlot();
73  }
74  if (sub_path.fecRing() != sistrip::invalid_) {
75  bin << sistrip::dot_ << std::setw(1) << std::setfill('0') << sub_path.fecRing();
76  }
77  if (sub_path.ccuAddr() != sistrip::invalid_) {
78  bin << sistrip::dot_ << std::setw(3) << std::setfill('0') << sub_path.ccuAddr();
79  }
80  if (sub_path.ccuChan() != sistrip::invalid_) {
81  bin << sistrip::dot_ << std::setw(2) << std::setfill('0') << sub_path.ccuChan();
82  }
84  bin << sistrip::dot_ << path.channel();
85  }
86 
87  // Store "value" in appropriate std::vector within std::map (key is bin label)
88  map_[bin.str()].push_back(Data(value, error));
89  entries_++;
90  // LogTrace(mlTest_)
91  // << "TEST "
92  // << " filling " << bin.str() << " " << value << " " << error << " ";
93  }
94 }
static const char dot_[]
static const char dir_[]
static std::string granularity(const sistrip::Granularity &)
Utility class that identifies a position within the strip tracker control structure, down to the level of an APV25.
Definition: SiStripFecKey.h:45
Definition: value.py:1
static const char mlSummaryPlots_[]
std::pair< float, float > Data
static const uint16_t invalid_
Definition: Constants.h:16
Log< level::Warning, false > LogWarning