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::RunInfoESAnalyzer Class Reference
Inheritance diagram for edmtest::RunInfoESAnalyzer:
edm::EDAnalyzer edm::EDConsumerBase

Public Member Functions

virtual void analyze (const edm::Event &e, const edm::EventSetup &c) override
 
 RunInfoESAnalyzer (edm::ParameterSet const &p)
 
 RunInfoESAnalyzer (int i)
 
virtual ~RunInfoESAnalyzer ()
 
- 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 24 of file RunInfoESAnalyzer.cc.

Constructor & Destructor Documentation

edmtest::RunInfoESAnalyzer::RunInfoESAnalyzer ( edm::ParameterSet const &  p)
inlineexplicit

Definition at line 27 of file RunInfoESAnalyzer.cc.

References gather_cfg::cout.

28  {
29  std::cout<<"RunInfoESAnalyzer"<<std::endl;
30  }
tuple cout
Definition: gather_cfg.py:121
edmtest::RunInfoESAnalyzer::RunInfoESAnalyzer ( int  i)
inlineexplicit

Definition at line 31 of file RunInfoESAnalyzer.cc.

References gather_cfg::cout.

32  { std::cout<<"RunInfoESAnalyzer "<<i<<std::endl; }
int i
Definition: DBlmapReader.cc:9
tuple cout
Definition: gather_cfg.py:121
virtual edmtest::RunInfoESAnalyzer::~RunInfoESAnalyzer ( )
inlinevirtual

Definition at line 33 of file RunInfoESAnalyzer.cc.

References gather_cfg::cout.

33  {
34  std::cout<<"~RunInfoESAnalyzer "<<std::endl;
35  }
tuple cout
Definition: gather_cfg.py:121

Member Function Documentation

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

Implements edm::EDAnalyzer.

Definition at line 60 of file RunInfoESAnalyzer.cc.

References gather_cfg::cout, edm::EventID::event(), edm::eventsetup::heterocontainer::HCTypeTag::findType(), edm::EventSetup::get(), edm::EventBase::id(), edm::EventID::run(), edmLumisInFiles::summary, and edm::eventsetup::EventSetupRecordKey::type().

60  {
61  using namespace edm::eventsetup;
62  std::cout<<"###RunInfoESAnalyzer::analyze"<<std::endl;
63 
64  // Context is not used.
65  std::cout <<" I AM IN RUN NUMBER "<<e.id().run() <<std::endl;
66  std::cout <<" ---EVENT NUMBER "<<e.id().event() <<std::endl;
68  if( recordKey.type() == edm::eventsetup::EventSetupRecordKey::TypeTag()) {
69  //record not found
70  std::cout <<"Record \"RunInfoRcd"<<"\" does not exist "<<std::endl;
71  }
73  std::cout<<"got eshandle"<<std::endl;
74  context.get<RunInfoRcd>().get(sum);
75  std::cout<<"got context"<<std::endl;
76  const RunInfo* summary=sum.product();
77  std::cout<<"got RunInfo* "<< std::endl;
78 
79 
80  std::cout<< "print result" << std::endl;
81  summary->printAllValues();
82  /* std::vector<std::string> subdet = summary->getSubdtIn();
83  std::cout<<"subdetector in the run "<< std::endl;
84  for (size_t i=0; i<subdet.size(); i++){
85  std::cout<<"--> " << subdet[i] << std::endl;
86  }
87  */
88  }
RunNumber_t run() const
Definition: EventID.h:39
EventNumber_t event() const
Definition: EventID.h:41
heterocontainer::HCTypeTag TypeTag
edm::EventID id() const
Definition: EventBase.h:60
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