/*************************************************************************** fourier.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 #include #include using namespace std; #include "TFile.h" #include "TFolder.h" #include "TH1F.h" #include "TLemRunHeader.h" #include "PMusrFourier.h" void fourier_syntax() { cout << endl << "usage: fourier "; cout << endl << " root input file"; cout << endl << endl; } int main(int argc, char *argv[]) { PDoubleVector data; double timeResolution = -1.0; double startTime = 0.0; double endTime = 0.0; if (argc != 2) { fourier_syntax(); return -1; } int histoNo = -1; cout << endl << ">> Which histo you would like to transform (0=hDecay00, ...): "; cin >> histoNo; // read file TFile f(argv[1], "READ"); if (f.IsZombie()) { cout << endl << "**ERROR** Couldn't open file " << argv[1] << endl << endl; return -1; } // get header info TFolder *folder; f.GetObject("RunInfo", folder); if (!folder) { cout << endl << "Couldn't obtain RunInfo from " << argv[1] << endl; f.Close(); return -1; } // read header and check if some missing run info need to be fed TLemRunHeader *runHeader = dynamic_cast(folder->FindObjectAny("TLemRunHeader")); // check if run header is valid if (!runHeader) { cout << endl << "Couldn't obtain run header info from ROOT file " << argv[1] << endl; f.Close(); return -1; } // get time resolution timeResolution = runHeader->GetTimeResolution(); // get number of histogramms int noOfHistos = runHeader->GetNHist(); if (noOfHistos < histoNo+1) { cout << endl << "**ERROR** Only " << noOfHistos << " No of histos present (you tried to get histo No " << histoNo << ")" << endl << endl; f.Close(); return -1; } // get t0's Double_t *t0 = runHeader->GetTimeZero(); char answer[128]; cout << endl << "t0 of histo No " << histoNo << " = " << t0[histoNo] << ", is this ok (y/n)? "; cin >> answer; if (strstr(answer, "n")) { cout << endl << "please enter the new t0: "; cin >> t0[histoNo]; } // read data --------------------------------------------------------- // check if histos folder is found f.GetObject("histos", folder); if (!folder) { cout << endl << "Couldn't obtain histos from " << argv[1] << endl; f.Close(); return -1; } // get data histo char histoName[32]; // read first the data which are NOT post pileup corrected sprintf(histoName, "hDecay%02d", histoNo); TH1F *histo = dynamic_cast(folder->FindObjectAny(histoName)); if (!histo) { cout << endl << "PRunDataHandler::ReadRootFile: Couldn't get histo " << histoName; f.Close(); return -1; } // rebinning? unsigned int rebin; cout << endl << ">> Rebinning: "; cin >> rebin; // fill data int start = (int)t0[histoNo]; cout << endl << "t0=" << start; cout << endl << "#bins=" << histo->GetNbinsX(); for (int i=start; iGetNbinsX(); i++) { data.push_back(histo->GetBinContent(i)); } f.Close(); cout << endl << ">> Start Time in (us): "; cin >> startTime; cout << endl << ">> End Time in (us): "; cin >> endTime; unsigned int zeroPaddingPower = 0; cout << endl << ">> Do you wish zero padding (y/n)? "; cin >> answer; if (strstr(answer, "y")) { cout << endl << ">> zero padding as 2^n. n = "; cin >> zeroPaddingPower; } bool estimateN0AndBkg = true; double N0, bkg, phase; cout << endl << ">> Do you want to give N0, Bkg, and phase explicitly (y/n)? "; cin >> answer; if (strstr(answer, "y")) { estimateN0AndBkg = false; cout << endl << ">> N0 = "; cin >> N0; cout << endl << ">> bkg = "; cin >> bkg; cout << endl << ">> phase = "; cin >> phase; } PMusrFourier fourier(F_SINGLE_HISTO, data, timeResolution, startTime, endTime, rebin, zeroPaddingPower, estimateN0AndBkg); if (fourier.IsValid()) { if (!estimateN0AndBkg) { fourier.SetN0(N0); fourier.SetBkg(bkg); fourier.SetPhase(phase); } cout << endl << ">> Do you wish to apodize your data (y/n)? "; cin >> answer; unsigned int apodizationTag = F_APODIZATION_NONE; if (strstr(answer, "y")) { cout << endl << ">> apodization (1=weak, 2=medium, 3=strong, 4=user) = "; cin >> apodizationTag; } fourier.Transform(apodizationTag, F_FILTER_NONE); } else { cout << endl << "**ERROR** something went wrong when invoking the PMusrFourier object ..."; cout << endl << endl; } return 0; }