CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
DaqScopeModeHistograms.cc
Go to the documentation of this file.
9 #include <iostream>
10 #include <memory>
11 
12 #include <sstream>
13 #include <iomanip>
14 
15 using namespace std;
16 using namespace sistrip;
17 
18 // -----------------------------------------------------------------------------
22  pset.getParameter<edm::ParameterSet>("DaqScopeModeParameters"), bei, sistrip::DAQ_SCOPE_MODE) {
23  factory_ = std::make_unique<DaqScopeModeSummaryFactory>();
24  LogTrace(mlDqmClient_) << "[DaqScopeModeHistograms::" << __func__ << "]"
25  << " Constructing object...";
26 }
27 
28 // -----------------------------------------------------------------------------
31  LogTrace(mlDqmClient_) << "[DaqScopeModeHistograms::" << __func__ << "]"
32  << " Destructing object...";
33 }
34 
35 // -----------------------------------------------------------------------------
38  LogTrace(mlDqmClient_) << "[DaqScopeModeHistograms::" << __func__ << "]";
39 
40  // Some initialisation
41  uint16_t valid = 0;
42  HistosMap::const_iterator iter;
43  Analyses::iterator ianal;
44  std::map<std::string, uint16_t> errors;
45 
46  // Clear map holding analysis objects
47  for (ianal = data().begin(); ianal != data().end(); ianal++) {
48  if (ianal->second) {
49  delete ianal->second;
50  }
51  }
52  data().clear();
53 
54  // Iterate through map containing histograms
55  for (iter = histos().begin(); iter != histos().end(); iter++) {
56  // Check vector of histos is not empty
57  if (iter->second.empty()) {
58  edm::LogWarning(mlDqmClient_) << "[DaqScopeModeHistograms::" << __func__ << "]"
59  << " Zero histograms found!";
60  continue;
61  }
62 
63  // Retrieve pointers to profile histos
64  std::vector<TH1*> profs;
65  Histos::const_iterator ihis = iter->second.begin();
66  for (; ihis != iter->second.end(); ihis++) {
67  TProfile* prof = ExtractTObject<TProfile>().extract((*ihis)->me_);
68  if (prof) {
69  profs.push_back(prof);
70  }
71  if (!prof) {
72  TH1F* prof = ExtractTObject<TH1F>().extract((*ihis)->me_);
73  profs.push_back(prof);
74  }
75  }
76 
77  // Perform histo analysis
78  DaqScopeModeAnalysis* anal = new DaqScopeModeAnalysis(iter->first);
79  DaqScopeModeAlgorithm algo(this->pset(), anal);
80  algo.analysis(profs);
81  data()[iter->first] = anal;
82 
83  if (anal->isValid()) {
84  valid++;
85  }
86  if (!anal->getErrorCodes().empty()) {
87  errors[anal->getErrorCodes()[0]]++;
88  }
89  }
90 
91  if (!histos().empty()) {
92  edm::LogVerbatim(mlDqmClient_) << "[DaqScopeModeHistograms::" << __func__ << "]"
93  << " Analyzed histograms for " << histos().size() << " FED channels, of which "
94  << valid << " (" << 100 * valid / histos().size() << "%) are valid.";
95  if (!errors.empty()) {
96  uint16_t count = 0;
97  std::stringstream ss;
98  ss << std::endl;
99  std::map<std::string, uint16_t>::const_iterator ii;
100  for (ii = errors.begin(); ii != errors.end(); ++ii) {
101  ss << " " << ii->first << ": " << ii->second << std::endl;
102  count += ii->second;
103  }
104  edm::LogWarning(mlDqmClient_) << "[DaqScopeModeHistograms::" << __func__ << "]"
105  << " Found " << count << " errors (" << 100 * count / histos().size()
106  << "%): " << ss.str();
107  }
108  } else {
109  edm::LogWarning(mlDqmClient_) << "[DaqScopeModeHistograms::" << __func__ << "]"
110  << " No histograms to analyze!";
111  }
112 }
113 
114 // -----------------------------------------------------------------------------
116  Analyses::iterator ianal = data().begin();
117  Analyses::iterator janal = data().end();
118  for (; ianal != janal; ++ianal) {
119  if (ianal->second) {
120  std::stringstream ss;
121  ianal->second->print(ss, 1);
122  ianal->second->print(ss, 2);
123  if (ianal->second->isValid()) {
124  LogTrace(mlDqmClient_) << ss.str();
125  } else {
126  edm::LogWarning(mlDqmClient_) << ss.str();
127  }
128  }
129  }
130 }
void analysis(const std::vector< TH1 * > &)
Log< level::Info, true > LogVerbatim
Analyses & data(bool getMaskedData=false)
const edm::ParameterSet & pset() const
static const char mlDqmClient_[]
void histoAnalysis(bool debug) override
int ii
Definition: cuy.py:589
DaqScopeModeHistograms(const edm::ParameterSet &pset, DQMStore *)
#define LogTrace(id)
int extract(std::vector< int > *output, const std::string &dati)
#define debug
Definition: HDRShower.cc:19
bool isValid() const override
Algorithm for scope mode data.
std::unique_ptr< Factory > factory_
Log< level::Warning, false > LogWarning
const VString & getErrorCodes() const
const HistosMap & histos() const
Analysis for scope mode data.