CMS 3D CMS Logo

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

#include <DTUnpackingModule.h>

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

Public Member Functions

 DTUnpackingModule (const edm::ParameterSet &pset)
 Constructor. More...
 
void produce (edm::Event &e, const edm::EventSetup &c) override
 Call the Unpackers and create the digis. More...
 
 ~DTUnpackingModule () override
 Destructor. More...
 
- 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
 

Static Public Member Functions

static void fillDescriptions (edm::ConfigurationDescriptions &descriptions)
 

Private Attributes

std::string dataType
 
bool dqmOnly
 
edm::EDGetTokenT< FEDRawDataCollectioninputLabel
 if not you need the label More...
 
edm::ESGetToken< DTReadOutMapping, DTReadOutMappingRcdmappingToken_
 
int maxFEDid_
 
int minFEDid_
 if not you need to set the range by hand More...
 
bool performDataIntegrityMonitor
 
DTUnpackerunpacker
 
bool useStandardFEDid_
 do you want to use the standard DT FED ID's, i.e. [770-775]? (why the hell 6??) More...
 

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

The unpacking module for DTs.

Author
N. Amapane - S. Argiro' - M. Zanetti

Definition at line 21 of file DTUnpackingModule.h.

Constructor & Destructor Documentation

◆ DTUnpackingModule()

DTUnpackingModule::DTUnpackingModule ( const edm::ParameterSet pset)

Constructor.

Definition at line 34 of file DTUnpackingModule.cc.

References dataType, dqmOnly, Exception, edm::ParameterSet::getParameter(), edm::ParameterSet::getUntrackedParameter(), inputLabel, mappingToken_, maxFEDid_, minFEDid_, performDataIntegrityMonitor, unpacker, and useStandardFEDid_.

34  : unpacker(nullptr), dataType("") {
35  dataType = ps.getParameter<string>("dataType");
36 
37  ParameterSet unpackerParameters = ps.getParameter<ParameterSet>("readOutParameters");
38 
39  if (dataType == "DDU") {
40  unpacker = new DTDDUUnpacker(unpackerParameters);
41  } else if (dataType == "ROS25") {
42  unpacker = new DTROS25Unpacker(unpackerParameters.getParameter<ParameterSet>("rosParameters"));
43  } else if (dataType == "ROS8") {
44  unpacker = new DTROS8Unpacker(unpackerParameters);
45  } else {
46  throw cms::Exception("InvalidParameter") << "DTUnpackingModule: dataType " << dataType << " is unknown";
47  }
48 
49  inputLabel = consumes<FEDRawDataCollection>(ps.getParameter<InputTag>("inputLabel")); // default was: source
50  mappingToken_ = esConsumes<DTReadOutMapping, DTReadOutMappingRcd>();
51  useStandardFEDid_ = ps.getParameter<bool>("useStandardFEDid"); // default was: true
52  minFEDid_ = ps.getUntrackedParameter<int>("minFEDid", 770); // default: 770
53  maxFEDid_ = ps.getUntrackedParameter<int>("maxFEDid", 779); // default 779
54  dqmOnly = ps.getParameter<bool>("dqmOnly"); // default: false
56  unpackerParameters.getUntrackedParameter<bool>("performDataIntegrityMonitor", false); // default: false
57 
58  if (!dqmOnly) {
59  produces<DTDigiCollection>();
60  produces<DTLocalTriggerCollection>();
61  }
63  produces<std::vector<DTDDUData>>();
64  produces<std::vector<std::vector<DTROS25Data>>>();
65  }
66 }
T getParameter(std::string const &) const
Definition: ParameterSet.h:307
edm::EDGetTokenT< FEDRawDataCollection > inputLabel
if not you need the label
int minFEDid_
if not you need to set the range by hand
bool useStandardFEDid_
do you want to use the standard DT FED ID&#39;s, i.e. [770-775]? (why the hell 6??)
edm::ESGetToken< DTReadOutMapping, DTReadOutMappingRcd > mappingToken_
DTUnpacker * unpacker

◆ ~DTUnpackingModule()

DTUnpackingModule::~DTUnpackingModule ( )
override

Destructor.

Definition at line 68 of file DTUnpackingModule.cc.

References unpacker.

68 { delete unpacker; }
DTUnpacker * unpacker

Member Function Documentation

◆ fillDescriptions()

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

Definition at line 70 of file DTUnpackingModule.cc.

References edm::ConfigurationDescriptions::add(), edm::ParameterSetDescription::add(), edm::ParameterSetDescription::addUntracked(), submitPVResolutionJobs::desc, ProducerED_cfi::InputTag, and AlCaHLTBitMon_QueryRunRegistry::string.

70  {
72  desc.add<std::string>("dataType", "DDU");
73  desc.add<edm::InputTag>("inputLabel", edm::InputTag("rawDataCollector"));
74  desc.add<bool>("useStandardFEDid", true);
75  desc.addUntracked<int>("minFEDid", 770);
76  desc.addUntracked<int>("maxFEDid", 779);
77  desc.addOptional<bool>("fedbyType"); // never used, only kept here for back-compatibility
78  {
80  psd0.addUntracked<bool>("debug", false);
81  {
83  psd1.addUntracked<bool>("writeSC", true);
84  psd1.addUntracked<bool>("readingDDU", true);
85  psd1.addUntracked<bool>("performDataIntegrityMonitor", false);
86  psd1.addUntracked<bool>("readDDUIDfromDDU", true);
87  psd1.addUntracked<bool>("debug", false);
88  psd1.addUntracked<bool>("localDAQ", false);
89  psd0.add<edm::ParameterSetDescription>("rosParameters", psd1);
90  }
91  psd0.addUntracked<bool>("performDataIntegrityMonitor", false);
92  psd0.addUntracked<bool>("localDAQ", false);
93  desc.add<edm::ParameterSetDescription>("readOutParameters", psd0);
94  }
95  desc.add<bool>("dqmOnly", false);
96  descriptions.add("dtUnpackingModule", desc);
97 }
ParameterDescriptionBase * addUntracked(U const &iLabel, T const &value)
ParameterDescriptionBase * add(U const &iLabel, T const &value)
void add(std::string const &label, ParameterSetDescription const &psetDescription)

◆ produce()

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

Call the Unpackers and create the digis.

Definition at line 99 of file DTUnpackingModule.cc.

References visDQMUpload::context, FEDRawData::data(), dataType, dqmOnly, MillePedeFileConverter_cfg::e, FEDRawDataCollection::FEDData(), l1ctLayer2EG_cff::id, inputLabel, DTUnpacker::interpretRawData(), edm::HandleBase::isValid(), HPSPFTaus_cff::mapping, mappingToken_, FEDNumbering::MAXDTFEDID, maxFEDid_, FEDNumbering::MINDTFEDID, minFEDid_, eostools::move(), performDataIntegrityMonitor, FEDRawData::size(), unpacker, and useStandardFEDid_.

99  {
101  e.getByToken(inputLabel, rawdata);
102 
103  if (!rawdata.isValid()) {
104  LogError("DTUnpackingModule::produce") << " unable to get raw data from the event" << endl;
105  return;
106  }
107 
108  // Get the mapping from the setup
110 
111  // Create the result i.e. the collections of MB Digis and SC local triggers
112  auto detectorProduct = std::make_unique<DTDigiCollection>();
113  auto triggerProduct = std::make_unique<DTLocalTriggerCollection>();
114 
115  auto dduProduct = std::make_unique<std::vector<DTDDUData>>();
116  auto ros25Product = std::make_unique<DTROS25Collection>();
117 
118  // Loop over the DT FEDs
119  int FEDIDmin = 0, FEDIDMax = 0;
120  if (useStandardFEDid_) {
121  FEDIDmin = FEDNumbering::MINDTFEDID;
122  FEDIDMax = FEDNumbering::MAXDTFEDID;
123  } else {
124  FEDIDmin = minFEDid_;
125  FEDIDMax = maxFEDid_;
126  }
127 
128  for (int id = FEDIDmin; id <= FEDIDMax; ++id) {
129  const FEDRawData& feddata = rawdata->FEDData(id);
130 
131  if (feddata.size()) {
132  // Unpack the data
133  unpacker->interpretRawData(reinterpret_cast<const unsigned int*>(feddata.data()),
134  feddata.size(),
135  id,
136  mapping,
137  detectorProduct,
138  triggerProduct);
140  if (dataType == "DDU") {
141  dduProduct->push_back(dynamic_cast<DTDDUUnpacker*>(unpacker)->getDDUControlData());
142  ros25Product->push_back(dynamic_cast<DTDDUUnpacker*>(unpacker)->getROSsControlData());
143  } else if (dataType == "ROS25") {
144  ros25Product->push_back(dynamic_cast<DTROS25Unpacker*>(unpacker)->getROSsControlData());
145  }
146  }
147  }
148  }
149 
150  // commit to the event
151  if (!dqmOnly) {
152  e.put(std::move(detectorProduct));
153  e.put(std::move(triggerProduct));
154  }
156  e.put(std::move(dduProduct));
157  e.put(std::move(ros25Product));
158  }
159 }
virtual void interpretRawData(const unsigned int *index, int datasize, int dduID, edm::ESHandle< DTReadOutMapping > &mapping, std::unique_ptr< DTDigiCollection > &product, std::unique_ptr< DTLocalTriggerCollection > &product2, uint16_t rosList=0)=0
edm::EDGetTokenT< FEDRawDataCollection > inputLabel
if not you need the label
size_t size() const
Lenght of the data buffer in bytes.
Definition: FEDRawData.h:48
Log< level::Error, false > LogError
int minFEDid_
if not you need to set the range by hand
bool useStandardFEDid_
do you want to use the standard DT FED ID&#39;s, i.e. [770-775]? (why the hell 6??)
const FEDRawData & FEDData(int fedid) const
retrieve data for fed
edm::ESGetToken< DTReadOutMapping, DTReadOutMappingRcd > mappingToken_
DTUnpacker * unpacker
bool isValid() const
Definition: HandleBase.h:70
const unsigned char * data() const
Return a const pointer to the beginning of the data buffer.
Definition: FEDRawData.cc:24
def move(src, dest)
Definition: eostools.py:511

Member Data Documentation

◆ dataType

std::string DTUnpackingModule::dataType
private

Definition at line 47 of file DTUnpackingModule.h.

Referenced by DTUnpackingModule(), and produce().

◆ dqmOnly

bool DTUnpackingModule::dqmOnly
private

Definition at line 45 of file DTUnpackingModule.h.

Referenced by DTUnpackingModule(), and produce().

◆ inputLabel

edm::EDGetTokenT<FEDRawDataCollection> DTUnpackingModule::inputLabel
private

if not you need the label

Definition at line 38 of file DTUnpackingModule.h.

Referenced by DTUnpackingModule(), and produce().

◆ mappingToken_

edm::ESGetToken<DTReadOutMapping, DTReadOutMappingRcd> DTUnpackingModule::mappingToken_
private

Definition at line 39 of file DTUnpackingModule.h.

Referenced by DTUnpackingModule(), and produce().

◆ maxFEDid_

int DTUnpackingModule::maxFEDid_
private

Definition at line 44 of file DTUnpackingModule.h.

Referenced by DTUnpackingModule(), and produce().

◆ minFEDid_

int DTUnpackingModule::minFEDid_
private

if not you need to set the range by hand

Definition at line 43 of file DTUnpackingModule.h.

Referenced by DTUnpackingModule(), and produce().

◆ performDataIntegrityMonitor

bool DTUnpackingModule::performDataIntegrityMonitor
private

Definition at line 46 of file DTUnpackingModule.h.

Referenced by DTUnpackingModule(), and produce().

◆ unpacker

DTUnpacker* DTUnpackingModule::unpacker
private

Definition at line 35 of file DTUnpackingModule.h.

Referenced by DTUnpackingModule(), produce(), and ~DTUnpackingModule().

◆ useStandardFEDid_

bool DTUnpackingModule::useStandardFEDid_
private

do you want to use the standard DT FED ID's, i.e. [770-775]? (why the hell 6??)

Definition at line 41 of file DTUnpackingModule.h.

Referenced by DTUnpackingModule(), and produce().