CMS 3D CMS Logo

EcalBarrelMonitorDbModule.cc
Go to the documentation of this file.
1 /*
2  * \file EcalBarrelMonitorDbModule.cc
3  *
4  * \author G. Della Ricca
5  *
6  */
7 
9 
10 #include <unistd.h>
11 
12 #include <cmath>
13 #include <iostream>
14 
17 
18 #include "RelationalAccess/IConnectionService.h"
19 #include "RelationalAccess/IConnectionServiceConfiguration.h"
20 
21 #include "CoralBase/Attribute.h"
22 #include "CoralKernel/Context.h"
23 
25 
27 
30 
31  prefixME_ = ps.getUntrackedParameter<std::string>("prefixME", "");
32 
33  xmlFile_ = ps.getUntrackedParameter<std::string>("xmlFile", "");
34  if (!xmlFile_.empty()) {
35  std::cout << "Monitor Elements from DB xml source file is " << xmlFile_ << std::endl;
36  }
37 
38  sleepTime_ = ps.getUntrackedParameter<int>("sleepTime", 0);
39  std::cout << "Sleep time is " << sleepTime_ << " second(s)." << std::endl;
40 
41  // html output directory
42  htmlDir_ = ps.getUntrackedParameter<std::string>("htmlDir", ".");
43 
44  if (!htmlDir_.empty()) {
45  std::cout << " HTML output will go to"
46  << " htmlDir = " << htmlDir_ << std::endl;
47  } else {
48  std::cout << " HTML output is disabled" << std::endl;
49  }
50 
51  ME_Db_ = new MonitorElementsDb(ps, xmlFile_);
52 
53  if (dqmStore_)
55 
56  icycle_ = 0;
57  session_ = nullptr;
58 }
59 
61  if (ME_Db_)
62  delete ME_Db_;
63 }
64 
66  icycle_ = 0;
67 
68  if (ME_Db_)
69  ME_Db_->beginJob();
70 }
71 
73  if (ME_Db_)
74  ME_Db_->endJob();
75 
76  std::cout << "EcalBarrelMonitorDbModule: endJob, icycle = " << icycle_ << std::endl;
77 }
78 
80  icycle_++;
81 
82  std::cout << "EcalBarrelMonitorDbModule: icycle = " << icycle_ << std::endl;
83 
84  try {
85  coral::Context &context = coral::Context::instance();
86  context.loadComponent("CORAL/Services/ConnectionService");
87  context.loadComponent("CORAL/Services/EnvironmentAuthenticationService");
88  coral::IHandle<coral::IConnectionService> connectionService =
89  context.query<coral::IConnectionService>("CORAL/Services/ConnectionService");
90  context.loadComponent("CORAL/RelationalPlugins/oracle");
91 
92  // Set configuration parameters
93  coral::IConnectionServiceConfiguration &config = connectionService->configuration();
94  config.setConnectionRetrialPeriod(1);
95  config.setConnectionRetrialTimeOut(10);
96 
97  session_ = connectionService->connect("ECAL CondDB", coral::ReadOnly);
98 
99  if (ME_Db_)
100  ME_Db_->analyze(e, c, session_);
101 
102  } catch (coral::Exception &e) {
103  std::cerr << "CORAL Exception : " << e.what() << std::endl;
104  } catch (std::exception &e) {
105  std::cerr << "Standard C++ exception : " << e.what() << std::endl;
106  }
107 
108  if (!htmlDir_.empty()) {
110  }
111 
112  delete session_;
113 
114  sleep(sleepTime_);
115 }
116 
T getUntrackedParameter(std::string const &, T const &) const
void analyze(const edm::Event &e, const edm::EventSetup &c) override
Analyze.
static PFTauRenderPlugin instance
Definition: config.py:1
Generate a Monitor Element from DB data.
EcalBarrelMonitorDbModule(const edm::ParameterSet &ps)
Constructor.
void analyze(const edm::Event &e, const edm::EventSetup &c, coral::ISessionProxy *s)
Analyze.
#define DEFINE_FWK_MODULE(type)
Definition: MakerMacros.h:16
void showDirStructure() const
Definition: DQMStore.cc:3307
void htmlOutput(std::string &htmlDir)
~EcalBarrelMonitorDbModule() override
Destructor.