CMS 3D CMS Logo

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

#include <CSCDigiToPattern.h>

Inheritance diagram for CSCDigiToPattern:
edm::EDAnalyzer edm::EDConsumerBase

Public Member Functions

void analyze (edm::Event const &e, edm::EventSetup const &iSetup) override
 
 CSCDigiToPattern (edm::ParameterSet const &conf)
 
- 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

edm::EDGetTokenT< CSCCorrelatedLCTDigiCollectiond_token
 

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 16 of file CSCDigiToPattern.h.

Constructor & Destructor Documentation

◆ CSCDigiToPattern()

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

Definition at line 6 of file CSCDigiToPattern.cc.

6  {
7  d_token = consumes<CSCCorrelatedLCTDigiCollection>(conf.getParameter<edm::InputTag>("corrlctDigiTag"));
8 }

References d_token, and edm::ParameterSet::getParameter().

Member Function Documentation

◆ analyze()

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

Implements edm::EDAnalyzer.

Definition at line 10 of file CSCDigiToPattern.cc.

10  {
11  // These declarations create handles to the types of records that you want
12  // to retrieve from event "e".
13  //
15  e.getByToken(d_token, correlatedlcts);
16 
17  for (CSCCorrelatedLCTDigiCollection::DigiRangeIterator j = correlatedlcts->begin(); j != correlatedlcts->end(); j++) {
18  CSCDetId id = (*j).first;
19  std::cout << id << std::endl;
20  std::vector<CSCCorrelatedLCTDigi>::const_iterator digiIt = (*j).second.first;
21  std::vector<CSCCorrelatedLCTDigi>::const_iterator last = (*j).second.second;
22  for (; digiIt != last; ++digiIt) {
23  uint16_t wire = digiIt->getKeyWG(); // 7 bits
24  uint16_t pattern = digiIt->getPattern(); // 4 bits
25  uint16_t quality = digiIt->getQuality(); // 4 bits
26  uint16_t valid = digiIt->isValid(); // 1 bit
27  uint16_t strip = digiIt->getStrip(); // 8 bits
28  uint16_t bend = digiIt->getBend(); // 1 bit
29  uint16_t syncErr = digiIt->getSyncErr(); // 1 bit
30  uint16_t bx = digiIt->getBX(); // 1 bit
31  uint16_t bx0 = digiIt->getBX0(); // 1 bit
32  uint16_t cscId = digiIt->getCSCID(); // 4 bits
33  // __
34  // 32 bits in total
35  long unsigned int mpc = ((cscId & 0xF) << 28) | ((bx0 & 0x1) << 27) | ((bx & 0x1) << 26) |
36  ((syncErr & 0x1) << 25) | ((bend & 0x1) << 24) | ((strip & 0xFF) << 16) |
37  ((valid & 0x1) << 15) | ((quality & 0xF) << 11) | ((pattern & 0xF) << 7) | (wire & 0x7F);
38  std::cout << "MPC" << digiIt->getTrknmb() << " " << std::hex << mpc << std::dec << std::endl;
39  }
40  }
41 }

References trklet::bend(), l1GtPatternGenerator_cfi::bx, gather_cfg::cout, d_token, TauDecayModes::dec, MillePedeFileConverter_cfg::e, dqmiolumiharvest::j, dqmdumpme::last, topSingleLeptonDQM_PU_cfi::pattern, qcdUeDQM_cfi::quality, digitizers_cfi::strip, and validateGeometry_cfg::valid.

Member Data Documentation

◆ d_token

edm::EDGetTokenT<CSCCorrelatedLCTDigiCollection> CSCDigiToPattern::d_token
private

Definition at line 24 of file CSCDigiToPattern.h.

Referenced by analyze(), and CSCDigiToPattern().

digitizers_cfi.strip
strip
Definition: digitizers_cfi.py:19
gather_cfg.cout
cout
Definition: gather_cfg.py:144
l1GtPatternGenerator_cfi.bx
bx
Definition: l1GtPatternGenerator_cfi.py:18
edm::Handle< CSCCorrelatedLCTDigiCollection >
validateGeometry_cfg.valid
valid
Definition: validateGeometry_cfg.py:21
CSCDigiToPattern::d_token
edm::EDGetTokenT< CSCCorrelatedLCTDigiCollection > d_token
Definition: CSCDigiToPattern.h:24
dqmdumpme.last
last
Definition: dqmdumpme.py:56
CSCDetId
Definition: CSCDetId.h:26
topSingleLeptonDQM_PU_cfi.pattern
pattern
Definition: topSingleLeptonDQM_PU_cfi.py:39
qcdUeDQM_cfi.quality
quality
Definition: qcdUeDQM_cfi.py:31
trklet::bend
double bend(double r, double rinv, double stripPitch)
Definition: Util.h:160
dqmiolumiharvest.j
j
Definition: dqmiolumiharvest.py:66
DigiContainerIterator
Definition: MuonDigiCollection.h:30
TauDecayModes.dec
dec
Definition: TauDecayModes.py:143
edm::InputTag
Definition: InputTag.h:15
MillePedeFileConverter_cfg.e
e
Definition: MillePedeFileConverter_cfg.py:37