CMS 3D CMS Logo

SiStripDetVOffTrendPlotter.cc
Go to the documentation of this file.
6 
7 #include <iostream>
8 #include <fstream>
9 #include <sstream>
10 
12 
16 
20 
21 #include <TROOT.h>
22 #include <TSystem.h>
23 #include <TCanvas.h>
24 #include <TFile.h>
25 #include <TLegend.h>
26 #include <TGraph.h>
27 #include <TH1.h>
28 
30 public:
31  const std::vector<Color_t> PLOT_COLORS{kRed, kBlue, kBlack, kOrange, kMagenta};
32 
33  explicit SiStripDetVOffTrendPlotter(const edm::ParameterSet &iConfig);
34  ~SiStripDetVOffTrendPlotter() override;
35  void analyze(const edm::Event &evt, const edm::EventSetup &evtSetup) override;
36  void endJob() override;
37 
38 private:
39  std::string formatIOV(cond::Time_t iov, std::string format = "%Y-%m-%d__%H_%M_%S");
40  void prepGraph(TGraph *gr, TString name, TString title, Color_t color);
41  void dumpCSV(bool isHV, std::size_t nModules);
42 
45  std::vector<std::string> m_plotTags;
46 
47  // Time interval (in hours) to go back for the plotting.
49  // Or manually specify the start/end time. Format: "2002-01-20 23:59:59.000". Set m_interval to non-positive number to use this.
52  // Specify output plot file name. Will use the timestamps if left empty.
54  // Specify output root file name. Leave empty if do not want to save plots in a root file.
56  // Specify output CSV file name. Leave empty if do not want to dump HV/LV counts in a CSV file.
58  TFile *fout;
59 
60  // IOV TAG #HV, #LV
61  std::map<cond::Time_t, std::map<std::string, std::pair<int, int>>> iovMap;
62 };
63 
65  : m_connectionPool(),
66  m_condDb(iConfig.getParameter<std::string>("conditionDatabase")),
67  m_plotTags(iConfig.getParameter<std::vector<std::string>>("plotTags")),
68  m_interval(iConfig.getParameter<int>("timeInterval")),
69  m_startTime(iConfig.getUntrackedParameter<std::string>("startTime", "")),
70  m_endTime(iConfig.getUntrackedParameter<std::string>("endTime", "")),
71  m_outputPlot(iConfig.getUntrackedParameter<std::string>("outputPlot", "")),
72  m_outputRootFile(iConfig.getUntrackedParameter<std::string>("outputRootFile", "")),
73  m_outputCSV(iConfig.getUntrackedParameter<std::string>("outputCSV", "")),
74  fout(nullptr) {
77  if (!m_outputRootFile.empty())
78  fout = new TFile(m_outputRootFile.data(), "RECREATE");
79 }
80 
82  if (fout)
83  fout->Close();
84 }
85 
87  // get total number of modules
88  edm::ESHandle<GeometricDet> geomDetHandle;
89  evtSetup.get<IdealGeometryRecord>().get(geomDetHandle);
90  const auto num_modules = TrackerGeometryUtils::getSiStripDetIds(*geomDetHandle).size();
91 
92  // get start and end time for DB query
93  boost::posix_time::ptime p_start, p_end;
94  if (m_interval > 0) {
95  // from m_interval hours ago to now
96  p_end = boost::posix_time::second_clock::universal_time();
97  p_start = p_end - boost::posix_time::hours(m_interval);
98  } else {
99  // use start and end time from config file
100  p_start = boost::posix_time::time_from_string(m_startTime);
101  p_end = boost::posix_time::time_from_string(m_endTime);
102  }
103  cond::Time_t startIov = cond::time::from_boost(p_start);
104  cond::Time_t endIov = cond::time::from_boost(p_end);
105  if (startIov > endIov)
106  throw cms::Exception("endTime must be greater than startTime!");
107  edm::LogInfo("SiStripDetVOffTrendPlotter")
108  << "[SiStripDetVOffTrendPlotter::" << __func__ << "] "
109  << "Set start IOV " << startIov << " (" << boost::posix_time::to_simple_string(p_start) << ")"
110  << "\n ... Set end IOV " << endIov << " (" << boost::posix_time::to_simple_string(p_end) << ")";
111 
112  // open db session
113  edm::LogInfo("SiStripDetVOffTrendPlotter") << "[SiStripDetVOffTrendPlotter::" << __func__ << "] "
114  << "Query the condition database " << m_condDb;
116  condDbSession.transaction().start(true);
117 
118  // loop over all tags to plot
119  std::vector<TGraph *> hvgraphs, lvgraphs;
120  TLegend *leg_hv = new TLegend(0.6, 0.87, 0.99, 0.99);
121  TLegend *leg_lv = new TLegend(0.6, 0.87, 0.99, 0.99);
122  for (unsigned itag = 0; itag < m_plotTags.size(); ++itag) {
123  auto tag = m_plotTags.at(itag);
124  auto color = itag < PLOT_COLORS.size() ? PLOT_COLORS.at(itag) : kGreen + itag;
125 
126  std::vector<double> vTime;
127  std::vector<double> vHVOffPercent, vLVOffPercent;
128 
129  // query the database
130  edm::LogInfo("SiStripDetVOffTrendPlotter") << "[SiStripDetVOffTrendPlotter::" << __func__ << "] "
131  << "Reading IOVs from tag " << tag;
132  cond::persistency::IOVProxy iovProxy = condDbSession.readIov(tag, true); // load all?
133  auto iiov = iovProxy.find(startIov);
134  auto eiov = iovProxy.find(endIov);
135  int niov = 0;
136  while (iiov != iovProxy.end() && (*iiov).since <= (*eiov).since) {
137  // convert cond::Time_t to seconds since epoch
138  if ((*iiov).since < startIov)
139  vTime.push_back(cond::time::unpack(startIov).first);
140  else
141  vTime.push_back(cond::time::unpack((*iiov).since).first);
142  auto payload = condDbSession.fetchPayload<SiStripDetVOff>((*iiov).payloadId);
143  vHVOffPercent.push_back(1.0 * payload->getHVoffCounts() / num_modules);
144  vLVOffPercent.push_back(1.0 * payload->getLVoffCounts() / num_modules);
145  iovMap[(*iiov).since][tag] = {payload->getHVoffCounts(), payload->getLVoffCounts()};
146  // debug
147  std::cout << boost::posix_time::to_simple_string(cond::time::to_boost((*iiov).since)) << " (" << (*iiov).since
148  << ")"
149  << ", # HV Off=" << std::setw(6) << payload->getHVoffCounts() << ", # LV Off=" << std::setw(6)
150  << payload->getLVoffCounts() << std::endl;
151  ++iiov;
152  ++niov;
153  }
154  edm::LogInfo("SiStripDetVOffTrendPlotter")
155  << "[SiStripDetVOffTrendPlotter::" << __func__ << "] "
156  << "Read " << niov << " IOVs from tag " << tag << " in the specified interval.";
157 
158  TGraph *hv = new TGraph(vTime.size(), vTime.data(), vHVOffPercent.data());
159  prepGraph(hv, TString("HVOff_") + tag, ";UTC;Fraction of HV off", color);
160  leg_hv->AddEntry(hv, tag.data(), "LP");
161 
162  TGraph *lv = new TGraph(vTime.size(), vTime.data(), vLVOffPercent.data());
163  prepGraph(lv, TString("LVOff_") + tag, ";UTC;Fraction of LV off", color);
164  leg_lv->AddEntry(lv, tag.data(), "LP");
165 
166  hvgraphs.push_back(hv);
167  lvgraphs.push_back(lv);
168  }
169 
170  condDbSession.transaction().commit();
171 
172  // Make plots
173  TCanvas c("c", "c", 1800, 1200);
174  c.SetTopMargin(0.12);
175  c.SetBottomMargin(0.08);
176  c.SetGridx();
177  c.SetGridy();
178  for (const auto hv : hvgraphs) {
179  if (hv == hvgraphs.front())
180  hv->Draw("ALP");
181  else
182  hv->Draw("LPsame");
183  if (fout) {
184  fout->cd();
185  hv->Write();
186  }
187  }
188  leg_hv->Draw();
189  std::string plot_postfix =
190  !m_outputPlot.empty() ? m_outputPlot : "from_" + formatIOV(startIov) + "_to_" + formatIOV(endIov) + ".png";
191  c.Print(("HVOff_" + plot_postfix).data());
192 
193  c.Clear();
194  for (const auto lv : lvgraphs) {
195  if (lv == lvgraphs.front())
196  lv->Draw("ALP");
197  else
198  lv->Draw("LPsame");
199  if (fout) {
200  fout->cd();
201  lv->Write();
202  }
203  }
204  leg_lv->Draw();
205  c.Print(("LVOff_" + plot_postfix).data());
206 
207  if (!m_outputCSV.empty()) {
208  dumpCSV(true, num_modules);
209  dumpCSV(false, num_modules);
210  }
211 }
212 
214 
216  auto facet = new boost::posix_time::time_facet(format.c_str());
217  std::ostringstream stream;
218  stream.imbue(std::locale(stream.getloc(), facet));
219  stream << cond::time::to_boost(iov);
220  return stream.str();
221 }
222 
223 void SiStripDetVOffTrendPlotter::prepGraph(TGraph *gr, TString name, TString title, Color_t color) {
224  gr->SetName(name);
225  gr->SetTitle(title);
226  gr->SetLineColor(color);
227  gr->SetLineWidth(2);
228  gr->SetMarkerStyle(20);
229  gr->SetMarkerSize(1.5);
230  gr->SetMarkerColor(color);
231  gr->GetXaxis()->SetTimeDisplay(1);
232  gr->GetXaxis()->SetLabelOffset(0.02);
233  gr->GetXaxis()->SetTimeFormat("#splitline{%b %d}{%H:%M}");
234  gr->GetXaxis()->SetTimeOffset(0, "gmt");
235  gr->GetXaxis()->SetLabelSize(0.025);
236  gr->GetXaxis()->SetTitleSize(0.025);
237  gr->GetXaxis()->SetTitleOffset(1.6);
238  gr->GetYaxis()->SetRangeUser(0, 1.05);
239 }
240 
241 void SiStripDetVOffTrendPlotter::dumpCSV(bool isHV, std::size_t nModules) {
242  std::string outCSV = isHV ? "HVOff_table_" + m_outputCSV : "LVOff_table_" + m_outputCSV;
243  std::ofstream csv;
244  csv.open(outCSV);
245  csv << "IOV,Timestamp(UTC),";
246  for (const auto &tag : m_plotTags)
247  csv << tag << ",";
248  csv << std::endl;
249 
250  csv << std::fixed << std::setprecision(1);
251 
252  for (const auto &v : iovMap) {
253  auto iov = v.first;
254  auto timestamp = boost::posix_time::to_simple_string(cond::time::to_boost(iov));
255  csv << iov << "," << timestamp << ",";
256  for (const auto &tag : m_plotTags) {
257  if (v.second.find(tag) != v.second.end()) {
258  int count = isHV ? v.second.at(tag).first : v.second.at(tag).second;
259  csv << count << " (" << 100. * count / nModules << "%)";
260  }
261  csv << ",";
262  }
263  csv << std::endl;
264  }
265 
266  csv.close();
267 }
268 
T getParameter(std::string const &) const
void dumpCSV(bool isHV, std::size_t nModules)
void start(bool readOnly=true)
Definition: Session.cc:18
#define nullptr
void analyze(const edm::Event &evt, const edm::EventSetup &evtSetup) override
std::unique_ptr< T > fetchPayload(const cond::Hash &payloadHash)
Definition: Session.h:224
susybsm::HSCParticleRefVector hv
Definition: classes.h:28
std::vector< std::string > m_plotTags
Transaction & transaction()
Definition: Session.cc:43
void prepGraph(TGraph *gr, TString name, TString title, Color_t color)
void setParameters(const edm::ParameterSet &connectionPset)
IOVProxy readIov(const std::string &tag, bool full=false)
Definition: Session.cc:54
#define DEFINE_FWK_MODULE(type)
Definition: MakerMacros.h:16
unsigned long long Time_t
Definition: Time.h:14
std::string formatIOV(cond::Time_t iov, std::string format="%Y-%m-%d__%H_%M_%S")
std::vector< uint32_t > getSiStripDetIds(const GeometricDet &geomDet)
Definition: utils.cc:4
Iterator find(cond::Time_t time)
Definition: IOVProxy.cc:322
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]
Definition: EPOS_Wrapper.h:79
T get() const
Definition: EventSetup.h:73
boost::posix_time::ptime to_boost(Time_t iValue)
Iterator end() const
Definition: IOVProxy.cc:293
cond::UnpackedTime unpack(cond::Time_t iValue)