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
CSCDigiDump Class Reference

#include <CSCDigiDump.h>

Inheritance diagram for CSCDigiDump:
edm::EDAnalyzer edm::EDConsumerBase

Public Member Functions

virtual void analyze (edm::Event const &e, edm::EventSetup const &c)
 
 CSCDigiDump (edm::ParameterSet const &conf)
 
- Public Member Functions inherited from edm::EDAnalyzer
void callWhenNewProductsRegistered (std::function< void(BranchDescription const &)> const &func)
 
 EDAnalyzer ()
 
ModuleDescription const & moduleDescription () const
 
std::string workerType () const
 
virtual ~EDAnalyzer ()
 
- Public Member Functions inherited from edm::EDConsumerBase
std::vector< ConsumesInfoconsumesInfo () const
 
 EDConsumerBase ()
 
ProductHolderIndexAndSkipBit indexFrom (EDGetToken, BranchType, TypeID const &) const
 
void itemsMayGet (BranchType, std::vector< ProductHolderIndexAndSkipBit > &) const
 
void itemsToGet (BranchType, std::vector< ProductHolderIndexAndSkipBit > &) const
 
std::vector
< ProductHolderIndexAndSkipBit >
const & 
itemsToGetFromEvent () const
 
void labelsForToken (EDGetToken iToken, Labels &oLabels) const
 
void modulesDependentUpon (const std::string &iProcessName, std::vector< const char * > &oModuleLabels) const
 
void modulesWhoseProductsAreConsumed (std::vector< ModuleDescription const * > &modules, ProductRegistry const &preg, std::map< std::string, ModuleDescription const * > const &labelsToDesc, std::string const &processName) const
 
bool registeredToConsume (ProductHolderIndex, bool, BranchType) const
 
bool registeredToConsumeMany (TypeID const &, BranchType) const
 
void updateLookup (BranchType iBranchType, ProductHolderIndexHelper const &)
 
virtual ~EDConsumerBase ()
 

Private Attributes

edm::EDGetTokenT
< CSCComparatorDigiCollection
cd_token
 
edm::EDGetTokenT
< CSCStripDigiCollection
sd_token
 
edm::EDGetTokenT
< CSCWireDigiCollection
wd_token
 

Additional Inherited Members

- Public Types inherited from edm::EDAnalyzer
typedef EDAnalyzer ModuleType
 
- 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::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 11 of file CSCDigiDump.h.

Constructor & Destructor Documentation

CSCDigiDump::CSCDigiDump ( edm::ParameterSet const &  conf)
explicit

Definition at line 8 of file CSCDigiDump.cc.

References cd_token, edm::ParameterSet::getParameter(), sd_token, and wd_token.

9 {
10  wd_token = consumes<CSCWireDigiCollection>(conf.getParameter<edm::InputTag>("wireDigiTag"));
11  sd_token = consumes<CSCStripDigiCollection>(conf.getParameter<edm::InputTag>("stripDigiTag"));
12  cd_token = consumes<CSCComparatorDigiCollection>(conf.getParameter<edm::InputTag>("comparatorDigiTag"));
13 }
edm::EDGetTokenT< CSCWireDigiCollection > wd_token
Definition: CSCDigiDump.h:17
edm::EDGetTokenT< CSCStripDigiCollection > sd_token
Definition: CSCDigiDump.h:18
edm::EDGetTokenT< CSCComparatorDigiCollection > cd_token
Definition: CSCDigiDump.h:19
tuple conf
Definition: dbtoconf.py:185

Member Function Documentation

void CSCDigiDump::analyze ( edm::Event const &  e,
edm::EventSetup const &  c 
)
virtual

Implements edm::EDAnalyzer.

Definition at line 16 of file CSCDigiDump.cc.

References cd_token, gather_cfg::cout, CSCDetId, edm::Event::getByToken(), edm::EventBase::id(), j, prof2calltree::last, sd_token, RecoTauPiZeroBuilderPlugins_cfi::strips, and wd_token.

16  {
20 
21  std::cout << "Event " << e.id() << std::endl;
22 
23  e.getByToken(wd_token, wires);
24 
25  for (CSCWireDigiCollection::DigiRangeIterator j=wires->begin(); j!=wires->end(); j++) {
26  std::cout << "Wire digis from "<< CSCDetId((*j).first) << std::endl;
27  std::vector<CSCWireDigi>::const_iterator digiItr = (*j).second.first;
28  std::vector<CSCWireDigi>::const_iterator last = (*j).second.second;
29  for( ; digiItr != last; ++digiItr) {
30  digiItr->print();
31  }
32  }
33 
34  e.getByToken(sd_token, strips);
35 
36  for (CSCStripDigiCollection::DigiRangeIterator j=strips->begin(); j!=strips->end(); j++) {
37  std::cout << "Strip digis from "<< CSCDetId((*j).first) << std::endl;
38  std::vector<CSCStripDigi>::const_iterator digiItr = (*j).second.first;
39  std::vector<CSCStripDigi>::const_iterator last = (*j).second.second;
40  for( ; digiItr != last; ++digiItr) {
41  digiItr->print();
42  }
43  }
44 
45  e.getByToken(cd_token, comparators);
46 
47  for (CSCComparatorDigiCollection::DigiRangeIterator j=comparators->begin();
48  j!=comparators->end(); j++)
49  {
50  std::cout << "Comparator digis from "<< CSCDetId((*j).first) << std::endl;
51  std::vector<CSCComparatorDigi>::const_iterator digiItr = (*j).second.first;
52  std::vector<CSCComparatorDigi>::const_iterator last = (*j).second.second;
53  for( ; digiItr != last; ++digiItr) {
54  digiItr->print();
55  }
56  }
57 }
edm::EDGetTokenT< CSCWireDigiCollection > wd_token
Definition: CSCDigiDump.h:17
edm::EDGetTokenT< CSCStripDigiCollection > sd_token
Definition: CSCDigiDump.h:18
edm::EDGetTokenT< CSCComparatorDigiCollection > cd_token
Definition: CSCDigiDump.h:19
int j
Definition: DBlmapReader.cc:9
tuple cout
Definition: gather_cfg.py:121

Member Data Documentation

edm::EDGetTokenT<CSCComparatorDigiCollection> CSCDigiDump::cd_token
private

Definition at line 19 of file CSCDigiDump.h.

Referenced by analyze(), and CSCDigiDump().

edm::EDGetTokenT<CSCStripDigiCollection> CSCDigiDump::sd_token
private

Definition at line 18 of file CSCDigiDump.h.

Referenced by analyze(), and CSCDigiDump().

edm::EDGetTokenT<CSCWireDigiCollection> CSCDigiDump::wd_token
private

Definition at line 17 of file CSCDigiDump.h.

Referenced by analyze(), and CSCDigiDump().