CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Public Member Functions | Private Attributes
SiStripLorentzAngleReader Class Reference

#include <SiStripLorentzAngleReader.h>

Inheritance diagram for SiStripLorentzAngleReader:
edm::EDAnalyzer

Public Member Functions

void analyze (const edm::Event &, const edm::EventSetup &)
 
 SiStripLorentzAngleReader (const edm::ParameterSet &)
 
 ~SiStripLorentzAngleReader ()
 
- Public Member Functions inherited from edm::EDAnalyzer
 EDAnalyzer ()
 
std::string workerType () const
 
virtual ~EDAnalyzer ()
 

Private Attributes

std::string label_
 
uint32_t printdebug_
 

Additional Inherited Members

- Public Types inherited from edm::EDAnalyzer
typedef EDAnalyzer ModuleType
 
typedef WorkerT< EDAnalyzerWorkerType
 
- 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::EDAnalyzer
CurrentProcessingContext const * currentContext () const
 

Detailed Description

Definition at line 22 of file SiStripLorentzAngleReader.h.

Constructor & Destructor Documentation

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

Definition at line 13 of file SiStripLorentzAngleReader.cc.

13  :
14  printdebug_(iConfig.getUntrackedParameter<uint32_t>("printDebug",5)),
15  label_(iConfig.getUntrackedParameter<std::string>("label","")){}
T getUntrackedParameter(std::string const &, T const &) const
SiStripLorentzAngleReader::~SiStripLorentzAngleReader ( )

Definition at line 16 of file SiStripLorentzAngleReader.cc.

16 {}

Member Function Documentation

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

Implements edm::EDAnalyzer.

Definition at line 18 of file SiStripLorentzAngleReader.cc.

References prof2calltree::count, edm::EventSetup::get(), label_, and printdebug_.

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

Member Data Documentation

std::string SiStripLorentzAngleReader::label_
private
uint32_t SiStripLorentzAngleReader::printdebug_
private

Definition at line 31 of file SiStripLorentzAngleReader.h.

Referenced by analyze().