CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
EcalBarrelMonitorDbModule.cc
Go to the documentation of this file.
1 /*
2  * \file EcalBarrelMonitorDbModule.cc
3  *
4  * \author G. Della Ricca
5  *
6 */
7 
8 #include <unistd.h>
9 
10 #include <iostream>
11 #include <cmath>
12 
15 
16 #include "RelationalAccess/IConnectionService.h"
17 #include "RelationalAccess/IConnectionServiceConfiguration.h"
18 
19 #include "CoralBase/Attribute.h"
20 #include "CoralKernel/Context.h"
21 
23 
25 
27 
29 
30  prefixME_ = ps.getUntrackedParameter<std::string>("prefixME", "");
31 
32  xmlFile_ = ps.getUntrackedParameter<std::string>( "xmlFile", "" );
33  if ( xmlFile_.size() != 0 ) {
34  std::cout << "Monitor Elements from DB xml source file is " << xmlFile_ << std::endl;
35  }
36 
37  sleepTime_ = ps.getUntrackedParameter<int>( "sleepTime", 0 );
38  std::cout << "Sleep time is " << sleepTime_ << " second(s)." << std::endl;
39 
40  // html output directory
41  htmlDir_ = ps.getUntrackedParameter<std::string>("htmlDir", ".");
42 
43  if ( htmlDir_.size() != 0 ) {
44  std::cout << " HTML output will go to"
45  << " htmlDir = " << htmlDir_ << std::endl;
46  } else {
47  std::cout << " HTML output is disabled" << std::endl;
48  }
49 
50  ME_Db_ = new MonitorElementsDb( ps, xmlFile_ );
51 
53 
54  icycle_ = 0;
55  session_ = 0;
56 }
57 
59 
60  if ( ME_Db_ ) delete ME_Db_;
61 
62 }
63 
65 
66  icycle_ = 0;
67 
68  if ( ME_Db_ ) ME_Db_->beginJob();
69 
70 }
71 
73 
74  if ( ME_Db_ ) ME_Db_->endJob();
75 
76  std::cout << "EcalBarrelMonitorDbModule: endJob, icycle = " << icycle_ << std::endl;
77 
78 }
79 
81 
82  icycle_++;
83 
84  std::cout << "EcalBarrelMonitorDbModule: icycle = " << icycle_ << std::endl;
85 
86  try {
87  coral::Context& context = coral::Context::instance();
88  context.loadComponent("CORAL/Services/ConnectionService");
89  context.loadComponent("CORAL/Services/EnvironmentAuthenticationService");
90  coral::IHandle<coral::IConnectionService> connectionService = context.query<coral::IConnectionService>("CORAL/Services/ConnectionService");
91  context.loadComponent("CORAL/RelationalPlugins/oracle");
92 
93  // Set configuration parameters
94  coral::IConnectionServiceConfiguration& config = connectionService->configuration();
95  config.setConnectionRetrialPeriod(1);
96  config.setConnectionRetrialTimeOut(10);
97 
98  session_ = connectionService->connect("ECAL CondDB", coral::ReadOnly);
99 
100  if ( ME_Db_ ) 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_.size() != 0 ) {
109 
111 
112  }
113 
114  delete session_;
115 
116  sleep( sleepTime_ );
117 
118 }
119 
T getUntrackedParameter(std::string const &, T const &) const
static PFTauRenderPlugin instance
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.
virtual ~EcalBarrelMonitorDbModule()
Destructor.
tuple cout
Definition: gather_cfg.py:121
void showDirStructure(void) const
Definition: DQMStore.cc:2961
void htmlOutput(std::string &htmlDir)
void analyze(const edm::Event &e, const edm::EventSetup &c)
Analyze.