CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
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)
 
 DummyCondObjPrinter (const edm::ParameterSet &iConfig)
 
 ~DummyCondObjPrinter ()
 
- Public Member Functions inherited from edm::EDAnalyzer
void callWhenNewProductsRegistered (std::function< void(BranchDescription const &)> const &func)
 
 EDAnalyzer ()
 
ModuleDescription const & moduleDescription () const
 
std::string workerType () const
 
virtual ~EDAnalyzer ()
 
- Public Member Functions inherited from edm::EDConsumerBase
std::vector< ConsumesInfoconsumesInfo () const
 
 EDConsumerBase ()
 
ProductHolderIndexAndSkipBit indexFrom (EDGetToken, BranchType, TypeID const &) const
 
void itemsMayGet (BranchType, std::vector< ProductHolderIndexAndSkipBit > &) const
 
void itemsToGet (BranchType, std::vector< ProductHolderIndexAndSkipBit > &) const
 
std::vector
< ProductHolderIndexAndSkipBit >
const & 
itemsToGetFromEvent () const
 
void labelsForToken (EDGetToken iToken, Labels &oLabels) const
 
void modulesDependentUpon (std::string const &iProcessName, std::string const &iModuleLabel, bool iPrint, std::vector< char const * > &oModuleLabels) const
 
void modulesWhoseProductsAreConsumed (std::vector< ModuleDescription const * > &modules, ProductRegistry const &preg, std::map< std::string, ModuleDescription const * > const &labelsToDesc, std::string const &processName) const
 
bool registeredToConsume (ProductHolderIndex, bool, BranchType) const
 
bool registeredToConsumeMany (TypeID const &, BranchType) const
 
void updateLookup (BranchType iBranchType, ProductHolderIndexHelper const &)
 
virtual ~EDConsumerBase ()
 

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 &)
 
- 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 16 of file DummyCondObjPrinter.h.

Constructor & Destructor Documentation

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

Definition at line 31 of file DummyCondObjPrinter.h.

References mergeVDriftHistosByStation::name.

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

Definition at line 37 of file DummyCondObjPrinter.h.

37  {
38  edm::LogInfo("DummyCondObjPrinter") << "DummyCondObjPrinter::~DummyCondObjPrinter()" << std::endl;
39 }

Member Function Documentation

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

Implements edm::EDAnalyzer.

Definition at line 42 of file DummyCondObjPrinter.h.

References edm::EventSetup::get().

42  {
43 
44  if( cacheID == es.get<TRecord>().cacheIdentifier())
45  return;
46 
47  cacheID = es.get<TRecord>().cacheIdentifier();
48 
50  es.get<TRecord>().get( esobj );
51  std::stringstream sSummary, sDebug;
52  esobj->printSummary(sSummary);
53  esobj->printDebug(sDebug);
54 
55  // edm::LogInfo("DummyCondObjPrinter") << "\nPrintSummary \n" << sSummary.str() << std::endl;
56  // edm::LogWarning("DummyCondObjPrinter") << "\nPrintDebug \n" << sDebug.str() << std::endl;
57  edm::LogPrint("DummyCondObjContentPrinter") << "\nPrintSummary \n" << sSummary.str() << std::endl;
58  edm::LogVerbatim("DummyCondObjContentPrinter") << "\nPrintDebug \n" << sDebug.str() << std::endl;
59 }
const T & get() const
Definition: EventSetup.h:56
unsigned long long cacheID

Member Data Documentation

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

Definition at line 27 of file DummyCondObjPrinter.h.

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

Definition at line 26 of file DummyCondObjPrinter.h.