Skip to content

Commit 066c859

Browse files
committed
remove commented code
1 parent 5e03f73 commit 066c859

File tree

2 files changed

+1
-8
lines changed

2 files changed

+1
-8
lines changed

EventFilter/GEMRawToDigi/plugins/GEMDigiToRawModule.cc

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -274,7 +274,6 @@ void GEMDigiToRawModule::produce(edm::StreamID iID, edm::Event& iEvent, edm::Eve
274274

275275
uint64_t* w = reinterpret_cast<uint64_t*>(fedRawData.data());
276276
for (const auto& word : words) {
277-
//std::cout << std::bitset<64>(word) <<std::endl;
278277
*(w++) = word;
279278
}
280279
LogDebug("GEMDigiToRawModule") << " words " << words.size();

EventFilter/GEMRawToDigi/plugins/GEMRawToDigiModule.cc

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -118,15 +118,9 @@ void GEMRawToDigiModule::produce(edm::StreamID iID, edm::Event& iEvent, edm::Eve
118118

119119
if (nWords < 5)
120120
continue;
121+
121122
const unsigned char* data = fedData.data();
122-
123123
const uint64_t* word = reinterpret_cast<const uint64_t*>(data);
124-
125-
// const uint64_t* w = word;
126-
// for (int i =0; i< nWords;i++) {
127-
// std::cout << std::bitset<64>(*(w++)) << std::endl;
128-
// }
129-
130124
auto amc13Event = gemRawToDigi_->convertWordToAMC13Event(word);
131125

132126
if (amc13Event == nullptr){

0 commit comments

Comments
 (0)