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  * $Date: 2009/10/26 17:33:46 $
5  * $Revision: 1.20 $
6  * \author G. Della Ricca
7  *
8 */
9 
10 #include <unistd.h>
11 
12 #include <iostream>
13 #include <cmath>
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 
29 
31 
32  prefixME_ = ps.getUntrackedParameter<std::string>("prefixME", "");
33 
34  xmlFile_ = ps.getUntrackedParameter<std::string>( "xmlFile", "" );
35  if ( xmlFile_.size() != 0 ) {
36  std::cout << "Monitor Elements from DB xml source file is " << xmlFile_ << std::endl;
37  }
38 
39  sleepTime_ = ps.getUntrackedParameter<int>( "sleepTime", 0 );
40  std::cout << "Sleep time is " << sleepTime_ << " second(s)." << std::endl;
41 
42  // html output directory
43  htmlDir_ = ps.getUntrackedParameter<std::string>("htmlDir", ".");
44 
45  if ( htmlDir_.size() != 0 ) {
46  std::cout << " HTML output will go to"
47  << " htmlDir = " << htmlDir_ << std::endl;
48  } else {
49  std::cout << " HTML output is disabled" << std::endl;
50  }
51 
52  ME_Db_ = new MonitorElementsDb( ps, xmlFile_ );
53 
55 
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
Generate a Monitor Element from DB data.
void sleep(Duration_t)
Definition: Utils.h:163
EcalBarrelMonitorDbModule(const edm::ParameterSet &ps)
Constructor.
void analyze(const edm::Event &e, const edm::EventSetup &c, coral::ISessionProxy *s)
Analyze.
virtual ~EcalBarrelMonitorDbModule()
Destructor.
tuple config
Definition: cmsDriver.py:17
tuple cout
Definition: gather_cfg.py:41
void showDirStructure(void) const
Definition: DQMStore.cc:2539
void htmlOutput(std::string &htmlDir)
void analyze(const edm::Event &e, const edm::EventSetup &c)
Analyze.