CMS 3D CMS Logo

DTUnpackingModule.cc
Go to the documentation of this file.
1 
8 
16 
19 
24 
26 
30 
31 using namespace edm;
32 using namespace std;
33 
34 #define SLINK_WORD_SIZE 8
35 
37  dataType = ps.getParameter<string>("dataType");
38 
39  ParameterSet unpackerParameters = ps.getParameter<ParameterSet>("readOutParameters");
40 
41  if (dataType == "DDU") {
42  unpacker = new DTDDUUnpacker(unpackerParameters);
43  } else if (dataType == "ROS25") {
44  unpacker = new DTROS25Unpacker(unpackerParameters.getParameter<ParameterSet>("rosParameters"));
45  } else if (dataType == "ROS8") {
46  unpacker = new DTROS8Unpacker(unpackerParameters);
47  } else {
48  throw cms::Exception("InvalidParameter") << "DTUnpackingModule: dataType " << dataType << " is unknown";
49  }
50 
51  inputLabel = consumes<FEDRawDataCollection>(ps.getParameter<InputTag>("inputLabel")); // default was: source
52  useStandardFEDid_ = ps.getParameter<bool>("useStandardFEDid"); // default was: true
53  minFEDid_ = ps.getUntrackedParameter<int>("minFEDid", 770); // default: 770
54  maxFEDid_ = ps.getUntrackedParameter<int>("maxFEDid", 779); // default 779
55  dqmOnly = ps.getParameter<bool>("dqmOnly"); // default: false
57  unpackerParameters.getUntrackedParameter<bool>("performDataIntegrityMonitor", false); // default: false
58 
59  if (!dqmOnly) {
60  produces<DTDigiCollection>();
61  produces<DTLocalTriggerCollection>();
62  }
63  if (performDataIntegrityMonitor) {
64  produces<std::vector<DTDDUData>>();
65  produces<std::vector<std::vector<DTROS25Data>>>();
66  }
67 }
68 
70 
73  desc.add<std::string>("dataType", "DDU");
74  desc.add<edm::InputTag>("inputLabel", edm::InputTag("rawDataCollector"));
75  desc.add<bool>("useStandardFEDid", true);
76  desc.addUntracked<int>("minFEDid", 770);
77  desc.addUntracked<int>("maxFEDid", 779);
78  desc.addOptional<bool>("fedbyType"); // never used, only kept here for back-compatibility
79  {
81  psd0.addUntracked<bool>("debug", false);
82  {
84  psd1.addUntracked<bool>("writeSC", true);
85  psd1.addUntracked<bool>("readingDDU", true);
86  psd1.addUntracked<bool>("performDataIntegrityMonitor", false);
87  psd1.addUntracked<bool>("readDDUIDfromDDU", true);
88  psd1.addUntracked<bool>("debug", false);
89  psd1.addUntracked<bool>("localDAQ", false);
90  psd0.add<edm::ParameterSetDescription>("rosParameters", psd1);
91  }
92  psd0.addUntracked<bool>("performDataIntegrityMonitor", false);
93  psd0.addUntracked<bool>("localDAQ", false);
94  desc.add<edm::ParameterSetDescription>("readOutParameters", psd0);
95  }
96  desc.add<bool>("dqmOnly", false);
97  descriptions.add("dtUnpackingModule", desc);
98 }
99 
102  e.getByToken(inputLabel, rawdata);
103 
104  if (!rawdata.isValid()) {
105  LogError("DTUnpackingModule::produce") << " unable to get raw data from the event" << endl;
106  return;
107  }
108 
109  // Get the mapping from the setup
111  context.get<DTReadOutMappingRcd>().get(mapping);
112 
113  // Create the result i.e. the collections of MB Digis and SC local triggers
114  auto detectorProduct = std::make_unique<DTDigiCollection>();
115  auto triggerProduct = std::make_unique<DTLocalTriggerCollection>();
116 
117  auto dduProduct = std::make_unique<std::vector<DTDDUData>>();
118  auto ros25Product = std::make_unique<DTROS25Collection>();
119 
120  // Loop over the DT FEDs
121  int FEDIDmin = 0, FEDIDMax = 0;
122  if (useStandardFEDid_) {
123  FEDIDmin = FEDNumbering::MINDTFEDID;
124  FEDIDMax = FEDNumbering::MAXDTFEDID;
125  } else {
126  FEDIDmin = minFEDid_;
127  FEDIDMax = maxFEDid_;
128  }
129 
130  for (int id = FEDIDmin; id <= FEDIDMax; ++id) {
131  const FEDRawData& feddata = rawdata->FEDData(id);
132 
133  if (feddata.size()) {
134  // Unpack the data
135  unpacker->interpretRawData(reinterpret_cast<const unsigned int*>(feddata.data()),
136  feddata.size(),
137  id,
138  mapping,
139  detectorProduct,
140  triggerProduct);
142  if (dataType == "DDU") {
143  dduProduct->push_back(dynamic_cast<DTDDUUnpacker*>(unpacker)->getDDUControlData());
144  ros25Product->push_back(dynamic_cast<DTDDUUnpacker*>(unpacker)->getROSsControlData());
145  } else if (dataType == "ROS25") {
146  ros25Product->push_back(dynamic_cast<DTROS25Unpacker*>(unpacker)->getROSsControlData());
147  }
148  }
149  }
150  }
151 
152  // commit to the event
153  if (!dqmOnly) {
154  e.put(std::move(detectorProduct));
155  e.put(std::move(triggerProduct));
156  }
158  e.put(std::move(dduProduct));
159  e.put(std::move(ros25Product));
160  }
161 }
T getParameter(std::string const &) const
T getUntrackedParameter(std::string const &, T const &) const
OrphanHandle< PROD > put(std::unique_ptr< PROD > product)
Put a new product.
Definition: Event.h:131
ParameterDescriptionBase * addOptional(U const &iLabel, T const &value)
static void fillDescriptions(edm::ConfigurationDescriptions &descriptions)
ParameterDescriptionBase * addUntracked(U const &iLabel, T const &value)
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
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:525
edm::EDGetTokenT< FEDRawDataCollection > inputLabel
if not you need the label
#define nullptr
size_t size() const
Lenght of the data buffer in bytes.
Definition: FEDRawData.h:45
int minFEDid_
if not you need to set the range by hand
const FEDRawData & FEDData(int fedid) const
retrieve data for fed
DTUnpackingModule(const edm::ParameterSet &pset)
Constructor.
bool useStandardFEDid_
do you want to use the standard DT FED ID&#39;s, i.e. [770-775]? (why the hell 6??)
~DTUnpackingModule() override
Destructor.
ParameterDescriptionBase * add(U const &iLabel, T const &value)
bool isValid() const
Definition: HandleBase.h:70
void produce(edm::Event &e, const edm::EventSetup &c) override
Call the Unpackers and create the digis.
void add(std::string const &label, ParameterSetDescription const &psetDescription)
DTUnpacker * unpacker
HLT enums.
T get() const
Definition: EventSetup.h:73
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