358 lines
12 KiB
C++
358 lines
12 KiB
C++
/***************************************************************************
|
|
|
|
musrview.cpp
|
|
|
|
Author: Andreas Suter
|
|
e-mail: andreas.suter@psi.ch
|
|
|
|
$Id$
|
|
|
|
***************************************************************************/
|
|
|
|
/***************************************************************************
|
|
* Copyright (C) 2007 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 <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
|
|
#include <iostream>
|
|
using namespace std;
|
|
|
|
#include <TApplication.h>
|
|
#include <TSAXParser.h>
|
|
#include <TROOT.h>
|
|
|
|
#include "PMusr.h"
|
|
#include "PStartupHandler.h"
|
|
#include "PMsrHandler.h"
|
|
#include "PRunDataHandler.h"
|
|
#include "PRunListCollection.h"
|
|
#include "PMusrCanvas.h"
|
|
|
|
|
|
//--------------------------------------------------------------------------
|
|
/**
|
|
* <p>
|
|
*
|
|
*/
|
|
void musrview_syntax()
|
|
{
|
|
cout << endl << "usage: musrview <msr-file> [--<graphic-format-extension>] | --version | --help";
|
|
cout << endl << " <msr-file>: msr/mlog input file";
|
|
cout << endl << " 'musrview <msr-file>' will execute musrview";
|
|
cout << endl << " --<graphic-format-extension>: ";
|
|
cout << endl << " will produce a graphics-output-file without starting a root session.";
|
|
cout << endl << " the name is based on the <msr-file>, e.g. 3310.msr -> 3310_0.png";
|
|
cout << endl << " supported graphic-format-extension:";
|
|
cout << endl << " eps, pdf, gif, jpg, png, svg, xpm, root";
|
|
cout << endl << " example: musrview 3310.msr --png, will produce a files 3310_X.png";
|
|
cout << endl << " where 'X' stands for the plot number (starting form 0)";
|
|
cout << endl << " 'musrview' or 'musrview --help' will show this help";
|
|
cout << endl << " 'musrview --version' will print the musrview version";
|
|
cout << endl << endl;
|
|
}
|
|
|
|
//--------------------------------------------------------------------------
|
|
int main(int argc, char *argv[])
|
|
{
|
|
bool show_syntax = false;
|
|
int status;
|
|
bool success = true;
|
|
char fileName[128];
|
|
bool graphicsOutput = false;
|
|
char graphicsExtension[128];
|
|
|
|
|
|
// check input arguments
|
|
switch (argc) {
|
|
case 1:
|
|
show_syntax = true;
|
|
break;
|
|
case 2:
|
|
if (strstr(argv[1], "--version")) {
|
|
cout << endl << "musrview version: $Id$";
|
|
cout << endl << endl;
|
|
return PMUSR_SUCCESS;
|
|
} else if (strstr(argv[1], "--help")) {
|
|
show_syntax = true;
|
|
} else {
|
|
// check if filename has extension msr or mlog
|
|
if (!strstr(argv[1], ".msr") && !strstr(argv[1], ".mlog")) {
|
|
cout << endl << "**ERROR** " << argv[1] << " is not a msr/mlog-file, nor is it a supported graphics extension." << endl;
|
|
show_syntax = true;
|
|
} else {
|
|
strcpy(fileName, argv[1]);
|
|
}
|
|
}
|
|
break;
|
|
case 3:
|
|
if (!strcmp(argv[1], "--eps") || !strcmp(argv[1], "--pdf") || !strcmp(argv[1], "--gif") ||
|
|
!strcmp(argv[1], "--jpg") || !strcmp(argv[1], "--png") || !strcmp(argv[1], "--svg") ||
|
|
!strcmp(argv[1], "--xpm") || !strcmp(argv[1], "--root")) {
|
|
graphicsOutput = true;
|
|
strcpy(graphicsExtension, argv[1]+2);
|
|
// check if filename has extension msr or mlog
|
|
if (!strstr(argv[2], ".msr") && !strstr(argv[2], ".mlog")) {
|
|
cout << endl << "**ERROR** " << argv[2] << " is not a msr/mlog-file, nor is it a supported graphics extension." << endl;
|
|
show_syntax = true;
|
|
} else {
|
|
strcpy(fileName, argv[2]);
|
|
}
|
|
} else if (!strcmp(argv[2], "--eps") || !strcmp(argv[2], "--pdf") || !strcmp(argv[2], "--gif") ||
|
|
!strcmp(argv[2], "--jpg") || !strcmp(argv[2], "--png") || !strcmp(argv[2], "--svg") ||
|
|
!strcmp(argv[2], "--xpm") || !strcmp(argv[2], "--root")) {
|
|
graphicsOutput = true;
|
|
strcpy(graphicsExtension, argv[2]+2);
|
|
// check if filename has extension msr or mlog
|
|
if (!strstr(argv[1], ".msr") && !strstr(argv[1], ".mlog")) {
|
|
cout << endl << "**ERROR** " << argv[1] << " is not a msr/mlog-file, nor is it a supported graphics extension." << endl;
|
|
show_syntax = true;
|
|
} else {
|
|
strcpy(fileName, argv[1]);
|
|
}
|
|
} else {
|
|
show_syntax = true;
|
|
}
|
|
break;
|
|
default:
|
|
show_syntax = true;
|
|
}
|
|
|
|
if (show_syntax) {
|
|
musrview_syntax();
|
|
return PMUSR_WRONG_STARTUP_SYNTAX;
|
|
}
|
|
|
|
// read startup file
|
|
char startup_path_name[128];
|
|
TSAXParser *saxParser = new TSAXParser();
|
|
PStartupHandler *startupHandler = new PStartupHandler();
|
|
saxParser->ConnectToHandler("PStartupHandler", startupHandler);
|
|
strcpy(startup_path_name, startupHandler->GetStartupFilePath().Data());
|
|
status = saxParser->ParseFile(startup_path_name);
|
|
// check for parse errors
|
|
if (status) { // error
|
|
cout << endl << "**WARNING** reading/parsing musrfit_startup.xml failed.";
|
|
cout << endl;
|
|
/*
|
|
// clean up
|
|
if (saxParser) {
|
|
delete saxParser;
|
|
saxParser = 0;
|
|
}
|
|
if (startupHandler) {
|
|
delete startupHandler;
|
|
startupHandler = 0;
|
|
}
|
|
*/
|
|
}
|
|
startupHandler->CheckLists();
|
|
|
|
// read msr-file
|
|
PMsrHandler *msrHandler = new PMsrHandler(fileName);
|
|
status = msrHandler->ReadMsrFile();
|
|
if (status != PMUSR_SUCCESS) {
|
|
switch (status) {
|
|
case PMUSR_MSR_FILE_NOT_FOUND:
|
|
cout << endl << "**ERROR** couldn't find '" << fileName << "'" << endl << endl;
|
|
break;
|
|
case PMUSR_MSR_SYNTAX_ERROR:
|
|
cout << endl << "**SYNTAX ERROR** in file " << fileName << ", full stop here." << endl << endl;
|
|
break;
|
|
default:
|
|
cout << endl << "**UNKNOWN ERROR** when trying to read the msr-file" << endl << endl;
|
|
break;
|
|
}
|
|
return status;
|
|
}
|
|
// make a plot list vector
|
|
PMsrPlotList *msrPlotList = msrHandler->GetMsrPlotList();
|
|
PIntVector plotList;
|
|
bool runPresent;
|
|
for (unsigned int i=0; i<msrPlotList->size(); i++) {
|
|
for (unsigned int j=0; j<msrPlotList->at(i).fRuns.size(); j++) {
|
|
// check that run is not already in the plotList
|
|
runPresent = false;
|
|
for (unsigned int k=0; k<plotList.size(); k++) {
|
|
if (msrPlotList->at(i).fRuns[j].Re() == static_cast<int>(plotList[k])) {
|
|
runPresent = true;
|
|
break;
|
|
}
|
|
}
|
|
if (!runPresent) {
|
|
plotList.push_back(static_cast<int>(msrPlotList->at(i).fRuns[j].Re()));
|
|
}
|
|
}
|
|
}
|
|
/*
|
|
cout << endl << ">> plotList:" << endl;
|
|
for(unsigned int i=0; i<plotList.size(); i++){
|
|
cout << plotList[i] << ", ";
|
|
}
|
|
cout << endl;
|
|
*/
|
|
|
|
// read all the necessary runs (raw data)
|
|
PRunDataHandler *dataHandler;
|
|
if (startupHandler)
|
|
dataHandler = new PRunDataHandler(msrHandler, startupHandler->GetDataPathList());
|
|
else
|
|
dataHandler = new PRunDataHandler(msrHandler);
|
|
|
|
success = dataHandler->IsAllDataAvailable();
|
|
if (!success) {
|
|
cout << endl << "**ERROR** Couldn't read all data files, will quit ..." << endl;
|
|
}
|
|
|
|
// generate the necessary histogramms for the view
|
|
PRunListCollection *runListCollection = 0;
|
|
if (success) {
|
|
// feed all the necessary histogramms for the view
|
|
runListCollection = new PRunListCollection(msrHandler, dataHandler);
|
|
for (unsigned int i=0; i<msrHandler->GetMsrRunList()->size(); i++) {
|
|
// if run is in plotList add it, otherwise go to the next
|
|
runPresent = false;
|
|
for (unsigned int j=0; j<plotList.size(); j++) {
|
|
if (static_cast<unsigned int>(plotList[j]) == i+1) {
|
|
runPresent = true;
|
|
break;
|
|
}
|
|
}
|
|
if (runPresent) {
|
|
//cout << endl << ">> Will add run " << i << endl;
|
|
success = runListCollection->Add(i, kView);
|
|
if (!success) {
|
|
cout << endl << "**ERROR** Couldn't handle run no " << i << " ";
|
|
cout << (*msrHandler->GetMsrRunList())[i].fRunName[0].Data();
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
if (success) {
|
|
// generate Root application needed for PMusrCanvas
|
|
if (graphicsOutput) {
|
|
argv[argc] = (char*)malloc(16*sizeof(char));
|
|
strcpy(argv[argc], "-b");
|
|
argc++;
|
|
}
|
|
TApplication app("App", &argc, argv);
|
|
|
|
vector<PMusrCanvas*> canvasVector;
|
|
PMusrCanvas *musrCanvas;
|
|
|
|
bool ok = true;
|
|
for (unsigned int i=0; i<msrHandler->GetMsrPlotList()->size(); i++) {
|
|
|
|
if (startupHandler)
|
|
musrCanvas = new PMusrCanvas(i, msrHandler->GetMsrTitle()->Data(),
|
|
10+i*100, 10+i*100, 800, 600,
|
|
startupHandler->GetFourierDefaults(),
|
|
startupHandler->GetMarkerList(),
|
|
startupHandler->GetColorList(),
|
|
graphicsOutput);
|
|
else
|
|
musrCanvas = new PMusrCanvas(i, msrHandler->GetMsrTitle()->Data(),
|
|
10+i*100, 10+i*100, 800, 600, graphicsOutput);
|
|
|
|
if (!musrCanvas->IsValid()) {
|
|
cout << endl << "**SEVERE ERROR** Couldn't invoke all necessary objects, will quit.";
|
|
cout << endl;
|
|
ok = false;
|
|
break;
|
|
}
|
|
// connect signal/slot
|
|
TQObject::Connect("TCanvas", "Closed()", "PMusrCanvas", musrCanvas, "LastCanvasClosed()");
|
|
|
|
// ugly but rootcint cannot handle the spirit-parser framework
|
|
musrCanvas->SetMsrHandler(msrHandler);
|
|
musrCanvas->SetRunListCollection(runListCollection);
|
|
|
|
musrCanvas->UpdateParamTheoryPad();
|
|
musrCanvas->UpdateDataTheoryPad();
|
|
musrCanvas->UpdateInfoPad();
|
|
|
|
if (!musrCanvas->IsValid()) { // something went wrong
|
|
ok = false;
|
|
break;
|
|
}
|
|
|
|
musrCanvas->Connect("Done(Int_t)", "TApplication", &app, "Terminate(Int_t)");
|
|
|
|
if (graphicsOutput) {
|
|
musrCanvas->SaveGraphicsAndQuit(fileName, graphicsExtension);
|
|
}
|
|
|
|
// keep musrCanvas objects
|
|
canvasVector.push_back(musrCanvas);
|
|
}
|
|
|
|
// check that everything is ok
|
|
if (ok)
|
|
app.Run(true); // true needed that Run will return after quit so that cleanup works
|
|
|
|
// clean up
|
|
//cout << endl << "clean up canvas vector ...";
|
|
char canvasName[32];
|
|
for (unsigned int i=0; i<canvasVector.size(); i++) {
|
|
// check if canvas is still there before calling the destructor **TO BE DONE**
|
|
sprintf(canvasName, "fMainCanvas%d", i);
|
|
//cout << endl << ">> canvasName=" << canvasName << ", canvasVector[" << i << "]=" << canvasVector[i];
|
|
if (gROOT->GetListOfCanvases()->FindObject(canvasName) != 0) {
|
|
//cout << endl << ">> canvasName=" << canvasName << ", found ...";
|
|
//cout << endl;
|
|
canvasVector[i]->~PMusrCanvas();
|
|
} else {
|
|
//cout << endl << ">> canvasName=" << canvasName << ", NOT found ...";
|
|
//cout << endl;
|
|
}
|
|
}
|
|
canvasVector.empty();
|
|
}
|
|
//cout << endl;
|
|
|
|
// clean up
|
|
plotList.clear();
|
|
if (saxParser) {
|
|
delete saxParser;
|
|
saxParser = 0;
|
|
}
|
|
if (startupHandler) {
|
|
delete startupHandler;
|
|
startupHandler = 0;
|
|
}
|
|
if (msrHandler) {
|
|
delete msrHandler;
|
|
msrHandler = 0;
|
|
}
|
|
if (dataHandler) {
|
|
delete dataHandler;
|
|
dataHandler = 0;
|
|
}
|
|
if (runListCollection) {
|
|
delete runListCollection;
|
|
runListCollection = 0;
|
|
}
|
|
|
|
return 0;
|
|
}
|