CMS 3D CMS Logo

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

#include <HcalHistogramRawToDigi.h>

Inheritance diagram for HcalHistogramRawToDigi:
edm::stream::EDProducer<>

Public Member Functions

 HcalHistogramRawToDigi (const edm::ParameterSet &ps)
 
void produce (edm::Event &e, const edm::EventSetup &c) override
 
 ~HcalHistogramRawToDigi () override
 
- Public Member Functions inherited from edm::stream::EDProducer<>
 EDProducer ()=default
 
 EDProducer (const EDProducer &)=delete
 
bool hasAbilityToProduceInBeginLumis () const final
 
bool hasAbilityToProduceInBeginProcessBlocks () const final
 
bool hasAbilityToProduceInBeginRuns () const final
 
bool hasAbilityToProduceInEndLumis () const final
 
bool hasAbilityToProduceInEndProcessBlocks () const final
 
bool hasAbilityToProduceInEndRuns () const final
 
const EDProduceroperator= (const EDProducer &)=delete
 

Private Attributes

std::vector< int > fedUnpackList_
 
int firstFED_
 
edm::EDGetTokenT< FEDRawDataCollectiontok_data_
 
edm::ESGetToken< HcalDbService, HcalDbRecordtok_dbService_
 
HcalUnpacker unpacker_
 

Additional Inherited Members

- Public Types inherited from edm::stream::EDProducer<>
using CacheTypes = CacheContexts< T... >
 
using GlobalCache = typename CacheTypes::GlobalCache
 
using HasAbility = AbilityChecker< T... >
 
using InputProcessBlockCache = typename CacheTypes::InputProcessBlockCache
 
using LuminosityBlockCache = typename CacheTypes::LuminosityBlockCache
 
using LuminosityBlockContext = LuminosityBlockContextT< LuminosityBlockCache, RunCache, GlobalCache >
 
using LuminosityBlockSummaryCache = typename CacheTypes::LuminosityBlockSummaryCache
 
using RunCache = typename CacheTypes::RunCache
 
using RunContext = RunContextT< RunCache, GlobalCache >
 
using RunSummaryCache = typename CacheTypes::RunSummaryCache
 

Detailed Description

HcalHistogramRawToDigi is the EDProducer subclass which runs the Hcal Unpack algorithm for calibration-mode histograms.

Author
Jeremiah Mans
Version
1st Version June 10, 2005

Definition at line 30 of file HcalHistogramRawToDigi.h.

Constructor & Destructor Documentation

◆ HcalHistogramRawToDigi()

HcalHistogramRawToDigi::HcalHistogramRawToDigi ( const edm::ParameterSet ps)
explicit

Definition at line 8 of file HcalHistogramRawToDigi.cc.

References fedUnpackList_, edm::ParameterSet::getParameter(), mps_fire::i, contentValuesCheck::ss, tok_data_, and tok_dbService_.

9  : unpacker_(conf.getUntrackedParameter<int>("HcalFirstFED", FEDNumbering::MINHCALFEDID)),
10  fedUnpackList_(conf.getUntrackedParameter<std::vector<int> >("FEDs")),
11  firstFED_(conf.getUntrackedParameter<int>("HcalFirstFED", FEDNumbering::MINHCALFEDID)) {
12  std::ostringstream ss;
13  for (unsigned int i = 0; i < fedUnpackList_.size(); i++)
14  ss << fedUnpackList_[i] << " ";
15  edm::LogInfo("HCAL") << "HcalHistogramRawToDigi will unpack FEDs ( " << ss.str() << ")";
16 
17  tok_data_ = consumes<FEDRawDataCollection>(conf.getParameter<edm::InputTag>("InputLabel"));
18  tok_dbService_ = esConsumes<HcalDbService, HcalDbRecord>();
19 
20  // products produced...
21  produces<HcalHistogramDigiCollection>();
22 }
edm::EDGetTokenT< FEDRawDataCollection > tok_data_
std::vector< int > fedUnpackList_
Log< level::Info, false > LogInfo
edm::ESGetToken< HcalDbService, HcalDbRecord > tok_dbService_

◆ ~HcalHistogramRawToDigi()

HcalHistogramRawToDigi::~HcalHistogramRawToDigi ( )
override

Definition at line 25 of file HcalHistogramRawToDigi.cc.

25 {}

Member Function Documentation

◆ produce()

void HcalHistogramRawToDigi::produce ( edm::Event e,
const edm::EventSetup c 
)
override

Definition at line 28 of file HcalHistogramRawToDigi.cc.

References MillePedeFileConverter_cfg::e, FEDRawDataCollection::FEDData(), fedUnpackList_, edm::EventSetup::getHandle(), HcalDbService::getHcalMapping(), mps_fire::i, eostools::move(), dumpMFGeometry_cfg::prod, tok_data_, tok_dbService_, HcalUnpacker::unpack(), and unpacker_.

28  {
29  // Step A: Get Inputs
31  e.getByToken(tok_data_, rawraw);
32  // get the mapping
33  edm::ESHandle<HcalDbService> pSetup = es.getHandle(tok_dbService_);
34  const HcalElectronicsMap* readoutMap = pSetup->getHcalMapping();
35 
36  // Step B: Create empty output
37  auto prod = std::make_unique<HcalHistogramDigiCollection>();
38  std::vector<HcalHistogramDigi> digis;
39 
40  // Step C: unpack all requested FEDs
41  for (std::vector<int>::const_iterator i = fedUnpackList_.begin(); i != fedUnpackList_.end(); i++) {
42  const FEDRawData& fed = rawraw->FEDData(*i);
43 
44  unpacker_.unpack(fed, *readoutMap, digis);
45  }
46 
47  // Step B2: encapsulate vectors in actual collections
48  prod->swap_contents(digis);
49 
50  // Step D: Put outputs into event
51  prod->sort();
52  e.put(std::move(prod));
53 }
edm::EDGetTokenT< FEDRawDataCollection > tok_data_
std::vector< int > fedUnpackList_
const HcalElectronicsMap * getHcalMapping() const
const FEDRawData & FEDData(int fedid) const
retrieve data for fed
void unpack(const FEDRawData &raw, const HcalElectronicsMap &emap, std::vector< HcalHistogramDigi > &histoDigis)
edm::ESGetToken< HcalDbService, HcalDbRecord > tok_dbService_
def move(src, dest)
Definition: eostools.py:511

Member Data Documentation

◆ fedUnpackList_

std::vector<int> HcalHistogramRawToDigi::fedUnpackList_
private

Definition at line 40 of file HcalHistogramRawToDigi.h.

Referenced by HcalHistogramRawToDigi(), and produce().

◆ firstFED_

int HcalHistogramRawToDigi::firstFED_
private

Definition at line 41 of file HcalHistogramRawToDigi.h.

◆ tok_data_

edm::EDGetTokenT<FEDRawDataCollection> HcalHistogramRawToDigi::tok_data_
private

Definition at line 37 of file HcalHistogramRawToDigi.h.

Referenced by HcalHistogramRawToDigi(), and produce().

◆ tok_dbService_

edm::ESGetToken<HcalDbService, HcalDbRecord> HcalHistogramRawToDigi::tok_dbService_
private

Definition at line 38 of file HcalHistogramRawToDigi.h.

Referenced by HcalHistogramRawToDigi(), and produce().

◆ unpacker_

HcalUnpacker HcalHistogramRawToDigi::unpacker_
private

Definition at line 39 of file HcalHistogramRawToDigi.h.

Referenced by produce().