88 boost::posix_time::ptime p_start, p_end;
91 p_end = boost::posix_time::second_clock::universal_time();
92 p_start = p_end - boost::posix_time::hours(
m_interval);
95 p_start = boost::posix_time::time_from_string(
m_startTime);
96 p_end = boost::posix_time::time_from_string(
m_endTime);
100 if (startIov > endIov)
102 edm::LogInfo(
"SiStripDetVOffTrendPlotter") <<
"[SiStripDetVOffTrendPlotter::" << __func__ <<
"] "
103 <<
"Set start IOV " << startIov <<
" (" << boost::posix_time::to_simple_string(p_start) <<
")"
104 <<
"\n ... Set end IOV " << endIov <<
" (" << boost::posix_time::to_simple_string(p_end) <<
")" ;
107 edm::LogInfo(
"SiStripDetVOffTrendPlotter") <<
"[SiStripDetVOffTrendPlotter::" << __func__ <<
"] "
108 <<
"Query the condition database " <<
m_condDb;
113 std::vector<TGraph*> hvgraphs, lvgraphs;
114 TLegend *leg_hv =
new TLegend(0.6, 0.87, 0.99, 0.99);
115 TLegend *leg_lv =
new TLegend(0.6, 0.87, 0.99, 0.99);
116 for (
unsigned itag=0; itag<
m_plotTags.size(); ++itag){
120 std::vector<double> vTime;
121 std::vector<double> vHVOffPercent, vLVOffPercent;
124 edm::LogInfo(
"SiStripDetVOffTrendPlotter") <<
"[SiStripDetVOffTrendPlotter::" << __func__ <<
"] "
125 <<
"Reading IOVs from tag " <<
tag;
127 auto iiov = iovProxy.
find(startIov);
128 auto eiov = iovProxy.
find(endIov);
130 while (iiov != iovProxy.
end() && (*iiov).since <= (*eiov).since){
132 if ((*iiov).since<startIov)
137 vHVOffPercent.push_back( 1.0*payload->getHVoffCounts()/num_modules );
138 vLVOffPercent.push_back( 1.0*payload->getLVoffCounts()/num_modules );
139 iovMap[(*iiov).since][
tag] = {payload->getHVoffCounts(), payload->getLVoffCounts()};
142 <<
" (" << (*iiov).since <<
")"
143 <<
", # HV Off=" << std::setw(6) << payload->getHVoffCounts()
144 <<
", # LV Off=" << std::setw(6) << payload->getLVoffCounts() << std::endl;
148 edm::LogInfo(
"SiStripDetVOffTrendPlotter") <<
"[SiStripDetVOffTrendPlotter::" << __func__ <<
"] "
149 <<
"Read " << niov <<
" IOVs from tag " << tag <<
" in the specified interval.";
151 TGraph *
hv =
new TGraph(vTime.size(), vTime.data(), vHVOffPercent.data());
152 prepGraph(hv, TString(
"HVOff_")+tag,
";UTC;Fraction of HV off",
color);
153 leg_hv->AddEntry(hv, tag.data(),
"LP");
155 TGraph *lv =
new TGraph(vTime.size(), vTime.data(), vLVOffPercent.data());
156 prepGraph(lv, TString(
"LVOff_")+tag,
";UTC;Fraction of LV off",
color);
157 leg_lv->AddEntry(lv, tag.data(),
"LP");
159 hvgraphs.push_back(hv);
160 lvgraphs.push_back(lv);
166 TCanvas
c(
"c",
"c", 1800, 1200);
167 c.SetTopMargin(0.12);
168 c.SetBottomMargin(0.08);
171 for (
const auto hv : hvgraphs){
172 if (hv==hvgraphs.front())
183 c.Print( (
"HVOff_" + plot_postfix).
data() );
186 for (
const auto lv : lvgraphs){
187 if (lv==lvgraphs.front())
197 c.Print( (
"LVOff_" + plot_postfix).
data() );
boost::shared_ptr< T > fetchPayload(const cond::Hash &payloadHash)
void start(bool readOnly=true)
std::vector< std::string > m_plotTags
Transaction & transaction()
void prepGraph(TGraph *gr, TString name, TString title, Color_t color)
edm::Service< SiStripDetInfoFileReader > detidReader
IOVProxy readIov(const std::string &tag, bool full=false)
unsigned long long Time_t
const std::vector< uint32_t > & getAllDetIds() const
std::string formatIOV(cond::Time_t iov, std::string format="%Y-%m-%d__%H_%M_%S")
Iterator find(cond::Time_t time)
Session createSession(const std::string &connectionString, bool writeCapable=false)
Time_t from_boost(boost::posix_time::ptime bt)
std::map< cond::Time_t, std::map< std::string, std::pair< int, int > > > iovMap
cond::persistency::ConnectionPool m_connectionPool
const std::vector< Color_t > PLOT_COLORS
char data[epos_bytes_allocation]
boost::posix_time::ptime to_boost(Time_t iValue)
cond::UnpackedTime unpack(cond::Time_t iValue)