added muSR data run header information dump to musrgui

This commit is contained in:
nemu 2012-05-25 14:40:41 +00:00
parent 5a2e407433
commit daea7545a6
8 changed files with 279 additions and 2 deletions

View File

@ -6,7 +6,7 @@
changes since 0.11.0
===================================
NEW 2012-05-25 musredit: added a dump muSR data header file information.
NEW 2012-05-25 musredit/musrgui: added a dump muSR data header file information.
NEW 2012-05-22 added spin rotation angle to the LEM MusrRoot file.
NEW 2012-05-12 added dump_header. This is a little program which dumps the
header information of a given muSR data file onto the standard

View File

@ -2225,6 +2225,8 @@ void PTextEdit::musrDump()
{
// select a muSR data filename
QString fileName = QFileDialog::getOpenFileName(this, tr("Select muSR Data File"), "./", tr("muSR Data Files (*.root *.bin *.msr *.nxs)"));
if (fileName.isEmpty())
return;
QVector<QString> cmd;
QString str = fAdmin->getExecPath() + "/dump_header";

View File

@ -0,0 +1,138 @@
/****************************************************************************
PDumpOutputHandler.cpp
Author: Andreas Suter
e-mail: andreas.suter@psi.ch
$Id$
*****************************************************************************/
/***************************************************************************
* Copyright (C) 2012 by Andreas Suter *
* andreas.suter@psi.ch *
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program; if not, write to the *
* Free Software Foundation, Inc., *
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
***************************************************************************/
#include <qtimer.h>
#include "PDumpOutputHandler.h"
//----------------------------------------------------------------------------------------------------
/**
* <p>
*/
PDumpOutputHandler::PDumpOutputHandler(QValueVector<QString> &cmd)
{
if (cmd.empty())
return;
// Layout
fVbox = new QVBox( this );
fVbox->resize(600, 800);
fOutput = new QTextEdit( fVbox );
fOutput->setMinimumSize(600, 755);
fOutput->setReadOnly(true);
connect( fOutput, SIGNAL( destroyed() ), this, SLOT(quitButtonPressed() ) );
fQuitButton = new QPushButton( tr("Close"), fVbox );
connect( fQuitButton, SIGNAL( clicked() ), this, SLOT( quitButtonPressed() ) );
resize( 600, 800 );
fQuitButton->setFocus();
// QProcess related code
fProc = new QProcess( this );
// Set up the command and arguments.
for (unsigned int i=0; i<cmd.size(); i++)
fProc->addArgument(cmd[i]);
connect( fProc, SIGNAL( readyReadStdout() ), this, SLOT( readFromStdOut() ) );
connect( fProc, SIGNAL( readyReadStderr() ), this, SLOT( readFromStdErr() ) );
if ( !fProc->start() ) {
// error handling
QMessageBox::critical( 0,
tr("Fatal error"),
tr("Could not execute the output command: "+cmd[0]),
tr("Quit") );
done(0);
}
fProcPID = fProc->processIdentifier();
}
//----------------------------------------------------------------------------------------------------
/**
* <p>
*/
PDumpOutputHandler::~PDumpOutputHandler()
{
if (fProc->isRunning()) {
fProc->tryTerminate();
QTimer::singleShot( 3000, fProc, SLOT( kill() ) );
}
if (fProc->isRunning()) { // try low level kill
char cmd[128];
sprintf(cmd, "kill -9 %ld", fProcPID);
system(cmd);
}
if (fProc) {
delete fProc;
fProc = 0;
}
}
//----------------------------------------------------------------------------------------------------
/**
* <p>
*/
void PDumpOutputHandler::readFromStdOut()
{
// Read and process the data.
// Bear in mind that the data might be output in chunks.
fOutput->append( fProc->readStdout() );
}
//----------------------------------------------------------------------------------------------------
/**
* <p>
*/
void PDumpOutputHandler::readFromStdErr()
{
// Read and process the data.
// Bear in mind that the data might be output in chunks.
fOutput->append( fProc->readStderr() );
}
//----------------------------------------------------------------------------------------------------
/**
* <p>
*/
void PDumpOutputHandler::quitButtonPressed()
{
// if the fitting is still taking place, kill it
if (fProc->isRunning()) {
fProc->tryTerminate();
QTimer::singleShot( 1000, fProc, SLOT( kill() ) );
}
accept();
}
//----------------------------------------------------------------------------------------------------
// END
//----------------------------------------------------------------------------------------------------

View File

@ -0,0 +1,68 @@
/****************************************************************************
PDumpOutputHandler.h
Author: Andreas Suter
e-mail: andreas.suter@psi.ch
$Id$
*****************************************************************************/
/***************************************************************************
* Copyright (C) 2012 by Andreas Suter *
* andreas.suter@psi.ch *
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program; if not, write to the *
* Free Software Foundation, Inc., *
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
***************************************************************************/
#ifndef _PDUMPOUTPUTHANDLER_H_
#define _PDUMPOUTPUTHANDLER_H_
#include <qobject.h>
#include <qprocess.h>
#include <qdialog.h>
#include <qvbox.h>
#include <qtextedit.h>
#include <qpushbutton.h>
#include <qmessagebox.h>
#include <qvaluevector.h>
#include <stdlib.h>
class PDumpOutputHandler : public QDialog
{
Q_OBJECT
public:
PDumpOutputHandler(QValueVector<QString> &cmd);
virtual ~PDumpOutputHandler();
private slots:
virtual void readFromStdOut();
virtual void readFromStdErr();
virtual void quitButtonPressed();
private:
Q_LONG fProcPID;
QProcess *fProc;
QVBox *fVbox;
QTextEdit *fOutput;
QPushButton *fQuitButton;
};
#endif // _PDUMPOUTPUTHANDLER_H_

View File

@ -65,6 +65,7 @@ using namespace std;
#include "PReplaceDialog.h"
#include "forms/PReplaceConfirmationDialog.h"
#include "PFitOutputHandler.h"
#include "PDumpOutputHandler.h"
#include "PPrefsDialog.h"
#include "PGetDefaultDialog.h"
#include "forms/PMusrGuiAbout.h"
@ -397,6 +398,15 @@ void PTextEdit::setupMusrActions()
connect( a, SIGNAL( activated() ), this, SLOT( musrPrefs() ) );
a->addTo( tb );
a->addTo( menu );
menu->insertSeparator();
tb->addSeparator();
a = new QAction( QPixmap::fromMimeSource( "musrdump.xpm" ), tr( "&Dump Header" ), 0, this, "musrDump" );
connect( a, SIGNAL( activated() ), this, SLOT( musrDump() ) );
a->addTo( tb );
a->addTo( menu );
}
//----------------------------------------------------------------------------------------------------
@ -1920,6 +1930,33 @@ void PTextEdit::musrSwapMsrMlog()
}
}
//----------------------------------------------------------------------------------------------------
/**
* <p>
*/
void PTextEdit::musrDump()
{
QString fileName = QFileDialog::getOpenFileName(
"./",
"muSR Data Files (*.root *.bin *.msr *.nxs)",
this,
"Select muSR Data File",
"Select muSR Data File" );
if (fileName.isNull())
return;
QValueVector<QString> cmd;
QString str;
str = fAdmin->getExecPath() + "/dump_header";
cmd.append(str);
cmd.append(fileName);
PDumpOutputHandler dumpOutputHandler(cmd);
dumpOutputHandler.setModal(false);
dumpOutputHandler.exec();
}
//----------------------------------------------------------------------------------------------------
/**
* <p>

View File

@ -105,6 +105,7 @@ private slots:
void musrT0();
void musrPrefs();
void musrSwapMsrMlog();
void musrDump();
void helpContents();
void helpAboutQt();

View File

@ -0,0 +1,28 @@
/* XPM */
static char * musrdump_xpm[] = {
"22 22 3 1",
" c None",
". c #0000FF",
"+ c #000000",
"... . . . . ... ",
". . . . .. .. . .",
". . . . . . . . .",
". . . . . . . . .",
". . . . . . ... ",
". . . . . . . ",
"... ... . . . ",
" ",
" ",
"+++ ",
" ++++ ",
" + ",
" ++++ ",
" + ",
" ++++ ",
" + + ",
" + +++++ ",
" + +++ ",
" ++++ + ",
" +++ +++ ",
" + ++++ ",
" +++ + "};

View File

@ -69,6 +69,7 @@ HEADERS = musrgui.h \
PFindDialog.h \
PReplaceDialog.h \
PFitOutputHandler.h \
PDumpOutputHandler.h \
PPrefsDialog.h \
PGetDefaultDialog.h \
PGetParameterDialog.h \
@ -88,6 +89,7 @@ SOURCES = PFileWatcher.cpp \
PFindDialog.cpp \
PReplaceDialog.cpp \
PFitOutputHandler.cpp \
PDumpOutputHandler.cpp \
PPrefsDialog.cpp \
PGetDefaultDialog.cpp \
PGetParameterDialog.cpp \
@ -139,4 +141,5 @@ IMAGES = images/editcopy.xpm \
images/musrview.xpm \
images/musrt0.xpm \
images/musrprefs.xpm \
images/musrswap.xpm
images/musrswap.xpm \
images/musrdump.xpm