Skip to content

Commit db3008e

Browse files
authored
Merge pull request #45399 from VinInn/FixSyntaxInTTStub
fix syntax error in TTStub.h
2 parents 5f99ea4 + 85764fd commit db3008e

File tree

1 file changed

+3
-3
lines changed
  • DataFormats/L1TrackTrigger/interface

1 file changed

+3
-3
lines changed

DataFormats/L1TrackTrigger/interface/TTStub.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -226,9 +226,9 @@ std::string TTStub<T>::print(unsigned int i) const {
226226
std::stringstream output;
227227
output << padding << "TTStub:\n";
228228
padding += '\t';
229-
output << padding << "DetId: " << theDetId.rawId() << ", position: " << this->InnerClusterPosition();
230-
output << ", bend: " << this->BendFE() << '\n';
231-
output << ", hardware bend: " << this->BendBE() << '\n';
229+
output << padding << "DetId: " << theDetId.rawId() << ", position: " << this->innerClusterPosition();
230+
output << ", bend: " << this->bendFE() << '\n';
231+
output << ", hardware bend: " << this->bendBE() << '\n';
232232
output << padding << "cluster 0: address: " << theClusterRef0.get();
233233
output << ", cluster size: " << theClusterRef0->getHits().size() << '\n';
234234
output << padding << "cluster 1: address: " << theClusterRef1.get();

0 commit comments

Comments
 (0)