@subEvtHeader_list = ();
- my $decoding = &getSubEvtHeader($fh,$subEvtHeader_aref);
+ my $endian = &getSubEvtHeader($fh,$subEvtHeader_aref);
&printSubEvtHeader($subEvtHeader_aref) if($opt_verb);
my $subEvtSize = $subEvtHeader_aref->[0];
next if($subEvtSize == 16);
@data_list = ();
- &getSubEvtData($fh, $data_aref, $subEvtSize, $decoding);
+ &getSubEvtData($fh, $data_aref, $subEvtSize, $endian);
&printData($data_aref) if($opt_verb);
my $paddedSize = &padding($fh, $subEvtSize);
my $header;
read($fh, $header, 4);
- &checkEndOfFile($fh, $header);
+# &checkEndOfFile($fh, $header);
push(@tmp_list, $header);
}
my $header;
read($fh, $header, 4);
- &checkEndOfFile($fh, $header);
+# &checkEndOfFile($fh, $header);
push(@tmp_list, $header);
}
my $decoding = unpack("V*", $tmp_list[1]);
-
+ my $endian = &getEndianess($decoding);
if($opt_debug){
- if(&getEndianess($decoding)){
+ if($endian){
printf("\n SubEvent Decoding: %08x Byte Order: Little Endian\n", $decoding);
}
else{
foreach my $tmp (@tmp_list){
my $word;
- if(&getEndianess($decoding)){
+ if($endian){
$word = unpack("V*", $tmp); # Small Endian
}
else{
push(@$data_aref, $word);
}
- return &getEndianess($decoding);
+ return $endian;
}
sub getEndianess()
return $retVal;
}
-sub getSubEvtData()
-{
- my ($fh, $data_aref, $size, $decoding) = @_;
-
- #- Subtract subevent header size and devide by word size
- my $nrOfWords = ($size - 16)/4;
-
- foreach my $i (1..$nrOfWords){
-
- my $tmp;
- read($fh, $tmp, 4);
- &checkEndOfFile($fh, $tmp);
+sub getSubEvtData() {
+ my ($fh, $data_aref, $size, $endian) = @_;
- my $word;
+ #- Subtract subevent header size and devide by word size
+ my $nrOfWords = ($size - 16)/4;
- if(&getEndianess($decoding)){
- $word = unpack("V*", $tmp); # Little Endian
- }
- else{
- $word = unpack("N*", $tmp); # Big Endian
- }
-
- push(@$data_aref, $word);
+ my $tmp;
+ my $word;
+ foreach my $i (1..$nrOfWords){
+ read($fh, $tmp, 4);
+ if($endian){
+ $word = unpack("V*", $tmp); # Little Endian
+ }
+ else{
+ $word = unpack("N*", $tmp); # Big Endian
+ }
+ push(@$data_aref, $word);
}
-}
+ }
sub padding()
{
unless( ($size%8) == 0){
my $tmp;
read($fh, $tmp, 4);
-
- my $word;
- $word = unpack("V*", $tmp); # Little Endian
-
- unless($word == 0){
- #- Padding word is not zero
-
- printf("\n Padding word is not zero: %08x! \n", $word) if($opt_debug);
- #$fh->close();
- #exit(0);
- }
-
$retVal = 4; # Bytes
}
my $SensorError = $data->[$pos++];
my $SensorDebug = $data->[$pos++];
my $SensorTime = sprintf("%08x%08x",$data->[$pos+1],$data->[$pos]);
+
+ $PMap->{$SensorId}->[575]->[1151] = 0 unless defined $PMap->{$SensorId}->[575]->[1151];
+ my $matrix = $PMap->{$SensorId};
+
$pos+= 2;
+
printf("ID\t%8x\tStatus\t%08x\tError\t%08x\tDebug\t%08x\tTime\t%s\n",
$SensorId, $SensorStatus, $SensorError, $SensorDebug, $SensorTime) if $opt_frameinfo;
$SensorDummy, $SensorNumber, $SensorLength) if $opt_frameinfo;
my $FrameEndPos = $pos + $SensorLength;
- my ($i, $d, $line, $column, $pixels, $statecnt, $ovf) = (0,0,0,0,0,0,0);
+ my ($i, $d, $line, $column, $pixels, $statecnt, $ovf) = (1,0,0,0,0,0,0);
while(1) {
#Disentangle 16 Bit words
- if($i++%2) {$d = $data->[$pos++] & 0xffff;}
+ if($i=1-$i) {$d = $data->[$pos++] & 0xffff;}
else {$d = ($data->[$pos] >> 16) & 0xffff;}
#Is new line?
$column = ($d >> 2) & 0x7FF;
printf("\t$line, $column x $pixels\n") if $opt_frameinfo;
- $PMap->{$SensorId}->[$line]->[$column]++;
- $PMap->{$SensorId}->[$line]->[$column+1]++ if $pixels > 1;
- $PMap->{$SensorId}->[$line]->[$column+2]++ if $pixels > 2;
- $PMap->{$SensorId}->[$line]->[$column+3]++ if $pixels > 3;
+ $matrix->[$line]->[$column]++;
+ $matrix->[$line]->[$column+1]++ if $pixels > 1;
+ $matrix->[$line]->[$column+2]++ if $pixels > 2;
+ $matrix->[$line]->[$column+3]++ if $pixels > 3;
}
last if $pos >= $FrameEndPos;
print $fh "set output './image_recalibrated_$s.png';\n";
print $fh "plot '-' matrix with image\n";
+ my @matrix;
for(my $y = 0; $y < 576; $y++) {
- my $l = "";
- for(my $x = 0; $x < 1152; $x++) {
- if (defined $PMap->{$id}->[$y]->[$x]) {
- $l .= $PMap->{$id}->[$y]->[$x]." " ;
- }
- else {
- $l .= "0 ";
- }
- }
+ #Define lengths of all arrays
+ $PMap->{$id}->[$y]->[1151] = 0 unless defined $PMap->{$id}->[$y]->[1151];
+ #Fill undef with 0
+ @matrix = map {defined $_ ? $_ : 0 } @{$PMap->{$id}->[$y]};
+ #Join lines
+ my $l = join(" ",@matrix);
print $fh $l."\n";
}
+
print $fh "e\nexit\n";
$fh->close();
}