CMS 3D CMS Logo

DTUnpackingModule.cc
Go to the documentation of this file.
1 
8 
16 
19 
24 
26 
30 
31 
32 using namespace edm;
33 using namespace std;
34 
35 
36 
37 #define SLINK_WORD_SIZE 8
38 
39 
41 
42  dataType = ps.getParameter<string>("dataType");
43 
44  ParameterSet unpackerParameters = ps.getParameter<ParameterSet>("readOutParameters");
45 
46  if (dataType == "DDU") {
47  unpacker = new DTDDUUnpacker(unpackerParameters);
48  }
49  else if (dataType == "ROS25") {
50  unpacker = new DTROS25Unpacker(unpackerParameters.getParameter<ParameterSet>("rosParameters"));
51  }
52  else if (dataType == "ROS8") {
53  unpacker = new DTROS8Unpacker(unpackerParameters);
54  }
55  else {
56  throw cms::Exception("InvalidParameter") << "DTUnpackingModule: dataType "
57  << dataType << " is unknown";
58  }
59 
60  inputLabel = consumes<FEDRawDataCollection>(ps.getParameter<InputTag>("inputLabel")); // default was: source
61  useStandardFEDid_ = ps.getParameter<bool>("useStandardFEDid"); // default was: true
62  minFEDid_ = ps.getUntrackedParameter<int>("minFEDid",770); // default: 770
63  maxFEDid_ = ps.getUntrackedParameter<int>("maxFEDid",779); // default 779
64  dqmOnly = ps.getParameter<bool>("dqmOnly"); // default: false
65  performDataIntegrityMonitor = unpackerParameters.getUntrackedParameter<bool>("performDataIntegrityMonitor",false); // default: false
66 
67  if(!dqmOnly) {
68  produces<DTDigiCollection>();
69  produces<DTLocalTriggerCollection>();
70  }
71  if(performDataIntegrityMonitor) {
72  produces<std::vector<DTDDUData> >();
73  produces<std::vector<std::vector<DTROS25Data> > >();
74  }
75 }
76 
78  delete unpacker;
79 }
80 
83  desc.add<std::string>("dataType","DDU");
84  desc.add<edm::InputTag>("inputLabel",edm::InputTag("rawDataCollector"));
85  desc.add<bool>("useStandardFEDid",true);
86  desc.addUntracked<int>("minFEDid",770);
87  desc.addUntracked<int>("maxFEDid",779);
88  desc.addOptional<bool>("fedbyType"); // never used, only kept here for back-compatibility
89  {
91  psd0.addUntracked<bool>("debug",false);
92  {
94  psd1.addUntracked<bool>("writeSC",true);
95  psd1.addUntracked<bool>("readingDDU",true);
96  psd1.addUntracked<bool>("performDataIntegrityMonitor",false);
97  psd1.addUntracked<bool>("readDDUIDfromDDU",true);
98  psd1.addUntracked<bool>("debug",false);
99  psd1.addUntracked<bool>("localDAQ",false);
100  psd0.add<edm::ParameterSetDescription>("rosParameters",psd1);
101  }
102  psd0.addUntracked<bool>("performDataIntegrityMonitor",false);
103  psd0.addUntracked<bool>("localDAQ",false);
104  desc.add<edm::ParameterSetDescription>("readOutParameters",psd0);
105  }
106  desc.add<bool>("dqmOnly",false);
107  descriptions.add("dtUnpackingModule",desc);
108 }
109 
111 
113  e.getByToken(inputLabel, rawdata);
114 
115  if(!rawdata.isValid()){
116  LogError("DTUnpackingModule::produce") << " unable to get raw data from the event" << endl;
117  return;
118  }
119 
120  // Get the mapping from the setup
122  context.get<DTReadOutMappingRcd>().get(mapping);
123 
124  // Create the result i.e. the collections of MB Digis and SC local triggers
125  auto detectorProduct = std::make_unique<DTDigiCollection>();
126  auto triggerProduct = std::make_unique<DTLocalTriggerCollection>();
127 
128  auto dduProduct = std::make_unique<std::vector<DTDDUData>>();
129  auto ros25Product = std::make_unique<DTROS25Collection>();
130 
131  // Loop over the DT FEDs
132  int FEDIDmin = 0, FEDIDMax = 0;
133  if (useStandardFEDid_){
134  FEDIDmin = FEDNumbering::MINDTFEDID;
135  FEDIDMax = FEDNumbering::MAXDTFEDID;
136  }
137  else {
138  FEDIDmin = minFEDid_;
139  FEDIDMax = maxFEDid_;
140  }
141 
142  for (int id=FEDIDmin; id<=FEDIDMax; ++id){
143  const FEDRawData& feddata = rawdata->FEDData(id);
144 
145  if (feddata.size()){
146  // Unpack the data
147  unpacker->interpretRawData(reinterpret_cast<const unsigned int*>(feddata.data()),
148  feddata.size(), id, mapping, detectorProduct, triggerProduct);
150  if(dataType == "DDU") {
151  dduProduct->push_back(dynamic_cast<DTDDUUnpacker*>(unpacker)->getDDUControlData());
152  ros25Product->push_back(dynamic_cast<DTDDUUnpacker*>(unpacker)->getROSsControlData());
153  }
154  else if(dataType == "ROS25") {
155  ros25Product->push_back(dynamic_cast<DTROS25Unpacker*>(unpacker)->getROSsControlData());
156  }
157  }
158  }
159  }
160 
161  // commit to the event
162  if(!dqmOnly) {
163  e.put(std::move(detectorProduct));
164  e.put(std::move(triggerProduct));
165  }
167  e.put(std::move(dduProduct));
168  e.put(std::move(ros25Product));
169  }
170 }
171 
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:137
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:579
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:47
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:74
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:63
const unsigned char * data() const
Return a const pointer to the beginning of the data buffer.
Definition: FEDRawData.cc:28
def move(src, dest)
Definition: eostools.py:510