| 30 | |
| 31 | public: |
| 32 | std::unique_ptr<const Fluxmap> readSingleFlux(int track, int side) override |
| 33 | { |
| 34 | std::string path = |
| 35 | fmt::format("{}/@TR{:02}S{}@.FLX", _path, track, side + 1); |
| 36 | log("FLX: reading {}", path); |
| 37 | return readFlxBytes(Bytes::readFromFile(path)); |
| 38 | } |
| 39 | |
| 40 | void recalibrate() override {} |
| 41 |
nothing calls this directly
no test coverage detected