CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Public Member Functions
PVSSIDReader Class Reference
Inheritance diagram for PVSSIDReader:
edm::EDAnalyzer

Public Member Functions

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

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 15 of file PVSSIDReader.cc.

Constructor & Destructor Documentation

PVSSIDReader::PVSSIDReader ( const edm::ParameterSet iConfig)

Definition at line 23 of file PVSSIDReader.cc.

23 {}
PVSSIDReader::~PVSSIDReader ( )

Definition at line 25 of file PVSSIDReader.cc.

25 {}

Member Function Documentation

void PVSSIDReader::analyze ( const edm::Event evt,
const edm::EventSetup evtSetup 
)
virtual

Implements edm::EDAnalyzer.

Definition at line 27 of file PVSSIDReader.cc.

References gather_cfg::cout, edm::EventSetup::get(), RPCObPVSSmap::ObIDMap_rpc, and edm::ESHandle< class >::product().

28 {
29  edm::ESHandle<RPCObPVSSmap> pvssmapRcd;
30  evtSetup.get<RPCObPVSSmapRcd>().get(pvssmapRcd);
31  edm::LogInfo("PVSSIDReader") << "[PVSSIDReader::analyze] End Reading Pvssmap" << std::endl;
32 
33 
34  const RPCObPVSSmap* pvssmap = pvssmapRcd.product();
35  std::vector<RPCObPVSSmap::Item> mypvssmap = pvssmap->ObIDMap_rpc;
36  std::vector<RPCObPVSSmap::Item>::iterator ipvssmap;
37 
38  std::cout << "************************************" << std::endl;
39  for(ipvssmap = mypvssmap.begin(); ipvssmap < mypvssmap.end(); ++ipvssmap){
40  std::cout<<"dpid = " << ipvssmap->dpid << " region = " << ipvssmap->region
41  << " ring = " << ipvssmap->ring << " sector = " << ipvssmap->sector
42  << " station = " << ipvssmap->station << " layer = " << ipvssmap->layer
43  << " subsector = " << ipvssmap->subsector << " suptype = " << ipvssmap->suptype << std::endl;
44  }
45 
46 }
std::vector< Item > ObIDMap_rpc
Definition: RPCObPVSSmap.h:30
const T & get() const
Definition: EventSetup.h:55
T const * product() const
Definition: ESHandle.h:62
tuple cout
Definition: gather_cfg.py:121