]> jspc29.x-matter.uni-frankfurt.de Git - mvd_docu.git/commitdiff
beginning with tables
authorMichael Wiebusch <antiquark@gmx.net>
Thu, 3 Jul 2014 13:11:24 +0000 (15:11 +0200)
committerMichael Wiebusch <antiquark@gmx.net>
Thu, 3 Jul 2014 13:11:24 +0000 (15:11 +0200)
mvdsensorcontrol/appendix.tex
mvdsensorcontrol/daqsetup.tex
mvdsensorcontrol/documentation.tex
mvdsensorcontrol/tables/maketable.pl [new file with mode: 0755]

index f4e2a6cb09dbd6efd8cbba028e82706b05840296..3dfef9f6f40a1b8a54f4abf3c5b50877b4cd6cb3 100644 (file)
@@ -282,4 +282,19 @@ call JTAG programmer, program and initialize the sensors
 \end{itemize}
 \end{description}
 
+\subsection{Register definitions}
+
+\subsubsection{converter board registers}
+
+\input{tables/table}
+
+\begin{tabular}{ l | c || r }
+  \hline                       
+  1 & 2 & 3 \\
+  4 & 5 & 6 \\
+  7 & 8 & 9 \\
+  \hline  
+\end{tabular}
+
+
 
index d50bfbe15128e8db72bc571dd9e48add6defa7ff..62295a7272228a08a1cf7a1d11132c26197ec41f 100644 (file)
@@ -189,7 +189,7 @@ that are generated by four individual
 DACs\footnote{JTAG register "DAC\_BIAS", fields "IVDREF1A-IVDREF1D"}
 inside the chip. The DAC range is \SIrange{-32}{32}{\milli\volt} according to the datasheet.
 For these input channels the converter board has a measuring input range from
-\SIrange{-39.9}{39.9}{\volt}.
+\SIrange{-39.9}{39.9}{\milli\volt}.
 \item[ZeroSingle]
 Calibration offset that has to be subtracted from VDiscRef2A-VDiscRef2D to reduce systematic
 uncertainty introduced by the multiplexer and amplifier circuitry.
index 5c3661ae3eeead6f577cd516348d608510a503b7..0850d4ac698c35c511d1a5d13af2f5e8f10f8454 100644 (file)
@@ -1,6 +1,6 @@
 \documentclass[a4paper,11pt]{article}
 \usepackage[T1]{fontenc}
-\usepackage[utf8]{inputenc}
+\usepackage[utf8]{inputenc}
 \usepackage{lmodern}
 \usepackage{graphicx}
 \usepackage{subfig}
 % \usepackage{framed}
 \usepackage{fancyvrb}
 
+
+% for tables
+\usepackage{array}
+\usepackage{colortbl}
+\usepackage{xcolor}
+\usepackage{booktabs}
+
+
 % my macros
 
 \RecustomVerbatimEnvironment
diff --git a/mvdsensorcontrol/tables/maketable.pl b/mvdsensorcontrol/tables/maketable.pl
new file mode 100755 (executable)
index 0000000..5f962a9
--- /dev/null
@@ -0,0 +1,235 @@
+#!/usr/bin/perl -w
+
+
+# my $me = "adcmon.pl";
+
+use strict;
+use warnings;
+use POSIX;
+# use CGI ':standard';
+# use CGI::Carp qw(fatalsToBrowser);
+# use HTML::Entities;
+use Data::Dumper;
+use FileHandle;
+
+
+
+use FindBin;
+use lib "$FindBin::Bin/..";
+# my $entityFile = "../../daqtools/xml-db/cache/CbController.entity";
+# my $xmldb = AccessXmlDb->new( entityFile => $entityFile );
+# print any2hex(1234);
+# print join(":",@{$xmldb->channelList()});
+# print "\n";
+# 
+
+my $xml_cbctrl_entity = "/home/micha/mnt/55local1/htdocs/daqtools/xml-db/cache/CbController.entity";
+
+my $daqopserver="jspc55:88";
+$ENV{'DAQOPSERVER'} = $daqopserver;
+
+
+my $xmldb = xmlDbMethods->new( entityFile => $xml_cbctrl_entity);
+
+
+
+
+
+$xmldb->dumpItem('EnaA');
+$xmldb->dumpItem('MiscConf');
+
+my $list = $xmldb->unfoldTree('CbUcRegs');
+# my $list = $xmldb->unfoldTree('MiscConf');
+
+my $data = [];
+
+for my $name (@$list) { # processing the list
+  my $node = $xmldb->{entity}->{$name};
+  my $type = $node->{type};
+  my $repeat = $node->{repeat} || 1;
+  my $stepsize = $node->{stepsize}||0;
+  
+  my $bits = "";
+  if ($type ne 'register'){
+    my $start = $node->{start};
+    my $stop = $node->{start}+$node->{bits}-1;
+    if ($start == $stop){
+      $bits = $start;
+    } else {
+      $bits = "$start--$stop";
+    }
+  }
+  
+  #indent register fields
+  if ($type eq 'field'){
+    $name= '\quad  '.$name;
+  }
+  
+  for (my $i=0;$i<$repeat;$i++){
+    my $name_ = $name;
+    if ($repeat > 1) {
+      $name_ = $name.".$i";
+    }  
+    my $addr_ = $node->{address}+$i*$stepsize;
+    my $hexaddr = sprintf("0x%04x",$addr_ );
+    push(@{$data},{%$node, name => $name_, addr => $hexaddr, bits => $bits});
+  }
+}
+
+@$data = sort { $a->{bits} cmp $b->{bits} } @$data;
+@$data = sort { $a->{addr} cmp $b->{addr} } @$data;
+
+my $table = textabular->new();
+
+for my $item (@$data){
+$table->addData(%$item);
+}
+
+
+
+
+
+
+$table->{dataKeys} = [ 'name', 'addr', 'bits', 'description' ];
+$table->{format} = '@{} l l l p{8cm} @{}';
+
+my $tablefile = FileHandle->new("./table.tex", 'w');
+print $tablefile $table->generateString();
+$tablefile->close();
+
+print $table->generateString();
+
+package xmlDbMethods;
+
+use Storable qw(lock_store lock_retrieve);
+use Data::Dumper;
+
+sub new {
+  my $class = shift;
+  my %options = @_;
+  my $self  = {
+    entityFile => '/dev/null',
+    %options
+  };
+  bless($self, $class);
+  $self->{entity} = lock_retrieve($self->{entityFile});
+  die "cannot open xml-db entity file ".$self->{entityFile}."\n" unless defined $self->{entity};
+  return $self;
+}
+
+sub channelParm {
+  my $self = shift;
+  my $chip = shift;
+  my $channel = shift;
+  
+  my $parm;
+  %{$parm}= %{$self->{entity}->{$channel."D"}};
+  
+  die "entry $channel does not exist for chip=".$chip."\n" if ($chip ge $parm->{repeat});
+  
+  $parm->{address} += $chip * $parm->{stepsize};
+  return $parm;
+}
+
+sub dumpItem { # for debug
+  my $self = shift;
+  my $item = shift;
+  unless (defined($item)){
+    print Dumper $self->{entity};
+  } else {
+    print Dumper $self->{entity}->{$item};
+  }
+}
+
+sub channelList {
+  my $self = shift;
+  return $self->{entity}->{AdcSensor}->{children};# returns a reference to an array
+}
+
+sub unfoldTree {
+  my $self = shift;
+  my $name = shift;
+  my $depth = shift||0;
+  my $list = shift || [];
+  
+  my $node = $self->{entity}->{$name};
+  
+#   for (my $i = 0; $i<$depth; $i++){
+#     print "  ";
+#   }
+#   print $node->{type}."\t$name\n";
+  unless($node->{type} eq 'group'){
+    push(@{$list},$name);
+  }
+  
+  if ($node->{type} eq 'group' || $node->{type} eq 'register' ){
+    for my $child (@{$node->{'children'}}){
+#       print $child."\n";
+      $self->unfoldTree($child,$depth+1,$list);
+    }
+  }
+  
+  return $list;
+}
+
+1;
+
+package textabular;
+
+
+sub new {
+  my $class = shift;
+  my %options = @_;
+  my $self  = {
+#     entityFile => '/dev/null',
+    dataKeys => [],
+    header => [],
+    data => [],
+    %options
+  };
+  bless($self, $class);
+  return $self;
+}
+
+sub addData {
+  my $self = shift;
+  my %data = @_;
+  push(@{$self->{data}}, \%data);
+  return $self;
+}
+
+sub generateString {
+  my $self = shift;
+  my $str = "";
+  
+  $str.='\begin{table}[tbp]
+  \centering';
+  
+  
+  $str .= '\begin{tabular}'."\n";
+  $str .="{".($self->{format}||"")."}\n";
+  $str.='\toprule'."\n";
+  if ( @{$self->{header}} ){ # if no header list ...
+    $str.= "  ".join(" & ",@{$self->{header}}).' \\\\'."\n";
+  } else { # print the keys instead
+    $str.= "  ".join(" & ",@{$self->{dataKeys}}).' \\\\'."\n";
+  }
+  $str.='\midrule'."\n";
+  
+  for my $data (@{$self->{data}}){
+    my @line;
+    for my $dataKey (@{$self->{dataKeys}}){
+      push(@line,$data->{$dataKey});
+    }
+    my $line = "  ".join(" & ", @line) . ' \\\\'."\n";
+    $line =~ s/_/\\_/g; # remove all stupid underscores
+    $str.=$line;
+  }
+  $str.='\bottomrule'."\n";
+  $str.='\end{tabular}'."\n";
+  
+  $str.='\caption{'.$self->{caption}.'}' if defined $self->{caption}."\n";
+  $str.='\label{'.$self->{label}.'}' if defined $self->{label}."\n";
+  $str.='\end{table}'."\n";
+  return $str;
+}
\ No newline at end of file