CMS 3D CMS Logo

List of all members | Public Types | Public Member Functions | Protected Member Functions | Private Attributes
EcalBarrelMonitorDbModule Class Reference

#include <EcalBarrelMonitorDbModule.h>

Inheritance diagram for EcalBarrelMonitorDbModule:
edm::EDAnalyzer edm::EDConsumerBase

Public Types

typedef dqm::legacy::DQMStore DQMStore
 
typedef dqm::legacy::MonitorElement MonitorElement
 
- Public Types inherited from edm::EDAnalyzer
typedef EDAnalyzer ModuleType
 
- Public Types inherited from edm::EDConsumerBase
typedef ProductLabels Labels
 

Public Member Functions

 EcalBarrelMonitorDbModule (const edm::ParameterSet &ps)
 Constructor. More...
 
 ~EcalBarrelMonitorDbModule () override
 Destructor. More...
 
- 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)
 

Protected Member Functions

void analyze (const edm::Event &e, const edm::EventSetup &c) override
 Analyze. More...
 
void beginJob (void) override
 
void endJob (void) override
 
- 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)
 

Private Attributes

DQMStoredqmStore_
 
std::string htmlDir_
 
int icycle_
 
MonitorElementsDbME_Db_
 
std::string prefixME_
 
coral::ISessionProxy * session_
 
unsigned int sleepTime_
 
std::string xmlFile_
 

Additional Inherited Members

- 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 ()
 

Detailed Description

Definition at line 24 of file EcalBarrelMonitorDbModule.h.

Member Typedef Documentation

Definition at line 27 of file EcalBarrelMonitorDbModule.h.

Definition at line 26 of file EcalBarrelMonitorDbModule.h.

Constructor & Destructor Documentation

EcalBarrelMonitorDbModule::EcalBarrelMonitorDbModule ( const edm::ParameterSet ps)

Constructor.

Definition at line 28 of file EcalBarrelMonitorDbModule.cc.

References gather_cfg::cout, dqmStore_, edm::ParameterSet::getUntrackedParameter(), htmlDir_, icycle_, ME_Db_, Utilities::operator, prefixME_, session_, dqm::dqmstoreimpl::DQMStore::showDirStructure(), sleepTime_, AlCaHLTBitMon_QueryRunRegistry::string, and xmlFile_.

28  {
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 
52 
53  if (dqmStore_)
55 
56  icycle_ = 0;
57  session_ = nullptr;
58 }
T getUntrackedParameter(std::string const &, T const &) const
void showDirStructure() const
Definition: DQMStore.cc:2926
EcalBarrelMonitorDbModule::~EcalBarrelMonitorDbModule ( )
override

Destructor.

Definition at line 60 of file EcalBarrelMonitorDbModule.cc.

References ME_Db_.

60  {
61  if (ME_Db_)
62  delete ME_Db_;
63 }

Member Function Documentation

void EcalBarrelMonitorDbModule::analyze ( const edm::Event e,
const edm::EventSetup c 
)
overrideprotected

Analyze.

Definition at line 79 of file EcalBarrelMonitorDbModule.cc.

References MonitorElementsDb::analyze(), beam_dqm_sourceclient-live_cfg::cerr, gather_cfg::cout, DEFINE_FWK_MODULE, cppFunctionSkipper::exception, Exception, htmlDir_, MonitorElementsDb::htmlOutput(), icycle_, instance, ME_Db_, session_, and sleepTime_.

79  {
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 }
static PFTauRenderPlugin instance
Definition: config.py:1
void analyze(const edm::Event &e, const edm::EventSetup &c, coral::ISessionProxy *s)
Analyze.
void htmlOutput(std::string &htmlDir)
void EcalBarrelMonitorDbModule::beginJob ( void  )
overrideprotectedvirtual

Reimplemented from edm::EDAnalyzer.

Definition at line 65 of file EcalBarrelMonitorDbModule.cc.

References MonitorElementsDb::beginJob(), icycle_, and ME_Db_.

65  {
66  icycle_ = 0;
67 
68  if (ME_Db_)
69  ME_Db_->beginJob();
70 }
void EcalBarrelMonitorDbModule::endJob ( void  )
overrideprotectedvirtual

Reimplemented from edm::EDAnalyzer.

Definition at line 72 of file EcalBarrelMonitorDbModule.cc.

References gather_cfg::cout, MonitorElementsDb::endJob(), icycle_, and ME_Db_.

72  {
73  if (ME_Db_)
74  ME_Db_->endJob();
75 
76  std::cout << "EcalBarrelMonitorDbModule: endJob, icycle = " << icycle_ << std::endl;
77 }

Member Data Documentation

DQMStore* EcalBarrelMonitorDbModule::dqmStore_
private

Definition at line 48 of file EcalBarrelMonitorDbModule.h.

Referenced by EcalBarrelMonitorDbModule().

std::string EcalBarrelMonitorDbModule::htmlDir_
private

Definition at line 52 of file EcalBarrelMonitorDbModule.h.

Referenced by analyze(), and EcalBarrelMonitorDbModule().

int EcalBarrelMonitorDbModule::icycle_
private

Definition at line 46 of file EcalBarrelMonitorDbModule.h.

Referenced by analyze(), beginJob(), EcalBarrelMonitorDbModule(), and endJob().

MonitorElementsDb* EcalBarrelMonitorDbModule::ME_Db_
private
std::string EcalBarrelMonitorDbModule::prefixME_
private

Definition at line 50 of file EcalBarrelMonitorDbModule.h.

Referenced by EcalBarrelMonitorDbModule().

coral::ISessionProxy* EcalBarrelMonitorDbModule::session_
private

Definition at line 60 of file EcalBarrelMonitorDbModule.h.

Referenced by analyze(), and EcalBarrelMonitorDbModule().

unsigned int EcalBarrelMonitorDbModule::sleepTime_
private

Definition at line 58 of file EcalBarrelMonitorDbModule.h.

Referenced by analyze(), and EcalBarrelMonitorDbModule().

std::string EcalBarrelMonitorDbModule::xmlFile_
private

Definition at line 54 of file EcalBarrelMonitorDbModule.h.

Referenced by EcalBarrelMonitorDbModule().