Changeset 59


Ignore:
Timestamp:
06/15/09 16:11:47 (15 years ago)
Author:
qweitzel
Message:
first version of M0 display implemented (for files only) - to be improved
Location:
tools/ddd
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • tools/ddd/Functions.cpp

    r50 r59  
    22#include "GUI.h"
    33
    4 //-----------------------------------------------------------------------
    5 //**************************** All functions ****************************
    6 //-----------------------------------------------------------------------
     4//---------------------------------------------------------------------
     5//************************ All functions ****************************
     6//-------------------------------------------------------------------
    77
    88// +++ Open file dialog +++
    99void ddd::FileDialog(void) {
    10   QString Filename = QFileDialog::getOpenFileName(this,
    11      "Open raw file", INITIAL_DIRECTORY, "Raw data files (*.raw);; All files (*)");
     10QString Filename = QFileDialog::getOpenFileName(this,
     11  "Open raw file", INITIAL_DIRECTORY, "Raw data files (*.raw);; All files (*)");
    1212  if (Filename != NULL) {
    1313    FilenameBox->setText(Filename);
     
    100100      double* x = new double [RD->RHeader->Samples];
    101101      double* y = new double [RD->RHeader->Samples];
     102
    102103      for (unsigned int i=0; i<RD->RHeader->Samples; i++) {
    103104        x[i] = (double) (i/RD->BStruct[BoardNo->value()].NomFreq);
     
    108109      Signal->show();
    109110      Zoomer->setZoomBase(Signal->boundingRect());
    110       delete[] x;       delete[] y;
     111
     112      double z[6][6];
     113
     114      for(unsigned int i=0; i<RD->RHeader->NBoards; i++){
     115          for(unsigned int j=0; j<RD->RHeader->NChips; j++){
     116              for(unsigned int k=0; k<RD->RHeader->NChannels; k++) {
     117
     118                  //only interested in M0 data
     119                  if( ( (i==0 || i==1) && (j<=1) && (k<=7) ) || ( (i==2) && (j==0) && (k<=3) ) ) {
     120
     121                      std::string pixelname = PixMap->DRS_to_Pixel(i,j,k);
     122                      char pixelname_copy[256];
     123                      memset(pixelname_copy,'\0',256);
     124                      pixelname.copy(pixelname_copy, 256);
     125                     
     126                      //printf("\nboard %d, chip %d, channel %d, pixel %s:\t", i,j,k,pixelname_copy);
     127
     128                      char delim[] = "-";
     129                      char *buffer = NULL;
     130                      int module = -1;
     131                      int superpixel = -1;
     132                      int pixel = -1;
     133
     134                      //buffer = strtok(const_cast<char*>(pixelname.c_str()), delim);
     135                      buffer = strtok(pixelname_copy, delim);
     136                      module = atoi(buffer);
     137                      buffer = strtok(NULL, delim);
     138                      superpixel = atoi(buffer);
     139                      buffer = strtok(NULL, delim);
     140                      pixel = atoi(buffer);
     141
     142                      //printf("%d,%d,%d:\t", module, superpixel, pixel);
     143                      //printf("%d:\t", (int((superpixel-1)/3)*2));
     144                      //printf("%d:\t", int((pixel%4)+1) );
     145                      //printf("%d:\t", int((pixel%4)/2) );
     146                      //printf("%d:\t", (superpixel-1)%3 );
     147
     148                      int binx = 5-(int((superpixel-1)/3)*2)-(int((pixel%4)/2));
     149                      int biny = 5-(((superpixel-1)%3)*2)-(int((pixel-1)/2));
     150
     151                      //printf("%d, %d:\t",binx,biny);
     152
     153                      int StartBin = 100;
     154                      int StopBin = 120;
     155
     156                      for(int l=StartBin; l<(StopBin+1); l++){
     157
     158                          float sample = RD->Data[i*RD->RHeader->NChips*RD->RHeader->NChannels*RD->RHeader->Samples+
     159                                                  j*RD->RHeader->NChannels*RD->RHeader->Samples+
     160                                                  k*RD->RHeader->Samples+
     161                                                  l]*RD->BStruct[i].ScaleFactor;
     162                         
     163                          //printf("%.1f ",sample);
     164                         
     165                          if (sample > z[binx][biny]) {
     166                              z[binx][biny]=sample;
     167                          }
     168                         
     169                      }//sample loop
     170     
     171                  }//only M0 data
     172                 
     173              }//channel loop
     174          }//chip loop
     175      }//board loop
     176
     177      /*
     178      for (int i=0; i<6; i++){
     179          for (int j=0; j<6; j++){
     180              z[i][j]=i;
     181          }
     182      }
     183      */
     184
     185      Signal2D->setData(SpectrogramDataM0(z));
     186      Graph2D->axisWidget(QwtPlot::yRight)->setColorMap(Signal2D->data().range(),Signal2D->colorMap());
     187      Graph2D->setAxisScale(QwtPlot::yRight,Signal2D->data().range().minValue(),Signal2D->data().range().maxValue() );
     188      Graph2D->replot();
     189      //Signal2D->show();
     190
     191      delete[] x;       delete[] y;
     192
    111193  }
    112194  if(Tmpfile!=NULL) fclose(Tmpfile);
     
    119201  else SocketWindow->show();
    120202}
     203
     204// +++ Open sub window for M0 Display +++
     205void ddd::OpenM0Window() {
     206
     207  if(M0Window->isVisible()) M0Window->hide();
     208  else M0Window->show();
     209}
     210
    121211
    122212// +++ Acquire data through socket (acquire botton only available if socket exists) +++
  • tools/ddd/GUI.cpp

    r34 r59  
    7474  connect(SocketButton, SIGNAL(clicked()), this, SLOT(OpenSocketWindow()));
    7575  SocketButton->setToolTip("Open window for socket communication");
     76
     77  // M0 display button
     78  M0Display = new QPushButton("M0 Display",Central);
     79  M0Display->setFont(QFont("Times", 10, QFont::Bold));
     80  connect(M0Display, SIGNAL(clicked()), this, SLOT(OpenM0Window()));
     81  M0Display->setToolTip("Open window for M0 display");
    7682
    7783  // Acquire button and Continuous check box
     
    101107  Signal->attach(Graph);
    102108  Signal->setStyle(QwtPlotCurve::Steps);
    103      
     109
    104110  // Text boxes for run and event header
    105111  RunHeaderDisplay = new QPlainTextEdit(Central);
     
    133139  MainLayout->addLayout(FormLayout, 2, 0);
    134140  MainLayout->addWidget(SocketButton, 6,0);
     141  MainLayout->addWidget(M0Display, 3,0);
    135142  MainLayout->addWidget(GetButton, 4,0);
    136143  MainLayout->addWidget(ContinuousBox, 5,0);
     
    162169  SocketWindow = new QWidget();
    163170  SocketWindow->setWindowTitle("ddd - Socket Interface");
    164   
     171 
    165172  // Edit box for IP Address 
    166173  IPAddress = new QLineEdit(SocketWindow);
     
    197204  SocketOutput->setMaximumBlockCount(MAX_OUTPUT_LINES);
    198205  SocketOutput->setToolTip("Output of socket server");
    199  
     206
    200207  // Layout of all widgets
    201208  SocketLayout = new QGridLayout(SocketWindow);
     
    204211  SocketLayout->addWidget(Connect, 0, 3);
    205212  SocketLayout->addLayout(CommandLayout, 1, 0, 1, 4);
    206   SocketLayout->addWidget(SocketOutput, 2, 0, 4, 4); 
     213  SocketLayout->addWidget(SocketOutput, 2, 0, 4, 4);
     214
     215  //-----------------------------------------------------------------------
     216  //**************************** M0 window ****************************
     217  //-----------------------------------------------------------------------
     218   
     219  M0Window = new QWidget();
     220  M0Window->setWindowTitle("ddd - M0 Display");
     221
     222  Graph2D = new QwtPlot(M0Window);
     223  Graph2D->setAutoReplot(true);
     224  Graph2D->setCanvasBackground(QColor(Qt::white));
     225
     226  M0Layout = new QGridLayout(M0Window);
     227  M0Layout->addWidget(Graph2D, 1,1,3,3);
     228
     229  Signal2D = new QwtPlotSpectrogram;
     230  Signal2D->attach(Graph2D);
     231
     232  //initialize raster
     233  double z[6][6];
     234  for (int i=0; i<6; i++){
     235      for (int j=0; j<6; j++){
     236          z[i][j]=i+j;
     237      }
     238  }
     239  Signal2D->setData(SpectrogramDataM0(z));
     240
     241  colorMap = QwtLinearColorMap(Qt::yellow, Qt::red); 
     242  Signal2D->setColorMap(colorMap);
     243
     244  //Graph2D->axisWidget(QwtPlot::yRight)->setTitle("Yo!");
     245  Graph2D->axisWidget(QwtPlot::yRight)->setColorBarEnabled(true);
     246  Graph2D->axisWidget(QwtPlot::yRight)->setColorMap(Signal2D->data().range(),Signal2D->colorMap());
     247
     248  Graph2D->setAxisScale(QwtPlot::yRight,Signal2D->data().range().minValue(),Signal2D->data().range().maxValue());
     249  Graph2D->enableAxis(QwtPlot::yRight);
     250  Graph2D->plotLayout()->setAlignCanvasToScales(true);
     251  Graph2D->replot();
     252
    207253}
    208254
     
    210256  // Qwt items
    211257  delete Grid;                  delete Signal;
     258  delete Signal2D;
    212259  // Layout items
    213260  delete PortLayout;            delete CommandLayout;
     
    216263  // Other items               
    217264  delete SocketWindow;
     265  delete M0Window;
    218266  delete PixMap;                delete RD;
    219267}
  • tools/ddd/GUI.h

    r29 r59  
    1010#include <qwt_plot_zoomer.h>
    1111#include <qwt_plot_panner.h>
     12#include <qwt_plot_spectrogram.h>
     13#include <qwt_raster_data.h>
     14#include <qwt_scale_widget.h>
     15#include <qwt_plot_layout.h>
     16#include <qwt_color_map.h>
    1217
    1318#include "../../drsdaq/RawDataCTX.h"
     
    2227class ddd : public QMainWindow {
    2328    Q_OBJECT
    24    
    25     QPushButton *GetButton, *SocketButton, *Connect;
     29
     30    QPushButton *GetButton, *SocketButton, *Connect, *M0Display;
    2631    QCheckBox *ContinuousBox;
    2732    QToolButton *LoadButton;
     
    3136    QTabWidget *TabWidget;
    3237    QTcpSocket *Socket;
    33     QWidget *SocketWindow, *Central;
     38    QWidget *SocketWindow, *Central, *M0Window;
    3439    QAction *OpenAction, *ConnectAction;
    35     QGridLayout *SocketLayout, *MainLayout;
     40    QGridLayout *SocketLayout, *MainLayout, *M0Layout;
    3641    QFormLayout *CommandLayout, *PortLayout, *AddressLayout, *FormLayout, *SpinLayout;
    3742   
    38     QwtPlot *Graph;
     43    QwtPlot *Graph, *Graph2D;
    3944    QwtPlotZoomer *Zoomer;
    4045    QwtPlotCurve *Signal;
    4146    QwtPlotPanner *Panner;
    4247    QwtPlotGrid *Grid;
    43 
     48    QwtPlotSpectrogram *Signal2D;
     49    QwtLinearColorMap colorMap;
     50   
    4451    void closeEvent(QCloseEvent *);
    4552
     
    5865    void FileDialog();
    5966    void OpenSocketWindow();
     67    void OpenM0Window();
    6068    void GetSignalFromSocket();
    6169    void MakeConnection();
     
    7179};
    7280
     81//class for 2D spectrogram data
     82class SpectrogramDataM0: public QwtRasterData {
     83
     84private:
     85
     86    double _z[6][6];
     87    double _zmin;
     88    double _zmax;
     89
     90public:
     91   
     92    SpectrogramDataM0(const double z[6][6]): QwtRasterData(QwtDoubleRect(0, 0, 6, 6)) {
     93        for (int i = 0; i<6; i++){
     94          for (int j = 0; j<6; j++){
     95              _z[i][j] = z[i][j];
     96              if (z[i][j] > _zmax) _zmax = z[i][j];
     97              if (z[i][j] < _zmin) _zmin = z[i][j];
     98           }
     99        }
     100    }
     101
     102    virtual QwtRasterData *copy() const {
     103        return new SpectrogramDataM0(_z);
     104    }
     105
     106    virtual QwtDoubleInterval range() const {
     107        return QwtDoubleInterval(_zmin, _zmax);
     108    }
     109
     110    virtual void initRaster(const QwtDoubleRect = QwtDoubleRect(0, 0, 6, 6),
     111                            const QSize =QSize(1,1)) {};         
     112               
     113    virtual double value(double x, double y) const {
     114
     115        unsigned int first = (unsigned int)x;
     116        unsigned int second = (unsigned int)y;
     117
     118        const double v = _z[first][second];
     119        return v;
     120
     121    }
     122
     123};
Note: See TracChangeset for help on using the changeset viewer.