CMS 3D CMS Logo

List of all members | Public Member Functions | Private Attributes
SiStripLorentzAngleReader Class Reference

#include <SiStripLorentzAngleReader.h>

Inheritance diagram for SiStripLorentzAngleReader:
edm::EDAnalyzer edm::EDConsumerBase

Public Member Functions

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

Private Attributes

std::string label_
 
uint32_t printdebug_
 

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
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>
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<typename ESProduct , typename ESRecord , Transition Tr = Transition::Event>
auto esConsumes (ESInputTag const &tag)
 
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 21 of file SiStripLorentzAngleReader.h.

Constructor & Destructor Documentation

◆ SiStripLorentzAngleReader()

SiStripLorentzAngleReader::SiStripLorentzAngleReader ( const edm::ParameterSet iConfig)
explicit

Definition at line 12 of file SiStripLorentzAngleReader.cc.

13  : printdebug_(iConfig.getUntrackedParameter<uint32_t>("printDebug", 5)),
14  label_(iConfig.getUntrackedParameter<std::string>("label", "")) {}

◆ ~SiStripLorentzAngleReader()

SiStripLorentzAngleReader::~SiStripLorentzAngleReader ( )
override

Definition at line 15 of file SiStripLorentzAngleReader.cc.

15 {}

Member Function Documentation

◆ analyze()

void SiStripLorentzAngleReader::analyze ( const edm::Event e,
const edm::EventSetup iSetup 
)
overridevirtual

Implements edm::EDAnalyzer.

Definition at line 17 of file SiStripLorentzAngleReader.cc.

17  {
18  edm::ESHandle<SiStripLorentzAngle> SiStripLorentzAngle_;
19  iSetup.get<SiStripLorentzAngleRcd>().get(label_, SiStripLorentzAngle_);
20  edm::LogInfo("SiStripLorentzAngleReader")
21  << "[SiStripLorentzAngleReader::analyze] End Reading SiStripLorentzAngle with label " << label_ << std::endl;
22 
23  std::map<unsigned int, float> detid_la = SiStripLorentzAngle_->getLorentzAngles();
24  std::map<unsigned int, float>::const_iterator it;
25  size_t count = 0;
26  for (it = detid_la.begin(); it != detid_la.end() && count < printdebug_; it++) {
27  edm::LogInfo("SiStripLorentzAngleReader") << "detid " << it->first << " \t"
28  << " Lorentz angle " << it->second;
29  count++;
30  }
31 }

References KineDebug3::count(), edm::EventSetup::get(), get, SiStripLorentzAngle::getLorentzAngles(), label_, and printdebug_.

Member Data Documentation

◆ label_

std::string SiStripLorentzAngleReader::label_
private

◆ printdebug_

uint32_t SiStripLorentzAngleReader::printdebug_
private

Definition at line 29 of file SiStripLorentzAngleReader.h.

Referenced by analyze().

edm::LogInfo
Definition: MessageLogger.h:254
edm::ParameterSet::getUntrackedParameter
T getUntrackedParameter(std::string const &, T const &) const
edm::EventSetup::get
T get() const
Definition: EventSetup.h:73
edm::ESHandle< SiStripLorentzAngle >
SiStripLorentzAngleReader::printdebug_
uint32_t printdebug_
Definition: SiStripLorentzAngleReader.h:29
AlCaHLTBitMon_QueryRunRegistry.string
string
Definition: AlCaHLTBitMon_QueryRunRegistry.py:256
KineDebug3::count
void count()
Definition: KinematicConstrainedVertexUpdatorT.h:21
SiStripLorentzAngleRcd
Definition: SiStripCondDataRecords.h:25
get
#define get
SiStripLorentzAngle::getLorentzAngles
const std::map< unsigned int, float > & getLorentzAngles() const
Definition: SiStripLorentzAngle.h:32
SiStripLorentzAngleReader::label_
std::string label_
Definition: SiStripLorentzAngleReader.h:30