Skip to content

Commit

Permalink
Merge pull request #45399 from VinInn/FixSyntaxInTTStub
Browse files Browse the repository at this point in the history
fix syntax error in TTStub.h
  • Loading branch information
cmsbuild authored Jul 8, 2024
2 parents 5f99ea4 + 85764fd commit db3008e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions DataFormats/L1TrackTrigger/interface/TTStub.h
Original file line number Diff line number Diff line change
Expand Up @@ -226,9 +226,9 @@ std::string TTStub<T>::print(unsigned int i) const {
std::stringstream output;
output << padding << "TTStub:\n";
padding += '\t';
output << padding << "DetId: " << theDetId.rawId() << ", position: " << this->InnerClusterPosition();
output << ", bend: " << this->BendFE() << '\n';
output << ", hardware bend: " << this->BendBE() << '\n';
output << padding << "DetId: " << theDetId.rawId() << ", position: " << this->innerClusterPosition();
output << ", bend: " << this->bendFE() << '\n';
output << ", hardware bend: " << this->bendBE() << '\n';
output << padding << "cluster 0: address: " << theClusterRef0.get();
output << ", cluster size: " << theClusterRef0->getHits().size() << '\n';
output << padding << "cluster 1: address: " << theClusterRef1.get();
Expand Down

0 comments on commit db3008e

Please sign in to comment.