CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Public Member Functions
edmtest::DQMSummaryEventSetupAnalyzer Class Reference
Inheritance diagram for edmtest::DQMSummaryEventSetupAnalyzer:
edm::EDAnalyzer edm::EDConsumerBase

Public Member Functions

virtual void analyze (const edm::Event &event, const edm::EventSetup &setup) override
 
 DQMSummaryEventSetupAnalyzer (const edm::ParameterSet &pset)
 
 DQMSummaryEventSetupAnalyzer (int i)
 
virtual ~DQMSummaryEventSetupAnalyzer ()
 
- 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 (const std::string &iProcessName, std::vector< const char * > &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 ()
 

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

Definition at line 13 of file DQMSummaryEventSetupAnalyzer.cc.

Constructor & Destructor Documentation

edmtest::DQMSummaryEventSetupAnalyzer::DQMSummaryEventSetupAnalyzer ( const edm::ParameterSet pset)
explicit

Definition at line 21 of file DQMSummaryEventSetupAnalyzer.cc.

References gather_cfg::cout.

21  {
22  std::cout << "DQMSummaryEventSetupAnalyzer" << std::endl;
23  }
tuple cout
Definition: gather_cfg.py:121
edmtest::DQMSummaryEventSetupAnalyzer::DQMSummaryEventSetupAnalyzer ( int  i)
explicit

Definition at line 25 of file DQMSummaryEventSetupAnalyzer.cc.

References gather_cfg::cout.

25  {
26  std::cout << "DQMSummaryEventSetupAnalyzer" << i << std::endl;
27  }
int i
Definition: DBlmapReader.cc:9
tuple cout
Definition: gather_cfg.py:121
edmtest::DQMSummaryEventSetupAnalyzer::~DQMSummaryEventSetupAnalyzer ( )
virtual

Definition at line 29 of file DQMSummaryEventSetupAnalyzer.cc.

References gather_cfg::cout.

29  {
30  std::cout << "~DQMSummaryEventSetupAnalyzer" << std::endl;
31  }
tuple cout
Definition: gather_cfg.py:121

Member Function Documentation

void edmtest::DQMSummaryEventSetupAnalyzer::analyze ( const edm::Event event,
const edm::EventSetup setup 
)
overridevirtual

Implements edm::EDAnalyzer.

Definition at line 33 of file DQMSummaryEventSetupAnalyzer.cc.

References gather_cfg::cout, Exception, edm::eventsetup::heterocontainer::HCTypeTag::findType(), edm::EventSetup::get(), DQMSummary::printAllValues(), edm::ESHandle< class >::product(), edmLumisInFiles::summary, and edm::eventsetup::EventSetupRecordKey::type().

33  {
34  std::cout << "### DQMSummaryEventSetupAnalyzer::analyze" << std::endl;
35  std::cout << "--- RUN NUMBER: " << event.id().run() << std::endl;
36  std::cout << "--- EVENT NUMBER: " << event.id().event() << std::endl;
38  if(recordKey.type() == edm::eventsetup::EventSetupRecordKey::TypeTag()) {
39  throw cms::Exception ("Record not found") << "Record \"DQMSummaryRcd"
40  << "\" does not exist!" << std::endl;
41  }
43  std::cout << "got EShandle" << std::endl;
44  setup.get<DQMSummaryRcd>().get(sum);
45  std::cout <<"got the Event Setup" << std::endl;
46  const DQMSummary* summary = sum.product();
47  std::cout <<"got DQMSummary* "<< std::endl;
48  std::cout<< "print result" << std::endl;
49  summary->printAllValues();
50  }
void printAllValues() const
Definition: DQMSummary.h:39
const T & get() const
Definition: EventSetup.h:56
T const * product() const
Definition: ESHandle.h:86
heterocontainer::HCTypeTag TypeTag
tuple cout
Definition: gather_cfg.py:121
static HCTypeTag findType(char const *iTypeName)
find a type based on the types name, if not found will return default HCTypeTag
Definition: HCTypeTag.cc:125