Skip to content

Commit 7433f4c

Browse files
committed
code-checks
1 parent 9eaf2ce commit 7433f4c

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

CondFormats/GEMObjects/interface/GEMeMap.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ class GEMeMap {
6363
static const int maxGEBs_ = 32; // 5 bits for GEB id
6464
static const int maxGEB0_ = 30; // Not known yet for ME0
6565
static const int maxGEB1_ = 12; // 12 for GE11
66-
static const int maxVFatGE0_ = 3; // vFat per eta partition, not known yet for ME0
66+
static const int maxVFatGE0_ = 3; // vFat per eta partition, not known yet for ME0
6767
static const int maxVFatGE11_ = 3; // vFat per eta partition in GE11
6868
static const int maxVFatGE21_ = 6; // vFat per eta partition in GE21
6969
static const int maxChan_ = 128; // channels per vFat

EventFilter/GEMRawToDigi/plugins/GEMDigiToRawModule.cc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -188,12 +188,12 @@ void GEMDigiToRawModule::produce(edm::StreamID iID, edm::Event& iEvent, edm::Eve
188188

189189
} // end of vfats in GEB
190190

191-
if (!gebData->vFATs()->empty()) {
191+
if (!gebData->vFATs()->empty()) {
192192
amcSize += 2;
193193
gebData->setChamberHeader(gebData->vFATs()->size() * 3, gebId);
194194
gebData->setChamberTrailer(LV1_id, BX_id, gebData->vFATs()->size() * 3);
195195
amcData->addGEB(*gebData);
196-
}
196+
}
197197
} // end of GEB loop
198198

199199
amcSize += 5;
@@ -217,8 +217,8 @@ void GEMDigiToRawModule::produce(edm::StreamID iID, edm::Event& iEvent, edm::Eve
217217
//CDF trailer
218218
uint32_t EvtLength = amc13EvtLength + 4; // 2 header and 2 trailer
219219
amc13Event->setCDFTrailer(EvtLength);
220-
221-
amc13Events.emplace_back(std::move(amc13Event));
220+
221+
amc13Events.emplace_back(std::move(amc13Event));
222222
} // finished making amc13Event data
223223
} // end of FED loop
224224

EventFilter/GEMRawToDigi/plugins/GEMRawToDigiModule.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ void GEMRawToDigiModule::produce(edm::StreamID iID, edm::Event& iEvent, edm::Eve
122122

123123
// trailer checks
124124
FEDTrailer trailer(fedData.data() + fedData.size() - FEDTrailer::length);
125-
125+
126126
bool failTrailerCheck = false, failTrailerMatch = false;
127127
if (!trailer.check() || (trailer.fragmentLength() * sizeof(uint64_t) != fedData.size())) {
128128
failTrailerCheck = true;

0 commit comments

Comments
 (0)