CMS 3D CMS Logo

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

#include <CTPPSPixelRawToDigi.h>

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

Public Member Functions

 CTPPSPixelRawToDigi (const edm::ParameterSet &)
 
void produce (edm::Event &, const edm::EventSetup &) override
 get data, convert to digis attach againe to Event More...
 
 ~CTPPSPixelRawToDigi () override
 
- Public Member Functions inherited from edm::stream::EDProducer<>
 EDProducer ()=default
 
bool hasAbilityToProduceInBeginLumis () const final
 
bool hasAbilityToProduceInBeginRuns () const final
 
bool hasAbilityToProduceInEndLumis () const final
 
bool hasAbilityToProduceInEndRuns () const final
 

Static Public Member Functions

static void fillDescriptions (edm::ConfigurationDescriptions &descriptions)
 

Private Attributes

edm::ParameterSet config_
 
std::set< unsigned int > fedIds_
 
edm::EDGetTokenT< FEDRawDataCollectionFEDRawDataCollection_
 
bool includeErrors_
 
edm::InputTag label_
 
std::string mappingLabel_
 

Additional Inherited Members

- Public Types inherited from edm::stream::EDProducer<>
typedef CacheContexts< T... > CacheTypes
 
typedef CacheTypes::GlobalCache GlobalCache
 
typedef AbilityChecker< T... > HasAbility
 
typedef CacheTypes::LuminosityBlockCache LuminosityBlockCache
 
typedef LuminosityBlockContextT< LuminosityBlockCache, RunCache, GlobalCacheLuminosityBlockContext
 
typedef CacheTypes::LuminosityBlockSummaryCache LuminosityBlockSummaryCache
 
typedef CacheTypes::RunCache RunCache
 
typedef RunContextT< RunCache, GlobalCacheRunContext
 
typedef CacheTypes::RunSummaryCache RunSummaryCache
 

Detailed Description

Definition at line 21 of file CTPPSPixelRawToDigi.h.

Constructor & Destructor Documentation

CTPPSPixelRawToDigi::CTPPSPixelRawToDigi ( const edm::ParameterSet conf)
explicit

Definition at line 24 of file CTPPSPixelRawToDigi.cc.

References config_, FEDRawDataCollection_, edm::ParameterSet::getParameter(), includeErrors_, mappingLabel_, and AlCaHLTBitMon_QueryRunRegistry::string.

25  : config_(conf)
26 
27 {
28  FEDRawDataCollection_ = consumes<FEDRawDataCollection>(config_.getParameter<edm::InputTag>("inputLabel"));
29 
30  produces<edm::DetSetVector<CTPPSPixelDigi>>();
31 
32  includeErrors_ = config_.getParameter<bool>("includeErrors");
33  mappingLabel_ = config_.getParameter<std::string>("mappingLabel");
34 
35  if (includeErrors_) {
36  produces<edm::DetSetVector<CTPPSPixelDataError>>();
37  }
38 }
T getParameter(std::string const &) const
edm::ParameterSet config_
edm::EDGetTokenT< FEDRawDataCollection > FEDRawDataCollection_
CTPPSPixelRawToDigi::~CTPPSPixelRawToDigi ( )
override

Definition at line 40 of file CTPPSPixelRawToDigi.cc.

40  {
41  edm::LogInfo("CTPPSPixelRawToDigi") << " CTPPSPixelRawToDigi destructor!";
42 }

Member Function Documentation

void CTPPSPixelRawToDigi::fillDescriptions ( edm::ConfigurationDescriptions descriptions)
static

Definition at line 44 of file CTPPSPixelRawToDigi.cc.

References edm::ConfigurationDescriptions::add(), edm::ParameterSetDescription::add(), HLT_2018_cff::InputTag, and AlCaHLTBitMon_QueryRunRegistry::string.

44  {
46  desc.add<bool>("includeErrors", true);
47  desc.add<edm::InputTag>("inputLabel", edm::InputTag("rawDataCollector"));
48  desc.add<std::string>("mappingLabel", "RPix");
49  descriptions.add("ctppsPixelDigis", desc);
50 }
ParameterDescriptionBase * add(U const &iLabel, T const &value)
void add(std::string const &label, ParameterSetDescription const &psetDescription)
void CTPPSPixelRawToDigi::produce ( edm::Event ev,
const edm::EventSetup es 
)
override

get data, convert to digis attach againe to Event

create product (digis & errors)

get event data for this fed

errors given dummy detId must be sorted by Fed

send digis and errors back to framework

Definition at line 52 of file CTPPSPixelRawToDigi.cc.

References universalConfigTemplate::collection, edm::DetSet< T >::data, TauDecayModes::dec, DEFINE_FWK_MODULE, RPixErrorChecker::dummyDetId, MessageLogger_cfi::errors, FEDRawDataCollection::FEDData(), l1tstage2_dqm_sourceclient-live_cfg::fedId, CTPPSPixelDAQMapping::fedIds(), fedIds_, l1t_dqm_sourceclient-live_cfg::fedRawData, FEDRawDataCollection_, edm::EventSetup::get(), edm::Event::getByToken(), includeErrors_, CTPPSPixelDataFormatter::interpretRawData(), LogDebug, taus_updatedMVAIds_cff::mapping, FEDNumbering::MAXCTPPSPixelsFEDID, FEDNumbering::MINCTPPSPixelsFEDID, eostools::move(), edm::Event::put(), CTPPSPixelDAQMapping::ROCMapping, CTPPSPixelDataFormatter::setErrorStatus(), and FEDRawData::size().

Referenced by JSONExport.JsonExport::export(), HTMLExport.HTMLExport::export(), and HTMLExport.HTMLExportStatic::export().

52  {
54  ev.getByToken(FEDRawDataCollection_, buffers);
55 
57 
58  bool data_exist = false;
60  const FEDRawData& tempRawData = buffers->FEDData(fed);
61  if (tempRawData.size() != 0) {
62  data_exist = true;
63  break;
64  }
65  }
67  auto collection = std::make_unique<edm::DetSetVector<CTPPSPixelDigi>>();
68 
69  auto errorcollection = std::make_unique<edm::DetSetVector<CTPPSPixelDataError>>();
70 
71  if (data_exist) {
72  es.get<CTPPSPixelDAQMappingRcd>().get(mapping);
73 
74  fedIds_ = mapping->fedIds();
75 
76  CTPPSPixelDataFormatter formatter(mapping->ROCMapping);
77  formatter.setErrorStatus(includeErrors_);
78 
79  bool errorsInEvent = false;
81 
82  for (auto aFed = fedIds_.begin(); aFed != fedIds_.end(); ++aFed) {
83  int fedId = *aFed;
84 
85  edm::LogInfo("CTPPSPixelRawToDigi") << " PRODUCE DIGI FOR FED: " << dec << fedId << endl;
86 
89  const FEDRawData& fedRawData = buffers->FEDData(fedId);
90 
91  formatter.interpretRawData(errorsInEvent, fedId, fedRawData, *collection, errors);
92 
93  if (includeErrors_) {
94  for (auto const& is : errors) {
95  uint32_t errordetid = is.first;
97  if (errordetid == RPixErrorChecker::dummyDetId) {
98  nodeterrors.insert(nodeterrors.end(), errors[errordetid].begin(), errors[errordetid].end());
99  } else {
100  edm::DetSet<CTPPSPixelDataError>& errorDetSet = errorcollection->find_or_insert(errordetid);
101  errorDetSet.data.insert(errorDetSet.data.end(), is.second.begin(), is.second.end());
102  }
103  }
104  }
105  }
106 
107  if (includeErrors_) {
108  errorcollection->find_or_insert(RPixErrorChecker::dummyDetId).data = nodeterrors;
109  }
110  if (errorsInEvent)
111  LogDebug("CTPPSPixelRawToDigi") << "Error words were stored in this event";
112  }
114  ev.put(std::move(collection));
115 
116  if (includeErrors_) {
117  ev.put(std::move(errorcollection));
118  }
119 }
#define LogDebug(id)
OrphanHandle< PROD > put(std::unique_ptr< PROD > product)
Put a new product.
Definition: Event.h:131
std::set< unsigned int > fedIds() const
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:525
std::map< uint32_t, DetErrors > Errors
size_t size() const
Lenght of the data buffer in bytes.
Definition: FEDRawData.h:45
static constexpr Word32 dummyDetId
std::set< unsigned int > fedIds_
const FEDRawData & FEDData(int fedid) const
retrieve data for fed
std::vector< CTPPSPixelDataError > DetErrors
std::map< CTPPSPixelFramePosition, CTPPSPixelROCInfo > ROCMapping
collection_type data
Definition: DetSet.h:81
T get() const
Definition: EventSetup.h:73
edm::EDGetTokenT< FEDRawDataCollection > FEDRawDataCollection_
def move(src, dest)
Definition: eostools.py:511

Member Data Documentation

edm::ParameterSet CTPPSPixelRawToDigi::config_
private

Definition at line 33 of file CTPPSPixelRawToDigi.h.

Referenced by CTPPSPixelRawToDigi().

std::set<unsigned int> CTPPSPixelRawToDigi::fedIds_
private

Definition at line 37 of file CTPPSPixelRawToDigi.h.

Referenced by produce().

edm::EDGetTokenT<FEDRawDataCollection> CTPPSPixelRawToDigi::FEDRawDataCollection_
private

Definition at line 35 of file CTPPSPixelRawToDigi.h.

Referenced by CTPPSPixelRawToDigi(), and produce().

bool CTPPSPixelRawToDigi::includeErrors_
private

Definition at line 43 of file CTPPSPixelRawToDigi.h.

Referenced by CTPPSPixelRawToDigi(), and produce().

edm::InputTag CTPPSPixelRawToDigi::label_
private
std::string CTPPSPixelRawToDigi::mappingLabel_
private

Definition at line 41 of file CTPPSPixelRawToDigi.h.

Referenced by CTPPSPixelRawToDigi().