Skip to content

Commit

Permalink
Code format
Browse files Browse the repository at this point in the history
  • Loading branch information
Sven Dildick committed Apr 1, 2020
1 parent ac68729 commit d17d7dd
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion L1Trigger/CSCTriggerPrimitives/src/GEMCoPadProcessor.cc
Expand Up @@ -33,7 +33,8 @@ std::vector<GEMCoPadDigi> GEMCoPadProcessor::run(const GEMPadDigiCollection* in_

// coincidence pads are not build for ME0
// -> ignore hits from station 0
if (id.station()==0) continue;
if (id.station() == 0)
continue;

// same chamber (no restriction on the roll number)
if (id.region() != theRegion or id.station() != theStation or id.chamber() != theChamber)
Expand Down
4 changes: 2 additions & 2 deletions L1Trigger/L1TGEM/plugins/GEMPadDigiClusterProducer.cc
Expand Up @@ -175,10 +175,10 @@ void GEMPadDigiClusterProducer::buildClusters(const GEMPadDigiCollection& det_pa

// construct clusters
for (const auto& part : geometry_->etaPartitions()) {

// clusters are not build for ME0
// -> ignore hits from station 0
if (part->id().station()==0) continue;
if (part->id().station() == 0)
continue;

GEMPadDigiClusters all_pad_clusters;

Expand Down

0 comments on commit d17d7dd

Please sign in to comment.