28 const std::vector<Color_t>
PLOT_COLORS{kRed, kBlue, kBlack, kOrange, kMagenta};
59 std::map<cond::Time_t, std::map<std::string, std::pair<int, int>>>
iovMap;
89 boost::posix_time::ptime p_start, p_end;
92 p_end = boost::posix_time::second_clock::universal_time();
93 p_start = p_end - boost::posix_time::hours(
m_interval);
96 p_start = boost::posix_time::time_from_string(
m_startTime);
97 p_end = boost::posix_time::time_from_string(
m_endTime);
101 if (startIov > endIov)
104 <<
"[SiStripDetVOffTrendPlotter::" << __func__ <<
"] " 105 <<
"Set start IOV " << startIov <<
" (" << boost::posix_time::to_simple_string(p_start) <<
")" 106 <<
"\n ... Set end IOV " << endIov <<
" (" << boost::posix_time::to_simple_string(p_end) <<
")";
109 edm::LogInfo(
"SiStripDetVOffTrendPlotter") <<
"[SiStripDetVOffTrendPlotter::" << __func__ <<
"] " 110 <<
"Query the condition database " <<
m_condDb;
115 std::vector<TGraph *> hvgraphs, lvgraphs;
116 TLegend *leg_hv =
new TLegend(0.6, 0.87, 0.99, 0.99);
117 TLegend *leg_lv =
new TLegend(0.6, 0.87, 0.99, 0.99);
118 for (
unsigned itag = 0; itag <
m_plotTags.size(); ++itag) {
122 std::vector<double> vTime;
123 std::vector<double> vHVOffPercent, vLVOffPercent;
126 edm::LogInfo(
"SiStripDetVOffTrendPlotter") <<
"[SiStripDetVOffTrendPlotter::" << __func__ <<
"] " 127 <<
"Reading IOVs from tag " <<
tag;
129 auto iiov = iovProxy.
find(startIov);
130 auto eiov = iovProxy.
find(endIov);
132 while (iiov != iovProxy.
end() && (*iiov).since <= (*eiov).since) {
134 if ((*iiov).since < startIov)
139 vHVOffPercent.push_back(1.0 *
payload->getHVoffCounts() / num_modules);
140 vLVOffPercent.push_back(1.0 *
payload->getLVoffCounts() / num_modules);
145 <<
", # HV Off=" << std::setw(6) <<
payload->getHVoffCounts() <<
", # LV Off=" << std::setw(6)
146 <<
payload->getLVoffCounts() << std::endl;
151 <<
"[SiStripDetVOffTrendPlotter::" << __func__ <<
"] " 152 <<
"Read " << niov <<
" IOVs from tag " << tag <<
" in the specified interval.";
154 TGraph *
hv =
new TGraph(vTime.size(), vTime.data(), vHVOffPercent.data());
155 prepGraph(hv, TString(
"HVOff_") + tag,
";UTC;Fraction of HV off",
color);
156 leg_hv->AddEntry(hv, tag.data(),
"LP");
158 TGraph *lv =
new TGraph(vTime.size(), vTime.data(), vLVOffPercent.data());
159 prepGraph(lv, TString(
"LVOff_") + tag,
";UTC;Fraction of LV off",
color);
160 leg_lv->AddEntry(lv, tag.data(),
"LP");
162 hvgraphs.push_back(hv);
163 lvgraphs.push_back(lv);
169 TCanvas
c(
"c",
"c", 1800, 1200);
170 c.SetTopMargin(0.12);
171 c.SetBottomMargin(0.08);
174 for (
const auto hv : hvgraphs) {
175 if (
hv == hvgraphs.front())
187 c.Print((
"HVOff_" + plot_postfix).
data());
190 for (
const auto lv : lvgraphs) {
191 if (lv == lvgraphs.front())
201 c.Print((
"LVOff_" + plot_postfix).
data());
212 auto facet =
new boost::posix_time::time_facet(format.c_str());
213 std::ostringstream stream;
214 stream.imbue(std::locale(stream.getloc(), facet));
222 gr->SetLineColor(color);
224 gr->SetMarkerStyle(20);
225 gr->SetMarkerSize(1.5);
226 gr->SetMarkerColor(color);
227 gr->GetXaxis()->SetTimeDisplay(1);
228 gr->GetXaxis()->SetLabelOffset(0.02);
229 gr->GetXaxis()->SetTimeFormat(
"#splitline{%b %d}{%H:%M}");
230 gr->GetXaxis()->SetTimeOffset(0,
"gmt");
231 gr->GetXaxis()->SetLabelSize(0.025);
232 gr->GetXaxis()->SetTitleSize(0.025);
233 gr->GetXaxis()->SetTitleOffset(1.6);
234 gr->GetYaxis()->SetRangeUser(0, 1.05);
244 csv <<
"IOV,Timestamp(UTC),";
255 for (
const auto &tag : m_plotTags) {
256 if (
v.second.find(tag) !=
v.second.end()) {
257 int count = isHV ?
v.second.at(tag).first :
v.second.at(tag).second;
258 csv << count <<
" (" << 100. * count / num_modules <<
"%)";
~SiStripDetVOffTrendPlotter() override
T getParameter(std::string const &) const
void start(bool readOnly=true)
void analyze(const edm::Event &evt, const edm::EventSetup &evtSetup) override
std::unique_ptr< T > fetchPayload(const cond::Hash &payloadHash)
std::vector< std::string > m_plotTags
Transaction & transaction()
void prepGraph(TGraph *gr, TString name, TString title, Color_t color)
void setParameters(const edm::ParameterSet &connectionPset)
edm::Service< SiStripDetInfoFileReader > detidReader
IOVProxy readIov(const std::string &tag, bool full=false)
#define DEFINE_FWK_MODULE(type)
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
SiStripDetVOffTrendPlotter(const edm::ParameterSet &iConfig)
char data[epos_bytes_allocation]
std::string m_outputRootFile
boost::posix_time::ptime to_boost(Time_t iValue)
cond::UnpackedTime unpack(cond::Time_t iValue)