CMS 3D CMS Logo

List of all members | Public Member Functions | Public Attributes | Private Member Functions | Private Attributes
SiStripDetVOffTrendPlotter Class Reference
Inheritance diagram for SiStripDetVOffTrendPlotter:
edm::EDAnalyzer edm::EDConsumerBase

Public Member Functions

void analyze (const edm::Event &evt, const edm::EventSetup &evtSetup) override
 
void endJob () override
 
 SiStripDetVOffTrendPlotter (const edm::ParameterSet &iConfig)
 
 ~SiStripDetVOffTrendPlotter () override
 
- Public Member Functions inherited from edm::EDAnalyzer
void callWhenNewProductsRegistered (std::function< void(BranchDescription const &)> const &func)
 
 EDAnalyzer ()
 
SerialTaskQueueglobalLuminosityBlocksQueue ()
 
SerialTaskQueueglobalRunsQueue ()
 
ModuleDescription const & moduleDescription () const
 
std::string workerType () const
 
 ~EDAnalyzer () override
 
- Public Member Functions inherited from edm::EDConsumerBase
std::vector< ConsumesInfoconsumesInfo () const
 
void convertCurrentProcessAlias (std::string const &processName)
 Convert "@currentProcess" in InputTag process names to the actual current process name. More...
 
 EDConsumerBase ()
 
 EDConsumerBase (EDConsumerBase const &)=delete
 
 EDConsumerBase (EDConsumerBase &&)=default
 
ESProxyIndex const * esGetTokenIndices (edm::Transition iTrans) const
 
ProductResolverIndexAndSkipBit indexFrom (EDGetToken, BranchType, TypeID const &) const
 
void itemsMayGet (BranchType, std::vector< ProductResolverIndexAndSkipBit > &) const
 
void itemsToGet (BranchType, std::vector< ProductResolverIndexAndSkipBit > &) const
 
std::vector< ProductResolverIndexAndSkipBit > const & itemsToGetFrom (BranchType iType) const
 
void labelsForToken (EDGetToken iToken, Labels &oLabels) const
 
void modulesWhoseProductsAreConsumed (std::vector< ModuleDescription const * > &modules, ProductRegistry const &preg, std::map< std::string, ModuleDescription const * > const &labelsToDesc, std::string const &processName) const
 
EDConsumerBase const & operator= (EDConsumerBase const &)=delete
 
EDConsumerBaseoperator= (EDConsumerBase &&)=default
 
bool registeredToConsume (ProductResolverIndex, bool, BranchType) const
 
bool registeredToConsumeMany (TypeID const &, BranchType) const
 
ProductResolverIndexAndSkipBit uncheckedIndexFrom (EDGetToken) const
 
void updateLookup (BranchType iBranchType, ProductResolverIndexHelper const &, bool iPrefetchMayGet)
 
void updateLookup (eventsetup::ESRecordsToProxyIndices const &)
 
virtual ~EDConsumerBase () noexcept(false)
 

Public Attributes

const std::vector< Color_t > PLOT_COLORS {kRed, kBlue, kBlack, kOrange, kMagenta}
 

Private Member Functions

void dumpCSV (bool isHV, std::size_t nModules)
 
std::string formatIOV (cond::Time_t iov, std::string format="%Y-%m-%d__%H_%M_%S")
 
void prepGraph (TGraph *gr, TString name, TString title, Color_t color)
 

Private Attributes

TFile * fout
 
std::map< cond::Time_t, std::map< std::string, std::pair< int, int > > > iovMap
 
std::string m_condDb
 
cond::persistency::ConnectionPool m_connectionPool
 
std::string m_endTime
 
int m_interval
 
std::string m_outputCSV
 
std::string m_outputPlot
 
std::string m_outputRootFile
 
std::vector< std::string > m_plotTags
 
std::string m_startTime
 

Additional Inherited Members

- Public Types inherited from edm::EDAnalyzer
typedef EDAnalyzer ModuleType
 
- Public Types inherited from edm::EDConsumerBase
typedef ProductLabels Labels
 
- Static Public Member Functions inherited from edm::EDAnalyzer
static const std::string & baseType ()
 
static void fillDescriptions (ConfigurationDescriptions &descriptions)
 
static void prevalidate (ConfigurationDescriptions &)
 
static bool wantsGlobalLuminosityBlocks ()
 
static bool wantsGlobalRuns ()
 
static bool wantsStreamLuminosityBlocks ()
 
static bool wantsStreamRuns ()
 
- Protected Member Functions inherited from edm::EDConsumerBase
template<typename ProductType , BranchType B = InEvent>
EDGetTokenT< ProductType > consumes (edm::InputTag const &tag)
 
EDGetToken consumes (const TypeToGet &id, edm::InputTag const &tag)
 
template<BranchType B>
EDGetToken consumes (TypeToGet const &id, edm::InputTag const &tag)
 
ConsumesCollector consumesCollector ()
 Use a ConsumesCollector to gather consumes information from helper functions. More...
 
template<typename ProductType , BranchType B = InEvent>
void consumesMany ()
 
void consumesMany (const TypeToGet &id)
 
template<BranchType B>
void consumesMany (const TypeToGet &id)
 
template<typename ESProduct , typename ESRecord , Transition Tr = Transition::Event>
auto esConsumes ()
 
template<typename ESProduct , typename ESRecord , Transition Tr = Transition::Event>
auto esConsumes (ESInputTag const &tag)
 
template<typename ProductType , BranchType B = InEvent>
EDGetTokenT< ProductType > mayConsume (edm::InputTag const &tag)
 
EDGetToken mayConsume (const TypeToGet &id, edm::InputTag const &tag)
 
template<BranchType B>
EDGetToken mayConsume (const TypeToGet &id, edm::InputTag const &tag)
 

Detailed Description

Definition at line 29 of file SiStripDetVOffTrendPlotter.cc.

Constructor & Destructor Documentation

SiStripDetVOffTrendPlotter::SiStripDetVOffTrendPlotter ( const edm::ParameterSet iConfig)
explicit

Definition at line 64 of file SiStripDetVOffTrendPlotter.cc.

References cond::persistency::ConnectionPool::configure(), fout, edm::ParameterSet::getParameter(), m_connectionPool, m_outputRootFile, and cond::persistency::ConnectionPool::setParameters().

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 }
T getParameter(std::string const &) const
T getUntrackedParameter(std::string const &, T const &) const
std::vector< std::string > m_plotTags
void setParameters(const edm::ParameterSet &connectionPset)
cond::persistency::ConnectionPool m_connectionPool
SiStripDetVOffTrendPlotter::~SiStripDetVOffTrendPlotter ( )
override

Definition at line 81 of file SiStripDetVOffTrendPlotter.cc.

References fout.

81  {
82  if (fout)
83  fout->Close();
84 }

Member Function Documentation

void SiStripDetVOffTrendPlotter::analyze ( const edm::Event evt,
const edm::EventSetup evtSetup 
)
override

Definition at line 86 of file SiStripDetVOffTrendPlotter.cc.

References HltBtagPostValidation_cff::c, cond::persistency::Transaction::commit(), gather_cfg::cout, cond::persistency::ConnectionPool::createSession(), data, dumpCSV(), cond::persistency::IOVProxy::end(), Exception, cond::persistency::Session::fetchPayload(), cond::persistency::IOVProxy::find(), dqmdumpme::first, formatIOV(), fout, cond::time::from_boost(), edm::EventSetup::get(), TrackerGeometryUtils::getSiStripDetIds(), getRunInfo::hours, AnalysisDataFormats_SUSYBSMObjects::hv, 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::Transaction::start(), AlCaHLTBitMon_QueryRunRegistry::string, GlobalPosition_Frontier_DevDB_cff::tag, cond::time::to_boost(), cond::persistency::Session::transaction(), and cond::time::unpack().

86  {
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 }
void dumpCSV(bool isHV, std::size_t nModules)
void start(bool readOnly=true)
Definition: Session.cc:18
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)
IOVProxy readIov(const std::string &tag, bool full=false)
Definition: Session.cc:54
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
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)
void SiStripDetVOffTrendPlotter::dumpCSV ( bool  isHV,
std::size_t  nModules 
)
private

Definition at line 241 of file SiStripDetVOffTrendPlotter.cc.

References KineDebug3::count(), DEFINE_FWK_MODULE, alignBH_cfg::fixed, iovMap, m_outputCSV, m_plotTags, AlCaHLTBitMon_QueryRunRegistry::string, GlobalPosition_Frontier_DevDB_cff::tag, cond::timestamp, cond::time::to_boost(), and findQualityFiles::v.

Referenced by analyze().

241  {
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 }
std::vector< std::string > m_plotTags
std::map< cond::Time_t, std::map< std::string, std::pair< int, int > > > iovMap
boost::posix_time::ptime to_boost(Time_t iValue)
void SiStripDetVOffTrendPlotter::endJob ( void  )
overridevirtual

Reimplemented from edm::EDAnalyzer.

Definition at line 213 of file SiStripDetVOffTrendPlotter.cc.

Referenced by o2olib.O2ORunMgr::executeJob().

213 {}
std::string SiStripDetVOffTrendPlotter::formatIOV ( cond::Time_t  iov,
std::string  format = "%Y-%m-%d__%H_%M_%S" 
)
private

Definition at line 215 of file SiStripDetVOffTrendPlotter.cc.

References cond::time::to_boost().

Referenced by analyze().

215  {
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 }
boost::posix_time::ptime to_boost(Time_t iValue)
void SiStripDetVOffTrendPlotter::prepGraph ( TGraph *  gr,
TString  name,
TString  title,
Color_t  color 
)
private

Definition at line 223 of file SiStripDetVOffTrendPlotter.cc.

Referenced by analyze().

223  {
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 }

Member Data Documentation

TFile* SiStripDetVOffTrendPlotter::fout
private
std::map<cond::Time_t, std::map<std::string, std::pair<int, int> > > SiStripDetVOffTrendPlotter::iovMap
private

Definition at line 61 of file SiStripDetVOffTrendPlotter.cc.

Referenced by analyze(), and dumpCSV().

std::string SiStripDetVOffTrendPlotter::m_condDb
private

Definition at line 44 of file SiStripDetVOffTrendPlotter.cc.

Referenced by analyze().

cond::persistency::ConnectionPool SiStripDetVOffTrendPlotter::m_connectionPool
private

Definition at line 43 of file SiStripDetVOffTrendPlotter.cc.

Referenced by analyze(), and SiStripDetVOffTrendPlotter().

std::string SiStripDetVOffTrendPlotter::m_endTime
private

Definition at line 51 of file SiStripDetVOffTrendPlotter.cc.

Referenced by analyze().

int SiStripDetVOffTrendPlotter::m_interval
private

Definition at line 48 of file SiStripDetVOffTrendPlotter.cc.

Referenced by analyze().

std::string SiStripDetVOffTrendPlotter::m_outputCSV
private

Definition at line 57 of file SiStripDetVOffTrendPlotter.cc.

Referenced by analyze(), and dumpCSV().

std::string SiStripDetVOffTrendPlotter::m_outputPlot
private

Definition at line 53 of file SiStripDetVOffTrendPlotter.cc.

Referenced by analyze().

std::string SiStripDetVOffTrendPlotter::m_outputRootFile
private

Definition at line 55 of file SiStripDetVOffTrendPlotter.cc.

Referenced by SiStripDetVOffTrendPlotter().

std::vector<std::string> SiStripDetVOffTrendPlotter::m_plotTags
private

Definition at line 45 of file SiStripDetVOffTrendPlotter.cc.

Referenced by analyze(), and dumpCSV().

std::string SiStripDetVOffTrendPlotter::m_startTime
private

Definition at line 50 of file SiStripDetVOffTrendPlotter.cc.

Referenced by analyze().

const std::vector<Color_t> SiStripDetVOffTrendPlotter::PLOT_COLORS {kRed, kBlue, kBlack, kOrange, kMagenta}

Definition at line 31 of file SiStripDetVOffTrendPlotter.cc.

Referenced by analyze().