CMS 3D CMS Logo

List of all members | Public Member Functions
edmtest::RunInfoESAnalyzer Class Reference
Inheritance diagram for edmtest::RunInfoESAnalyzer:
edm::EDAnalyzer edm::EDConsumerBase

Public Member Functions

void analyze (const edm::Event &e, const edm::EventSetup &c) override
 
 RunInfoESAnalyzer (edm::ParameterSet const &p)
 
 RunInfoESAnalyzer (int i)
 
 ~RunInfoESAnalyzer () 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
 
std::vector< ESProxyIndex > const & esGetTokenIndicesVector (edm::Transition iTrans) const
 
std::vector< ESRecordIndex > const & esGetTokenRecordIndicesVector (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 wantsInputProcessBlocks ()
 
static bool wantsProcessBlocks ()
 
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 = InEvent>
EDConsumerBaseAdaptor< B > consumes (edm::InputTag tag) noexcept
 
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<Transition Tr = Transition::Event>
constexpr auto esConsumes () noexcept
 
template<typename ESProduct , typename ESRecord , Transition Tr = Transition::Event>
auto esConsumes (ESInputTag const &tag)
 
template<Transition Tr = Transition::Event>
auto esConsumes (ESInputTag tag) noexcept
 
template<Transition Tr = Transition::Event>
ESGetTokenGeneric esConsumes (eventsetup::EventSetupRecordKey const &iRecord, eventsetup::DataKey const &iKey)
 Used with EventSetupRecord::doGet. More...
 
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

Definition at line 19 of file RunInfoESAnalyzer.cc.

Constructor & Destructor Documentation

◆ RunInfoESAnalyzer() [1/2]

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

Definition at line 21 of file RunInfoESAnalyzer.cc.

21 { std::cout << "RunInfoESAnalyzer" << std::endl; }

References gather_cfg::cout.

◆ RunInfoESAnalyzer() [2/2]

edmtest::RunInfoESAnalyzer::RunInfoESAnalyzer ( int  i)
inlineexplicit

Definition at line 22 of file RunInfoESAnalyzer.cc.

22 { std::cout << "RunInfoESAnalyzer " << i << std::endl; }

References gather_cfg::cout, and mps_fire::i.

◆ ~RunInfoESAnalyzer()

edmtest::RunInfoESAnalyzer::~RunInfoESAnalyzer ( )
inlineoverride

Definition at line 23 of file RunInfoESAnalyzer.cc.

23 { std::cout << "~RunInfoESAnalyzer " << std::endl; }

References gather_cfg::cout.

Member Function Documentation

◆ analyze()

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

Implements edm::EDAnalyzer.

Definition at line 47 of file RunInfoESAnalyzer.cc.

47  {
48  using namespace edm::eventsetup;
49  std::cout << "###RunInfoESAnalyzer::analyze" << std::endl;
50 
51  // Context is not used.
52  std::cout << " I AM IN RUN NUMBER " << e.id().run() << std::endl;
53  std::cout << " ---EVENT NUMBER " << e.id().event() << std::endl;
56  if (recordKey.type() == edm::eventsetup::EventSetupRecordKey::TypeTag()) {
57  //record not found
58  std::cout << "Record \"RunInfoRcd"
59  << "\" does not exist " << std::endl;
60  }
62  std::cout << "got eshandle" << std::endl;
63  context.get<RunInfoRcd>().get(sum);
64  std::cout << "got context" << std::endl;
65  const RunInfo* summary = sum.product();
66  std::cout << "got RunInfo* " << std::endl;
67 
68  std::cout << "print result" << std::endl;
69  summary->printAllValues();
70  /* std::vector<std::string> subdet = summary->getSubdtIn();
71  std::cout<<"subdetector in the run "<< std::endl;
72  for (size_t i=0; i<subdet.size(); i++){
73  std::cout<<"--> " << subdet[i] << std::endl;
74  }
75  */
76  }

References gather_cfg::cout, MillePedeFileConverter_cfg::e, edm::eventsetup::heterocontainer::HCTypeTag::findType(), edm::EventSetup::get(), get, edm::ESHandle< T >::product(), edmLumisInFiles::summary, and edm::eventsetup::EventSetupRecordKey::type().

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
mps_fire.i
i
Definition: mps_fire.py:428
gather_cfg.cout
cout
Definition: gather_cfg.py:144
edm::eventsetup::EventSetupRecordKey
Definition: EventSetupRecordKey.h:30
RunInfo
Definition: RunInfo.h:18
edm::ESHandle
Definition: DTSurvey.h:22
edm::eventsetup::EventSetupRecordKey::TypeTag
heterocontainer::HCTypeTag TypeTag
Definition: EventSetupRecordKey.h:32
RunInfoRcd
Definition: RunSummaryRcd.h:26
edmLumisInFiles.summary
summary
Definition: edmLumisInFiles.py:39
get
#define get
edm::eventsetup
Definition: ES_DDDetector.cc:16
MillePedeFileConverter_cfg.e
e
Definition: MillePedeFileConverter_cfg.py:37