CMS 3D CMS Logo

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

#include <HLTInclusiveVBFClient.h>

Inheritance diagram for HLTInclusiveVBFClient:
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

void analyze (const edm::Event &, const edm::EventSetup &) override
 
void beginJob () override
 
void beginRun (const edm::Run &run, const edm::EventSetup &c) override
 
void endJob () override
 
void endLuminosityBlock (const edm::LuminosityBlock &lumiSeg, const edm::EventSetup &c) override
 
void endRun (const edm::Run &run, const edm::EventSetup &c) override
 
 HLTInclusiveVBFClient (const edm::ParameterSet &)
 
virtual void runClient_ ()
 
 ~HLTInclusiveVBFClient () 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)
 

Private Attributes

edm::ParameterSet conf_
 
DQMStoredbe_
 
bool debug_
 
std::string dirName_
 
std::string hltTag_
 
std::string processname_
 
bool verbose_
 

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 ()
 
- 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 36 of file HLTInclusiveVBFClient.h.

Member Typedef Documentation

Definition at line 39 of file HLTInclusiveVBFClient.h.

Definition at line 38 of file HLTInclusiveVBFClient.h.

Constructor & Destructor Documentation

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

Definition at line 10 of file HLTInclusiveVBFClient.cc.

References gather_cfg::cout, dbe_, debug_, dirName_, edm::ParameterSet::getParameter(), hltTag_, Utilities::operator, processname_, dqm::dqmstoreimpl::DQMStore::setCurrentFolder(), AlCaHLTBitMon_QueryRunRegistry::string, verbose_, and ~HLTInclusiveVBFClient().

10  : conf_(iConfig) {
11  //
13 
14  //
15  if (!dbe_) {
16  edm::LogError("HLTInclusiveVBFClient")
17  << "unable to get DQMStore service, upshot is no client histograms will be made";
18  }
19 
20  //
21  debug_ = false;
22  verbose_ = false;
23 
24  //
25  processname_ = iConfig.getParameter<std::string>("processname");
26 
27  //
28  hltTag_ = iConfig.getParameter<std::string>("hltTag");
29  if (debug_)
30  std::cout << hltTag_ << std::endl;
31 
32  //
33  dirName_ = iConfig.getParameter<std::string>("DQMDirName");
34  if (dbe_)
36 }
T getParameter(std::string const &) const
void setCurrentFolder(std::string const &fullpath)
Definition: DQMStore.cc:639
HLTInclusiveVBFClient::~HLTInclusiveVBFClient ( )
overridedefault

Referenced by HLTInclusiveVBFClient().

Member Function Documentation

void HLTInclusiveVBFClient::analyze ( const edm::Event iEvent,
const edm::EventSetup iSetup 
)
override

Definition at line 44 of file HLTInclusiveVBFClient.cc.

44 {}
void HLTInclusiveVBFClient::beginJob ( void  )
overridevirtual

Reimplemented from edm::EDAnalyzer.

Definition at line 40 of file HLTInclusiveVBFClient.cc.

40 {}
void HLTInclusiveVBFClient::beginRun ( const edm::Run run,
const edm::EventSetup c 
)
override

Definition at line 42 of file HLTInclusiveVBFClient.cc.

42 {}
void HLTInclusiveVBFClient::endJob ( void  )
overridevirtual

Reimplemented from edm::EDAnalyzer.

Definition at line 52 of file HLTInclusiveVBFClient.cc.

52 {}
void HLTInclusiveVBFClient::endLuminosityBlock ( const edm::LuminosityBlock lumiSeg,
const edm::EventSetup c 
)
override

Definition at line 46 of file HLTInclusiveVBFClient.cc.

References runClient_().

46  {
47  runClient_();
48 }
void HLTInclusiveVBFClient::endRun ( const edm::Run run,
const edm::EventSetup c 
)
override

Definition at line 50 of file HLTInclusiveVBFClient.cc.

50 {}
void HLTInclusiveVBFClient::runClient_ ( )
virtual

Definition at line 54 of file HLTInclusiveVBFClient.cc.

References gather_cfg::cout, dbe_, debug_, dirName_, LogDebug, and dqm::dqmstoreimpl::DQMStore::setCurrentFolder().

Referenced by endLuminosityBlock().

54  {
55  if (!dbe_)
56  return; //we dont have the DQMStore so we cant do anything
58 
59  LogDebug("HLTInclusiveVBFClient") << "runClient" << std::endl;
60  if (debug_)
61  std::cout << "runClient" << std::endl;
62 }
#define LogDebug(id)
void setCurrentFolder(std::string const &fullpath)
Definition: DQMStore.cc:639

Member Data Documentation

edm::ParameterSet HLTInclusiveVBFClient::conf_
private

Definition at line 44 of file HLTInclusiveVBFClient.h.

DQMStore* HLTInclusiveVBFClient::dbe_
private

Definition at line 42 of file HLTInclusiveVBFClient.h.

Referenced by HLTInclusiveVBFClient(), and runClient_().

bool HLTInclusiveVBFClient::debug_
private

Definition at line 46 of file HLTInclusiveVBFClient.h.

Referenced by HLTInclusiveVBFClient(), and runClient_().

std::string HLTInclusiveVBFClient::dirName_
private

Definition at line 49 of file HLTInclusiveVBFClient.h.

Referenced by HLTInclusiveVBFClient(), and runClient_().

std::string HLTInclusiveVBFClient::hltTag_
private

Definition at line 50 of file HLTInclusiveVBFClient.h.

Referenced by HLTInclusiveVBFClient().

std::string HLTInclusiveVBFClient::processname_
private

Definition at line 51 of file HLTInclusiveVBFClient.h.

Referenced by HLTInclusiveVBFClient().

bool HLTInclusiveVBFClient::verbose_
private

Definition at line 47 of file HLTInclusiveVBFClient.h.

Referenced by HLTInclusiveVBFClient().