Implements edm::EDAnalyzer.
Definition at line 89 of file SiStripDetVOffTrendPlotter.cc.
94 boost::posix_time::ptime p_start, p_end;
97 p_end = boost::posix_time::second_clock::universal_time();
101 p_start = boost::posix_time::time_from_string(
m_startTime);
102 p_end = boost::posix_time::time_from_string(
m_endTime);
106 if (startIov > endIov)
109 <<
"[SiStripDetVOffTrendPlotter::" << __func__ <<
"] "
110 <<
"Set start IOV " << startIov <<
" (" << boost::posix_time::to_simple_string(p_start) <<
")"
111 <<
"\n ... Set end IOV " << endIov <<
" (" << boost::posix_time::to_simple_string(p_end) <<
")";
114 edm::LogInfo(
"SiStripDetVOffTrendPlotter") <<
"[SiStripDetVOffTrendPlotter::" << __func__ <<
"] "
115 <<
"Query the condition database " <<
m_condDb;
120 std::vector<TGraph *> hvgraphs, lvgraphs;
121 TLegend *leg_hv =
new TLegend(0.6, 0.87, 0.99, 0.99);
122 TLegend *leg_lv =
new TLegend(0.6, 0.87, 0.99, 0.99);
123 for (
unsigned itag = 0; itag <
m_plotTags.size(); ++itag) {
127 std::vector<double> vTime;
128 std::vector<double> vHVOffPercent, vLVOffPercent;
131 edm::LogInfo(
"SiStripDetVOffTrendPlotter") <<
"[SiStripDetVOffTrendPlotter::" << __func__ <<
"] "
132 <<
"Reading IOVs from tag " <<
tag;
135 auto iiov = iovs.
find(startIov);
136 auto eiov = iovs.find(endIov);
138 while (iiov != iovs.end() && (*iiov).since <= (*eiov).since) {
140 if ((*iiov).since < startIov)
145 vHVOffPercent.push_back(1.0 *
payload->getHVoffCounts() / num_modules);
146 vLVOffPercent.push_back(1.0 *
payload->getLVoffCounts() / num_modules);
151 <<
", # HV Off=" << std::setw(6) <<
payload->getHVoffCounts() <<
", # LV Off=" << std::setw(6)
152 <<
payload->getLVoffCounts() << std::endl;
157 <<
"[SiStripDetVOffTrendPlotter::" << __func__ <<
"] "
158 <<
"Read " << niov <<
" IOVs from tag " <<
tag <<
" in the specified interval.";
160 TGraph *hv =
new TGraph(vTime.size(), vTime.data(), vHVOffPercent.data());
161 prepGraph(hv, TString(
"HVOff_") +
tag,
";UTC;Fraction of HV off", color);
162 leg_hv->AddEntry(hv,
tag.data(),
"LP");
164 TGraph *lv =
new TGraph(vTime.size(), vTime.data(), vLVOffPercent.data());
165 prepGraph(lv, TString(
"LVOff_") +
tag,
";UTC;Fraction of LV off", color);
166 leg_lv->AddEntry(lv,
tag.data(),
"LP");
168 hvgraphs.push_back(hv);
169 lvgraphs.push_back(lv);
175 TCanvas
c(
"c",
"c", 1800, 1200);
176 c.SetTopMargin(0.12);
177 c.SetBottomMargin(0.08);
180 for (
const auto hv : hvgraphs) {
181 if (hv == hvgraphs.front())
193 c.Print((
"HVOff_" + plot_postfix).
data());
196 for (
const auto lv : lvgraphs) {
197 if (lv == lvgraphs.front())
207 c.Print((
"LVOff_" + plot_postfix).
data());
References c, cond::persistency::Transaction::commit(), gather_cfg::cout, cond::persistency::ConnectionPool::createSession(), data, dumpCSV(), Exception, cond::persistency::Session::fetchPayload(), cond::persistency::IOVArray::find(), first, formatIOV(), fout, cond::time::from_boost(), geomDetToken_, edm::EventSetup::getData(), TrackerGeometryUtils::getSiStripDetIds(), getRunInfo::hours, iovMap, m_condDb, m_connectionPool, m_endTime, m_interval, m_outputCSV, m_outputPlot, m_plotTags, m_startTime, jets_cff::payload, PLOT_COLORS, prepGraph(), cond::persistency::Session::readIov(), cond::persistency::IOVProxy::selectAll(), findQualityFiles::size, cond::persistency::Transaction::start(), AlCaHLTBitMon_QueryRunRegistry::string, GlobalPosition_Frontier_DevDB_cff::tag, cond::time::to_boost(), cond::persistency::Session::transaction(), and cond::time::unpack().