CMS 3D CMS Logo

List of all members | Public Member Functions
DTKeyedConfigDBDump Class Reference

#include <DTKeyedConfigDBDump.h>

Inheritance diagram for DTKeyedConfigDBDump:
edm::EDAnalyzer edm::EDConsumerBase

Public Member Functions

void analyze (const edm::Event &e, const edm::EventSetup &c) override
 
void beginJob () override
 
 DTKeyedConfigDBDump (const edm::ParameterSet &ps)
 
 ~DTKeyedConfigDBDump () 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 &&)=default
 
 EDConsumerBase (EDConsumerBase const &)=delete
 
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
 
EDConsumerBaseoperator= (EDConsumerBase &&)=default
 
EDConsumerBase const & operator= (EDConsumerBase const &)=delete
 
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)
 

Additional Inherited Members

- Public Types inherited from edm::EDAnalyzer
typedef EDAnalyzer ModuleType
 
- Public Types inherited from edm::EDConsumerBase
typedef ProductLabels Labels
 
- 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
EDGetToken consumes (const TypeToGet &id, edm::InputTag const &tag)
 
template<typename ProductType , BranchType B = InEvent>
EDGetTokenT< ProductType > consumes (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)
 
EDGetToken mayConsume (const TypeToGet &id, edm::InputTag const &tag)
 
template<BranchType B>
EDGetToken mayConsume (const TypeToGet &id, edm::InputTag const &tag)
 
template<typename ProductType , BranchType B = InEvent>
EDGetTokenT< ProductType > mayConsume (edm::InputTag const &tag)
 

Detailed Description

Description:

Date
2010/03/18 16:07:59
Revision
1.1.2.1
Author
Paolo Ronchese INFN Padova

Definition at line 35 of file DTKeyedConfigDBDump.h.

Constructor & Destructor Documentation

◆ DTKeyedConfigDBDump()

DTKeyedConfigDBDump::DTKeyedConfigDBDump ( const edm::ParameterSet ps)
explicit

Constructor

Definition at line 37 of file DTKeyedConfigDBDump.cc.

37 {}

◆ ~DTKeyedConfigDBDump()

DTKeyedConfigDBDump::~DTKeyedConfigDBDump ( )
override

Destructor

Definition at line 42 of file DTKeyedConfigDBDump.cc.

42 {}

Member Function Documentation

◆ analyze()

void DTKeyedConfigDBDump::analyze ( const edm::Event e,
const edm::EventSetup c 
)
overridevirtual

Implements edm::EDAnalyzer.

Definition at line 49 of file DTKeyedConfigDBDump.cc.

49  {
52  if (recordKey.type() == edm::eventsetup::EventSetupRecordKey::TypeTag()) {
53  //record not found
54  std::cout << "Record \"DTKeyedConfigListRcd "
55  << "\" does not exist " << std::endl;
56  }
58  std::cout << "got eshandle" << std::endl;
59  c.get<DTKeyedConfigListRcd>().get(klh);
60  std::cout << "got context" << std::endl;
61  cond::persistency::KeyList const& kl = *klh.product();
62  cond::persistency::KeyList const* kp = &kl;
63  std::cout << "now load and get" << std::endl;
64  auto pkc = kp->getUsingKey<DTKeyedConfig>(999999999);
65  std::cout << "now check" << std::endl;
66  if (pkc.get())
67  std::cout << pkc->getId() << " " << *(pkc->dataBegin()) << std::endl;
68  else
69  std::cout << "not found" << std::endl;
70  std::cout << std::endl;
71  return;
72 }

References HltBtagPostValidation_cff::c, gather_cfg::cout, edm::eventsetup::heterocontainer::HCTypeTag::findType(), get, kp, edm::ESHandle< T >::product(), and edm::eventsetup::EventSetupRecordKey::type().

◆ beginJob()

void DTKeyedConfigDBDump::beginJob ( void  )
overridevirtual

Operations

Reimplemented from edm::EDAnalyzer.

Definition at line 47 of file DTKeyedConfigDBDump.cc.

47 { return; }
edm::ESHandle::product
T const * product() const
Definition: ESHandle.h:86
edm::eventsetup::heterocontainer::HCTypeTag::findType
static HCTypeTag findType(char const *iTypeName)
find a type based on the types name, if not found will return default HCTypeTag
Definition: HCTypeTag.cc:121
gather_cfg.cout
cout
Definition: gather_cfg.py:144
edm::eventsetup::EventSetupRecordKey
Definition: EventSetupRecordKey.h:30
DTKeyedConfigListRcd
Definition: DTKeyedConfigListRcd.h:5
edm::ESHandle
Definition: DTSurvey.h:22
edm::eventsetup::EventSetupRecordKey::TypeTag
heterocontainer::HCTypeTag TypeTag
Definition: EventSetupRecordKey.h:32
DTKeyedConfig
Definition: DTKeyedConfig.h:35
HltBtagPostValidation_cff.c
c
Definition: HltBtagPostValidation_cff.py:31
get
#define get
cond::persistency::KeyList
Definition: KeyList.h:33
kp
int kp
Definition: CascadeWrapper.h:13