Skip to content

Commit d53a0df

Browse files
committed
fix syntax error in TTStub.h
1 parent 94ac0f5 commit d53a0df

File tree

1 file changed

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

1 file changed

+4
-4
lines changed

DataFormats/L1TrackTrigger/interface/TTStub.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ class TTStub {
111111
bool thePSModule;
112112

113113
static constexpr float dummyBend = 999999; // Dumy value should be away from potential bends
114-
}; /// Close class
114+
}; /// Close class
115115

116116
/*! \brief Implementation of methods
117117
* \details Here, in the header file, the methods which do not depend
@@ -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)