correct ms to microsec in cern muon graph
[light-and-matter.git] / process_geom_file.pl
blobdaf2fd4a1e58e260c262f8c616b8c55d716caebb
1 #!/usr/bin/perl
3 use strict;
5 while (my $line=<>) {
6 chomp $line;
8 while ($line=~m/([\d\.\-\+]+)pt/g) {
9 my $value = $1;
10 $value = $value*25.4/72.27;
11 print (sprintf "%7.2f",$value).' ';
14 print "\n";