Skip to content

Commit 4447fb7

Browse files
committed
gui: add units to heatmap dump
Signed-off-by: Peter Gadfort <[email protected]>
1 parent 280a289 commit 4447fb7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/gui/src/heatMap.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ void HeatMapDataSource::dumpToFile(const std::string& file)
9797

9898
const double dbu_to_micron = block_->getDbUnitsPerMicron();
9999

100-
csv << "x0,y0,x1,y1,value" << std::endl;
100+
csv << "x0,y0,x1,y1,value (" << getValueUnits() << ")" << std::endl;
101101
for (const auto& map_col : map_) {
102102
for (const auto& map_value : map_col) {
103103
if (!map_value->has_value) {

0 commit comments

Comments
 (0)