]> jspc29.x-matter.uni-frankfurt.de Git - daqtools.git/commitdiff
add clear function to hplot
authorhadaq <hadaq@hades33.gsi.de>
Sat, 21 Sep 2024 17:54:30 +0000 (19:54 +0200)
committerhadaq <hadaq@hades33.gsi.de>
Sat, 21 Sep 2024 17:54:30 +0000 (19:54 +0200)
tools/HPlot.pm

index 362abccc9264311775b0eaaada4ea97f01d985ce..b559cdf0e7201fb164281a34323be179a1cc5cd6 100755 (executable)
@@ -327,6 +327,14 @@ sub PlotDraw {
     }
   }
 
+sub PlotClear {
+  my ($name) = @_;
+  for(my $j=0; $j<$p->{$name}->{curves}; $j++) {
+    for(my $i=0; $i< $p->{$name}->{entries}; $i++) {
+      $p->{$name}->{value}->[$j]->[$i] = undef;
+      }
+    }
+  }
 
 sub PlotAdd {
   my($name,$value,$curve) = @_;