File indexing completed on 2024-04-06 12:28:18
0001 #include "RecoTracker/MkFitCore/interface/Hit.h"
0002 #include "Matrix.h"
0003
0004 namespace mkfit {
0005
0006 void MCHitInfo::reset() {}
0007
0008 void print(std::string_view label, const MeasurementState& s) {
0009 std::cout << label << std::endl;
0010 std::cout << "x: " << s.parameters()[0] << " y: " << s.parameters()[1] << " z: " << s.parameters()[2] << std::endl
0011 << "errors: " << std::endl;
0012 dumpMatrix(s.errors());
0013 std::cout << std::endl;
0014 }
0015
0016 }