Skip to content

Commit

Permalink
Clang-Format
Browse files Browse the repository at this point in the history
  • Loading branch information
cmsbuild committed Feb 10, 2020
1 parent 90d3f1b commit ebdeb7d
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 7 deletions.
8 changes: 6 additions & 2 deletions L1Trigger/L1TGlobal/src/CorrCondition.cc
Original file line number Diff line number Diff line change
Expand Up @@ -476,7 +476,9 @@ const bool l1t::CorrCondition::evaluateCondition(const int bxEval) const {
et0Phy = 0.5 * (binEdges.second + binEdges.first);
lutObj0 = "TAU";
} break;
default: { } break; } //end switch on calo type.
default: {
} break;
} //end switch on calo type.

//If needed convert calo scales to muon scales for comparison
if (convertCaloScales) {
Expand Down Expand Up @@ -746,7 +748,9 @@ const bool l1t::CorrCondition::evaluateCondition(const int bxEval) const {
et1Phy = 0.5 * (binEdges.second + binEdges.first);
lutObj1 = "TAU";
} break;
default: { } break; } //end switch on calo type.
default: {
} break;
} //end switch on calo type.

//If needed convert calo scales to muon scales for comparison
if (convertCaloScales) {
Expand Down
16 changes: 12 additions & 4 deletions L1Trigger/L1TGlobal/src/CorrWithOverlapRemovalCondition.cc
Original file line number Diff line number Diff line change
Expand Up @@ -632,7 +632,9 @@ const bool l1t::CorrWithOverlapRemovalCondition::evaluateCondition(const int bxE
et0Phy = 0.5 * (binEdges.second + binEdges.first);
lutObj0 = "TAU";
} break;
default: { } break; } //end switch on calo type.
default: {
} break;
} //end switch on calo type.

phiORIndex0 = phiIndex0;
etaORIndex0 = etaIndex0;
Expand Down Expand Up @@ -880,7 +882,9 @@ const bool l1t::CorrWithOverlapRemovalCondition::evaluateCondition(const int bxE
eta2Phy = 0.5 * (binEdges.second + binEdges.first);
lutObj2 = "TAU";
} break;
default: { } break; } //end switch on calo type.
default: {
} break;
} //end switch on calo type.

//If needed convert calo scales to muon scales for comparison
if (convertCaloScales) {
Expand Down Expand Up @@ -1279,7 +1283,9 @@ const bool l1t::CorrWithOverlapRemovalCondition::evaluateCondition(const int bxE
et1Phy = 0.5 * (binEdges.second + binEdges.first);
lutObj1 = "TAU";
} break;
default: { } break; } //end switch on calo type.
default: {
} break;
} //end switch on calo type.

phiORIndex1 = phiIndex1;
etaORIndex1 = etaIndex1;
Expand Down Expand Up @@ -1520,7 +1526,9 @@ const bool l1t::CorrWithOverlapRemovalCondition::evaluateCondition(const int bxE
eta2Phy = 0.5 * (binEdges.second + binEdges.first);
lutObj2 = "TAU";
} break;
default: { } break; } //end switch on calo type.
default: {
} break;
} //end switch on calo type.

//If needed convert calo scales to muon scales for comparison
if (convertCaloScales) {
Expand Down
4 changes: 3 additions & 1 deletion L1Trigger/L1TGlobal/src/GlobalCondition.cc
Original file line number Diff line number Diff line change
Expand Up @@ -555,7 +555,9 @@ void GlobalCondition::print(std::ostream& myCout) const {
}

break;
default: { myCout << " Unknown type " << m_objectType[i]; } break;
default: {
myCout << " Unknown type " << m_objectType[i];
} break;
}
}

Expand Down

0 comments on commit ebdeb7d

Please sign in to comment.