CMS 3D CMS Logo

List of all members | Public Member Functions | Private Attributes
DummyCondObjPrinter< TObject, TRecord > Class Template Reference

#include <DummyCondObjPrinter.h>

Inheritance diagram for DummyCondObjPrinter< TObject, TRecord >:
edm::EDAnalyzer edm::EDConsumerBase

Public Member Functions

void analyze (const edm::Event &e, const edm::EventSetup &es) override
 
 DummyCondObjPrinter (const edm::ParameterSet &iConfig)
 
 ~DummyCondObjPrinter () 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
 
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)
 
virtual ~EDConsumerBase () noexcept(false)
 

Private Attributes

unsigned long long cacheID
 
edm::ParameterSet iConfig_
 

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

template<typename TObject, typename TRecord>
class DummyCondObjPrinter< TObject, TRecord >

Definition at line 19 of file DummyCondObjPrinter.h.

Constructor & Destructor Documentation

template<typename TObject , typename TRecord >
DummyCondObjPrinter< TObject, TRecord >::DummyCondObjPrinter ( const edm::ParameterSet iConfig)
explicit

Definition at line 34 of file DummyCondObjPrinter.h.

References dataset::name.

34  :iConfig_(iConfig),cacheID(0){
35  edm::LogInfo("DummyCondObjPrinter") << "DummyCondObjPrinter constructor for typename " << typeid(TObject).name() << " and record " << typeid(TRecord).name() << std::endl;
36 }
edm::ParameterSet iConfig_
unsigned long long cacheID
template<typename TObject , typename TRecord >
DummyCondObjPrinter< TObject, TRecord >::~DummyCondObjPrinter ( )
override

Definition at line 40 of file DummyCondObjPrinter.h.

40  {
41  edm::LogInfo("DummyCondObjPrinter") << "DummyCondObjPrinter::~DummyCondObjPrinter()" << std::endl;
42 }

Member Function Documentation

template<typename TObject , typename TRecord >
void DummyCondObjPrinter< TObject, TRecord >::analyze ( const edm::Event e,
const edm::EventSetup es 
)
override

Definition at line 45 of file DummyCondObjPrinter.h.

References DummyCondObjPrinter< TObject, TRecord >::cacheID, edm::EventSetup::get(), and edm::ESHandle< T >::product().

45  {
46 
47  if( cacheID == es.get<TRecord>().cacheIdentifier())
48  return;
49 
50  cacheID = es.get<TRecord>().cacheIdentifier();
51 
53  es.get<TRecord>().get( esobj );
55  es.get<TrackerTopologyRcd>().get(tTopo);
56  std::stringstream sSummary, sDebug;
57  esobj->printSummary(sSummary, tTopo.product());
58  esobj->printDebug(sDebug, tTopo.product());
59 
60  // edm::LogInfo("DummyCondObjPrinter") << "\nPrintSummary \n" << sSummary.str() << std::endl;
61  // edm::LogWarning("DummyCondObjPrinter") << "\nPrintDebug \n" << sDebug.str() << std::endl;
62  edm::LogPrint("DummyCondObjContentPrinter") << "\nPrintSummary \n" << sSummary.str() << std::endl;
63  edm::LogVerbatim("DummyCondObjContentPrinter") << "\nPrintDebug \n" << sDebug.str() << std::endl;
64 }
T get() const
Definition: EventSetup.h:63
T const * product() const
Definition: ESHandle.h:86
unsigned long long cacheID

Member Data Documentation

template<typename TObject , typename TRecord >
unsigned long long DummyCondObjPrinter< TObject, TRecord >::cacheID
private
template<typename TObject , typename TRecord >
edm::ParameterSet DummyCondObjPrinter< TObject, TRecord >::iConfig_
private

Definition at line 29 of file DummyCondObjPrinter.h.