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);
133  auto iovs = iovProxy.selectAll();
134  auto iiov = iovs.find(startIov);
135  auto eiov = iovs.find(endIov);
136  int niov = 0;
137  while (iiov != iovs.end() && (*iiov).since <= (*eiov).since) {
138  // convert cond::Time_t to seconds since epoch
139  if ((*iiov).since < startIov)
140  vTime.push_back(cond::time::unpack(startIov).first);
141  else
142  vTime.push_back(cond::time::unpack((*iiov).since).first);
143  auto payload = condDbSession.fetchPayload<SiStripDetVOff>((*iiov).payloadId);
144  vHVOffPercent.push_back(1.0 * payload->getHVoffCounts() / num_modules);
145  vLVOffPercent.push_back(1.0 * payload->getLVoffCounts() / num_modules);
146  iovMap[(*iiov).since][tag] = {payload->getHVoffCounts(), payload->getLVoffCounts()};
147  // debug
148  std::cout << boost::posix_time::to_simple_string(cond::time::to_boost((*iiov).since)) << " (" << (*iiov).since
149  << ")"
150  << ", # HV Off=" << std::setw(6) << payload->getHVoffCounts() << ", # LV Off=" << std::setw(6)
151  << payload->getLVoffCounts() << std::endl;
152  ++iiov;
153  ++niov;
154  }
155  edm::LogInfo("SiStripDetVOffTrendPlotter")
156  << "[SiStripDetVOffTrendPlotter::" << __func__ << "] "
157  << "Read " << niov << " IOVs from tag " << tag << " in the specified interval.";
158 
159  TGraph *hv = new TGraph(vTime.size(), vTime.data(), vHVOffPercent.data());
160  prepGraph(hv, TString("HVOff_") + tag, ";UTC;Fraction of HV off", color);
161  leg_hv->AddEntry(hv, tag.data(), "LP");
162 
163  TGraph *lv = new TGraph(vTime.size(), vTime.data(), vLVOffPercent.data());
164  prepGraph(lv, TString("LVOff_") + tag, ";UTC;Fraction of LV off", color);
165  leg_lv->AddEntry(lv, tag.data(), "LP");
166 
167  hvgraphs.push_back(hv);
168  lvgraphs.push_back(lv);
169  }
170 
171  condDbSession.transaction().commit();
172 
173  // Make plots
174  TCanvas c("c", "c", 1800, 1200);
175  c.SetTopMargin(0.12);
176  c.SetBottomMargin(0.08);
177  c.SetGridx();
178  c.SetGridy();
179  for (const auto hv : hvgraphs) {
180  if (hv == hvgraphs.front())
181  hv->Draw("ALP");
182  else
183  hv->Draw("LPsame");
184  if (fout) {
185  fout->cd();
186  hv->Write();
187  }
188  }
189  leg_hv->Draw();
190  std::string plot_postfix =
191  !m_outputPlot.empty() ? m_outputPlot : "from_" + formatIOV(startIov) + "_to_" + formatIOV(endIov) + ".png";
192  c.Print(("HVOff_" + plot_postfix).data());
193 
194  c.Clear();
195  for (const auto lv : lvgraphs) {
196  if (lv == lvgraphs.front())
197  lv->Draw("ALP");
198  else
199  lv->Draw("LPsame");
200  if (fout) {
201  fout->cd();
202  lv->Write();
203  }
204  }
205  leg_lv->Draw();
206  c.Print(("LVOff_" + plot_postfix).data());
207 
208  if (!m_outputCSV.empty()) {
209  dumpCSV(true, num_modules);
210  dumpCSV(false, num_modules);
211  }
212 }
213 
215 
217  auto facet = new boost::posix_time::time_facet(format.c_str());
218  std::ostringstream stream;
219  stream.imbue(std::locale(stream.getloc(), facet));
221  return stream.str();
222 }
223 
224 void SiStripDetVOffTrendPlotter::prepGraph(TGraph *gr, TString name, TString title, Color_t color) {
225  gr->SetName(name);
226  gr->SetTitle(title);
227  gr->SetLineColor(color);
228  gr->SetLineWidth(2);
229  gr->SetMarkerStyle(20);
230  gr->SetMarkerSize(1.5);
231  gr->SetMarkerColor(color);
232  gr->GetXaxis()->SetTimeDisplay(1);
233  gr->GetXaxis()->SetLabelOffset(0.02);
234  gr->GetXaxis()->SetTimeFormat("#splitline{%b %d}{%H:%M}");
235  gr->GetXaxis()->SetTimeOffset(0, "gmt");
236  gr->GetXaxis()->SetLabelSize(0.025);
237  gr->GetXaxis()->SetTitleSize(0.025);
238  gr->GetXaxis()->SetTitleOffset(1.6);
239  gr->GetYaxis()->SetRangeUser(0, 1.05);
240 }
241 
242 void SiStripDetVOffTrendPlotter::dumpCSV(bool isHV, std::size_t nModules) {
243  std::string outCSV = isHV ? "HVOff_table_" + m_outputCSV : "LVOff_table_" + m_outputCSV;
244  std::ofstream csv;
245  csv.open(outCSV);
246  csv << "IOV,Timestamp(UTC),";
247  for (const auto &tag : m_plotTags)
248  csv << tag << ",";
249  csv << std::endl;
250 
251  csv << std::fixed << std::setprecision(1);
252 
253  for (const auto &v : iovMap) {
254  auto iov = v.first;
255  auto timestamp = boost::posix_time::to_simple_string(cond::time::to_boost(iov));
256  csv << iov << "," << timestamp << ",";
257  for (const auto &tag : m_plotTags) {
258  if (v.second.find(tag) != v.second.end()) {
259  int count = isHV ? v.second.at(tag).first : v.second.at(tag).second;
260  csv << count << " (" << 100. * count / nModules << "%)";
261  }
262  csv << ",";
263  }
264  csv << std::endl;
265  }
266 
267  csv.close();
268 }
269 
alignBH_cfg.fixed
fixed
Definition: alignBH_cfg.py:54
ConnectionPool.h
cond::time::to_boost
boost::posix_time::ptime to_boost(Time_t iValue)
Definition: TimeConversions.h:39
SiStripDetVOffTrendPlotter::m_outputRootFile
std::string m_outputRootFile
Definition: SiStripDetVOffTrendPlotter.cc:55
Time.h
cms::cuda::stream
cudaStream_t stream
Definition: HistoContainer.h:57
gather_cfg.cout
cout
Definition: gather_cfg.py:144
SiStripDetVOffTrendPlotter::m_startTime
std::string m_startTime
Definition: SiStripDetVOffTrendPlotter.cc:50
edm::LogInfo
Definition: MessageLogger.h:254
SiStripDetVOffTrendPlotter::iovMap
std::map< cond::Time_t, std::map< std::string, std::pair< int, int > > > iovMap
Definition: SiStripDetVOffTrendPlotter.cc:61
SiStripDetVOffTrendPlotter::SiStripDetVOffTrendPlotter
SiStripDetVOffTrendPlotter(const edm::ParameterSet &iConfig)
Definition: SiStripDetVOffTrendPlotter.cc:64
SiStripDetVOffTrendPlotter::~SiStripDetVOffTrendPlotter
~SiStripDetVOffTrendPlotter() override
Definition: SiStripDetVOffTrendPlotter.cc:81
EDAnalyzer.h
findQualityFiles.v
v
Definition: findQualityFiles.py:179
cond::persistency::ConnectionPool::createSession
Session createSession(const std::string &connectionString, bool writeCapable=false)
Definition: ConnectionPool.cc:154
cond::persistency::IOVProxy::selectAll
IOVArray selectAll()
Definition: IOVProxy.cc:171
TrackerGeometryUtils::getSiStripDetIds
std::vector< uint32_t > getSiStripDetIds(const GeometricDet &geomDet)
Definition: utils.cc:4
dqmdumpme.first
first
Definition: dqmdumpme.py:55
edm::EDAnalyzer
Definition: EDAnalyzer.h:29
cond::persistency::Session::fetchPayload
std::unique_ptr< T > fetchPayload(const cond::Hash &payloadHash)
Definition: Session.h:213
SiStripDetVOffTrendPlotter::m_interval
int m_interval
Definition: SiStripDetVOffTrendPlotter.cc:48
MakerMacros.h
cond::persistency::IOVArray::find
Iterator find(cond::Time_t time) const
Definition: IOVProxy.cc:93
cond::timestamp
Definition: Time.h:19
edm::EventSetup::get
T get() const
Definition: EventSetup.h:73
DEFINE_FWK_MODULE
#define DEFINE_FWK_MODULE(type)
Definition: MakerMacros.h:16
GlobalPosition_Frontier_DevDB_cff.tag
tag
Definition: GlobalPosition_Frontier_DevDB_cff.py:11
SiStripDetVOffTrendPlotter::m_outputCSV
std::string m_outputCSV
Definition: SiStripDetVOffTrendPlotter.cc:57
Service.h
SiStripDetVOffTrendPlotter::formatIOV
std::string formatIOV(cond::Time_t iov, std::string format="%Y-%m-%d__%H_%M_%S")
Definition: SiStripDetVOffTrendPlotter.cc:216
cond::persistency::ConnectionPool
Definition: ConnectionPool.h:31
edm::ESHandle< GeometricDet >
SiStripDetVOffTrendPlotter
Definition: SiStripDetVOffTrendPlotter.cc:29
jets_cff.payload
payload
Definition: jets_cff.py:34
SiStripDetVOffTrendPlotter::m_connectionPool
cond::persistency::ConnectionPool m_connectionPool
Definition: SiStripDetVOffTrendPlotter.cc:43
cond::persistency::Session::readIov
IOVProxy readIov(const std::string &tag)
Definition: Session.cc:63
AlCaHLTBitMon_QueryRunRegistry.string
string
Definition: AlCaHLTBitMon_QueryRunRegistry.py:256
cond::persistency::IOVProxy
Definition: IOVProxy.h:92
SiStripDetVOffTrendPlotter::m_endTime
std::string m_endTime
Definition: SiStripDetVOffTrendPlotter.cc:51
edm::ParameterSet
Definition: ParameterSet.h:36
Event.h
cond::time::from_boost
Time_t from_boost(boost::posix_time::ptime bt)
Definition: TimeConversions.h:43
KineDebug3::count
void count()
Definition: KinematicConstrainedVertexUpdatorT.h:21
cond::persistency::Session
Definition: Session.h:63
SiStripDetVOffTrendPlotter::dumpCSV
void dumpCSV(bool isHV, std::size_t nModules)
Definition: SiStripDetVOffTrendPlotter.cc:242
cond::Time_t
unsigned long long Time_t
Definition: Time.h:14
groupFilesInBlocks.fout
fout
Definition: groupFilesInBlocks.py:162
SiStripDetVOffTrendPlotter::m_plotTags
std::vector< std::string > m_plotTags
Definition: SiStripDetVOffTrendPlotter.cc:45
createfilelist.int
int
Definition: createfilelist.py:10
cond::persistency::Transaction::commit
void commit()
Definition: Session.cc:23
SiStripDetVOff
Definition: SiStripDetVOff.h:31
SiStripDetVOffTrendPlotter::m_condDb
std::string m_condDb
Definition: SiStripDetVOffTrendPlotter.cc:44
SiStripDetVOffTrendPlotter::fout
TFile * fout
Definition: SiStripDetVOffTrendPlotter.cc:58
cond::persistency::ConnectionPool::setParameters
void setParameters(const edm::ParameterSet &connectionPset)
Definition: ConnectionPool.cc:40
IdealGeometryRecord.h
utils.h
edm::EventSetup
Definition: EventSetup.h:57
cond::persistency::ConnectionPool::configure
void configure()
Definition: ConnectionPool.cc:121
HltBtagPostValidation_cff.c
c
Definition: HltBtagPostValidation_cff.py:31
SiStripDetVOffTrendPlotter::endJob
void endJob() override
Definition: SiStripDetVOffTrendPlotter.cc:214
get
#define get
SiStripDetVOffTrendPlotter::analyze
void analyze(const edm::Event &evt, const edm::EventSetup &evtSetup) override
Definition: SiStripDetVOffTrendPlotter.cc:86
overlapproblemtsosanalyzer_cfi.title
title
Definition: overlapproblemtsosanalyzer_cfi.py:7
edm::ParameterSet::getParameter
T getParameter(std::string const &) const
SiStripDetVOffTrendPlotter::PLOT_COLORS
const std::vector< Color_t > PLOT_COLORS
Definition: SiStripDetVOffTrendPlotter.cc:31
cond::persistency::Session::transaction
Transaction & transaction()
Definition: Session.cc:52
cond::persistency::Transaction::start
void start(bool readOnly=true)
Definition: Session.cc:18
std
Definition: JetResolutionObject.h:76
Exception
Definition: hltDiff.cc:246
format
Skims_PA_cff.name
name
Definition: Skims_PA_cff.py:17
EventSetup.h
SiStripDetVOffTrendPlotter::m_outputPlot
std::string m_outputPlot
Definition: SiStripDetVOffTrendPlotter.cc:53
data
char data[epos_bytes_allocation]
Definition: EPOS_Wrapper.h:79
cond::time::unpack
cond::UnpackedTime unpack(cond::Time_t iValue)
Definition: TimeConversions.h:22
getRunInfo.hours
hours
Definition: getRunInfo.py:25
TimeConversions.h
ParameterSet.h
SiStripDetVOff.h
edm::Event
Definition: Event.h:73
SiStripDetVOffTrendPlotter::prepGraph
void prepGraph(TGraph *gr, TString name, TString title, Color_t color)
Definition: SiStripDetVOffTrendPlotter.cc:224
IdealGeometryRecord
Definition: IdealGeometryRecord.h:27