CMS 3D CMS Logo

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

Public Member Functions

void analyze (const edm::Event &, const edm::EventSetup &) override
 
 L1RCTChannelMaskTester (const edm::ParameterSet &)
 
 ~L1RCTChannelMaskTester () 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)
 

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

Definition at line 42 of file L1RCTChannelMaskTester.cc.

Constructor & Destructor Documentation

L1RCTChannelMaskTester::L1RCTChannelMaskTester ( const edm::ParameterSet )
inlineexplicit

Definition at line 44 of file L1RCTChannelMaskTester.cc.

44  {
45  }
L1RCTChannelMaskTester::~L1RCTChannelMaskTester ( )
inlineoverride

Definition at line 46 of file L1RCTChannelMaskTester.cc.

References analyze().

46  {
47  }

Member Function Documentation

void L1RCTChannelMaskTester::analyze ( const edm::Event iEvent,
const edm::EventSetup evSetup 
)
override

Definition at line 52 of file L1RCTChannelMaskTester.cc.

References gather_cfg::cout, DEFINE_FWK_MODULE, edm::EventSetup::find(), edm::eventsetup::heterocontainer::HCTypeTag::findType(), edm::EventSetup::get(), L1RCTChannelMask::print(), and L1RCTNoisyChannelMask::print().

Referenced by ~L1RCTChannelMaskTester().

53  {
54 
55  //
57  evSetup.get<L1RCTChannelMaskRcd>().get(rctChanMask);
58 
59  rctChanMask->print(std::cout);
60 
61  //
64  "L1RCTNoisyChannelMaskRcd"));
65 
66  if (evSetup.find(recordKey) == nullptr) {
67  //record not found
68  std::cout << "\nRecord \"" << "L1RCTNoisyChannelMaskRcd"
69  << "\" does not exist.\n" << std::endl;
70  } else {
71 
72  edm::ESHandle<L1RCTNoisyChannelMask> rctNoisyChanMask;
73  evSetup.get<L1RCTNoisyChannelMaskRcd>().get(rctNoisyChanMask);
74 
75  rctNoisyChanMask->print(std::cout);
76 
77  }
78 
79 }
static HCTypeTag findType(char const *iTypeName)
find a type based on the types name, if not found will return default HCTypeTag
void print(std::ostream &s) const
void print(std::ostream &s) const
T get() const
Definition: EventSetup.h:63
boost::optional< eventsetup::EventSetupRecordGeneric > find(const eventsetup::EventSetupRecordKey &) const
Definition: EventSetup.cc:88