--- calo/flight/FQLOOK/macros/FCaloQLOOK.cxx 2006/03/22 15:04:11 1.7 +++ calo/flight/FQLOOK/macros/FCaloQLOOK.cxx 2006/07/17 08:51:11 1.12 @@ -1,12 +1,19 @@ // // Check for possible errors and shows raw distribution of variables coming from the DSP (no calibrations needed) - Emiliano Mocchiutti // -// FCaloQLOOK.c version 1.06 (2006-03-22) +// FCaloQLOOK.c version 1.11 (2006-07-17) // // The only input needed is the path to the directory created by YODA for the data file you want to analyze. // // Changelog: // +// 1.09 - 1.11 (2006-07-17): Adapted to flight conditions. +// +// 1.07 - 1.09 (2006-05-29): Fixed bug in output filename when input is not in the form DW_YYMMDD_NNN. Bug in latchup alarm not coming from the status word, fixed. +// +// 1.06 - 1.07 (2006-05-23): Don't print warning in case of latchup not recognized from the status word, fixed. Added "expert" figures from 21 to 28 which appears only in the +// case of latchup alarm. +// // 1.05 - 1.06 (2006-03-22): Add optimize flag in compiling the script! // // 1.04 - 1.05 (2006-03-22): Corrected wrong .C files. @@ -62,21 +69,27 @@ } TString getFilename(const TString filename){ - const string fil = (const char*)filename; - Int_t posiz = fil.find("dw_"); - if ( posiz == -1 ) posiz = fil.find("DW_"); - if ( posiz == -1 ) return 0; - Int_t posiz2 = posiz+13; + // + const string fil = gSystem->BaseName(filename.Data()); + Int_t posiz = fil.find(".root"); + // TString file2; - stringcopy(file2,filename,posiz,posiz2); - TString pdat(".dat"); - stringappend(file2,pdat); + if ( posiz == -1 ){ + file2 = gSystem->BaseName(filename.Data()); + } else { + Int_t posiz2 = 0; + stringcopy(file2,gSystem->BaseName(filename.Data()),posiz2,posiz); + TString pdat(".dat"); + stringappend(file2,pdat); + }; return file2; } void FCaloQLOOK(TString filename, Int_t fromevent=0, Int_t toevent=0, TString outDir="", TString saveas = "ps"){ gStyle->SetPaperSize(19.,25.); const char* startingdir = gSystem->WorkingDirectory(); + // printf(" basename is %s \n",gSystem->BaseName(filename.Data())); + // printf(" getfilename is %s \n",getFilename(filename).Data()); if ( !strcmp(outDir.Data(),"") ) outDir = startingdir; // // @@ -101,7 +114,10 @@ Float_t ctshitthr = 0.65; Float_t cbasethr = 0.95; Float_t cdexythr = 0.995; + //Float_t cdexythr = 0.90; Float_t cdexycthr = 0.95; + Float_t h1rth = 0.90; + Int_t calevnth = 13; // pamela::calorimeter::CalorimeterEvent *ce = 0; pamela::EventHeader *eh = 0; @@ -176,6 +192,8 @@ TH1F *calev01; TH1F *calev23; TH1F *calev03; + TH1F *lupstw[4]; + TH1F *lup[4]; TH2D *calev2; h1 = new TH1F("C7","Strips hit, compress mode",100,0.,200.); @@ -185,9 +203,10 @@ hdiff->SetBit(TH1F::kCanRebin); Baseline = new TH1F("C9","baselines",100,0,3); Baseline->SetBit(TH1F::kCanRebin); - Dexy = new TH1F("C12","dexy",100,0.,37000.); - Dexyc = new TH1F("C10","dexyc",100,0,3); - Dexyc->SetBit(TH1F::kCanRebin); + Dexy = new TH1F("C12","dexy",100,0.,10000.); + Dexy->SetBit(TH1F::kCanRebin); + Dexyc = new TH1F("C10","dexyc",100,-100.,37000.); +// Dexyc->SetBit(TH1F::kCanRebin); Calstriphit = new TH1F("C11","calstriphit[1:4]",100,0.,200.); calev01 = new TH1F("C3","|calevnum(1)-calevnum(2)|",100,0,1); @@ -198,7 +217,24 @@ calev03->SetBit(TH1F::kCanRebin); calev2 = new TH2D("C2","calevnum(2)%iev",3000,0.,2.,100,0.,2.); calev2->SetBit(TH2D::kCanRebin); - + + stringstream oss; + stringstream noss; + for ( Int_t i=0; i<4; i++){ + oss.str(""); + oss << "OBT stw latch up section " << i; + noss.str(""); + noss << "C" << 21+i; + lupstw[i] = new TH1F(noss.str().c_str(),oss.str().c_str(),100,-1,1); + lupstw[i]->SetBit(TH1F::kCanRebin); + oss.str(""); + oss << "OBT no stw latch up section " << i; + noss.str(""); + noss << "C" << 25+i; + lup[i] = new TH1F(noss.str().c_str(),oss.str().c_str(),100,-1,1); + lup[i]->SetBit(TH1F::kCanRebin); + }; + // // run over each event and take out some variables // @@ -251,7 +287,8 @@ bool isRAW = 0; Int_t alldexy=0; Int_t alldexy2=0; - Int_t stri=0; + Int_t planebases=0; + // Int_t stri=0; Int_t fcheck = 0; Int_t cestw=0; Int_t cmask = 127 ; @@ -279,6 +316,8 @@ Float_t headc = 0.; Float_t headco = 0.; Bool_t h1rcheck = false; + Int_t h1rin = 0; + Int_t h1rout = 0; Int_t intshit = 0; Int_t outtshit = 0; Int_t incshit = 0; @@ -289,6 +328,21 @@ Int_t outdexy = 0; Int_t indexyc = 0; Int_t outdexyc = 0; + Int_t obt = 0; + Int_t minobt[4]; + Int_t maxobt[4]; + Int_t swminobt[4]; + Int_t swmaxobt[4]; + Bool_t firstobt[4]; + Bool_t swfirstobt[4]; + for ( Int_t i = 0; i<4; i++){ + minobt[i] = 0; + maxobt[i] = 0; + swminobt[i] = 0; + swmaxobt[i] = 0; + firstobt[i] = true; + swfirstobt[i] = true; + }; while ( i < maxevent+1){ tshit = 0; trshit = 0; @@ -298,9 +352,13 @@ ph = eh->GetPscuHeader(); headco = headc; headc = ph->GetCounter(); - calevn1 += (int)abs((int)(ce->calevnum[0]-ce->calevnum[1])); - calevn2 += (int)abs((int)(ce->calevnum[2]-ce->calevnum[3])); - calevn3 += (int)abs((int)(ce->calevnum[0]-ce->calevnum[3])); + obt = ph->GetOrbitalTime(); + if ( (int)abs((int)(ce->calevnum[0]-ce->calevnum[1])) ) calevn1++; + if ( (int)abs((int)(ce->calevnum[2]-ce->calevnum[3])) ) calevn2++; + if ( (int)abs((int)(ce->calevnum[0]-ce->calevnum[3])) ) calevn3++; + // calevn1 += (int)abs((int)(ce->calevnum[0]-ce->calevnum[1])); + // calevn2 += (int)abs((int)(ce->calevnum[2]-ce->calevnum[3])); + // calevn3 += (int)abs((int)(ce->calevnum[0]-ce->calevnum[3])); calev01->Fill(abs((int)(ce->calevnum[0]-ce->calevnum[1]))); calev23->Fill(abs((int)(ce->calevnum[2]-ce->calevnum[3]))); calev03->Fill(abs((int)(ce->calevnum[0]-ce->calevnum[3]))); @@ -386,23 +444,41 @@ bdone = 0; bl++; allbase = ce->base[l][ii][bl]; + // alldexy=0; + // alldexy2=0; + // stri=0; + // for (Int_t e = 0; e < 16 ; e++ ){ + // stri = e + 16 * bl; + // alldexy += (int)ce->dexyc[l][ii][stri]; + // alldexy2 += (int)ce->dexy[l][ii][stri]; + // }; + }; + // + if ( kk == 0 ){ + planebases = 0; alldexy=0; alldexy2=0; - stri=0; - for (Int_t e = 0; e < 16 ; e++ ){ - stri = e + 16 * bl; - alldexy += (int)ce->dexyc[l][ii][stri]; - alldexy2 += (int)ce->dexy[l][ii][stri]; + for (Int_t e = 0; e < 96 ; e++ ){ + if ( e < 6 ) planebases += (int)ce->base[l][ii][e]; + alldexy += (int)ce->dexyc[l][ii][e]; + alldexy2 += (int)ce->dexy[l][ii][e]; }; }; + // if ( !isRAW ) { // if ( !pdone ){ - if ( (ce->base[l][ii][bl]>32000 || ce->base[l][ii][bl] == 0 ) && ( alldexy > 512000 || alldexy == 0) && ce->perror[se] == 0 ) { + // if ( (ce->base[l][ii][bl]>32000 || ce->base[l][ii][bl] == 0 ) && ( alldexy > 512000 || alldexy == 0) && ce->perror[se] == 0 ) { + if ( (planebases>192000 || planebases == 0 ) && ( alldexy > 3072000 || alldexy == 0) && ce->perror[se] == 0 ) { pdone = 1; pshit[se][pl]++ ; - if ( (ce->stwerr[se] & (1 << 4)) == 0 ) lalarm[se]++; - lver[se][2]++ ; + if ( (ce->stwerr[se] & (1 << 4)) == 0 ) { + lalarm[se]++; + lup[se]->Fill(obt); + if ( firstobt[se] ) minobt[se] = obt; + if ( obt > maxobt[se] ) maxobt[se] = obt; + }; + lver[se][2]++ ; }; } // @@ -461,10 +537,16 @@ // } else { if ( !pdone ){ - if ( (alldexy2>512000 || alldexy2 == 0) && ce->perror[se] == 0 ) { + if ( ( alldexy2 > 3072000 || alldexy2 == 0) && ce->perror[se] == 0 ) { + // if ( (alldexy2>512000 || alldexy2 == 0) && ce->perror[se] == 0 ) { pdone = 1; pshit[se][pl]++ ; - if ( (ce->stwerr[se] & (1 << 4)) == 0 ) lalarm[se]++; + if ( (ce->stwerr[se] & (1 << 4)) == 0 ){ + lalarm[se]++; + lup[se]->Fill(obt); + if ( firstobt[se] ) minobt[se] = obt; + if ( obt > maxobt[se] ) maxobt[se] = obt; + }; lver[se][2]++ ; }; }; @@ -498,7 +580,12 @@ if ( cestw & (1 << 1) ) ver[k][5]++ ; if ( cestw & (1 << 2) ) ver[k][4]++ ; if ( cestw & (1 << 3) ) ver[k][3]++ ; - if ( cestw & (1 << 4) ) ver[k][2]++ ; + if ( cestw & (1 << 4) ){ + ver[k][2]++ ; + lupstw[k]->Fill(obt); + if ( swfirstobt[k] ) swminobt[k] = obt; + if ( obt > swmaxobt[k] ) swmaxobt[k] = obt; + }; if ( cestw & (1 << 5) ) ver[k][1]++ ; if ( cestw & (1 << 6) ) ver[k][0]++ ; }; @@ -520,30 +607,39 @@ trshit += rshit[k][kk]; }; }; - Calstriphit->Fill(cshit); - if ( (cshit > 0 && cshit < 25) || (cshit > 40 && cshit < 80) ){ - incshit++; - } else { - outcshit++; - }; - if ( tshit>0 ) h1->Fill(tshit); - if ( (tshit > 0 && tshit < 25) || (tshit > 40 && tshit < 80) ){ - intshit++; - } else { - outtshit++; + if (isCOMP || isFULL){ + Calstriphit->Fill(cshit); + // if ( (cshit > 0 && cshit < 25) || (cshit > 40 && cshit < 80) ){ + if ( (cshit > 10 && cshit < 100) ){ + incshit++; + } else { + outcshit++; + }; + // + if ( tshit>0 ) h1->Fill(tshit); + // if ( (tshit > 0 && tshit < 25) || (tshit > 40 && tshit < 80) ){ + if ( (tshit > 10 && tshit < 100) ){ + intshit++; + } else { + outtshit++; + }; }; if ( trshit>0 ) { h1r->Fill(trshit); if ( trshit < 4210 ){ - h1rcheck = true; + h1rout++; // printf("ma come... trshit %i \n",trshit); + } else { + h1rin++; }; }; if ( i%1000 == 0 && i > 0 ) printf("%iK\n",i/1000); i++; }; printf("\n"); - + if ( (float)h1rout/((float)h1rin+(float)h1rout) > h1rth ){ + h1rcheck = true; + }; // // output figures, first sheet: // @@ -563,6 +659,8 @@ t->DrawLatex(2.,99.,errore.str().c_str()); TPad *pd5; TPad *pd6; + TPad *pd7; + TPad *pd8; TPad *pad1; TPad *pad2; TPad *pad3; @@ -607,20 +705,20 @@ h1->Draw(); // h1max = h1->GetMaximum()*1.05; - Double_t xc[4] = {0.,25.,25.,0.}; + Double_t xc[4] = {10.,100.,100.,10.}; Double_t yc[4] = {0.,0.,h1max,h1max}; banda1 = new TPolyLine(4,xc,yc); banda1->SetLineColor(5); banda1->SetFillColor(5); banda1->SetLineWidth(1); banda1->Draw("fSAME"); - Double_t xd[4] = {40.,80.,80.,40.}; - Double_t yd[4] = {0.,0.,h1max,h1max}; - banda2 = new TPolyLine(4,xd,yd); - banda2->SetLineColor(5); - banda2->SetFillColor(5); - banda2->SetLineWidth(1); - banda2->Draw("fSAME"); + // Double_t xd[4] = {40.,80.,80.,40.}; + // Double_t yd[4] = {0.,0.,h1max,h1max}; + // banda2 = new TPolyLine(4,xd,yd); + // banda2->SetLineColor(5); + // banda2->SetFillColor(5); + // banda2->SetLineWidth(1); + //banda2->Draw("fSAME"); h1->Draw("SAME"); // figura->cd(); @@ -657,20 +755,20 @@ h1->SetYTitle("Number of events"); h1->Draw(); h1max = h1->GetMaximum()*1.05; - Double_t xe[4] = {0.,25.,25.,0.}; + Double_t xe[4] = {10.,100.,100.,10.}; Double_t ye[4] = {0.,0.,h1max,h1max}; banda1 = new TPolyLine(4,xe,ye); banda1->SetLineColor(5); banda1->SetFillColor(5); banda1->SetLineWidth(1); banda1->Draw("fSAME"); - Double_t xf[4] = {40.,80.,80.,40.}; - Double_t yf[4] = {0.,0.,h1max,h1max}; - banda2 = new TPolyLine(4,xf,yf); - banda2->SetLineColor(5); - banda2->SetFillColor(5); - banda2->SetLineWidth(1); - banda2->Draw("fSAME"); + // Double_t xf[4] = {40.,80.,80.,40.}; + // Double_t yf[4] = {0.,0.,h1max,h1max}; + // banda2 = new TPolyLine(4,xf,yf); + // banda2->SetLineColor(5); + // banda2->SetFillColor(5); + // banda2->SetLineWidth(1); + // banda2->Draw("fSAME"); h1->Draw("SAME"); }; if ( trshit !=0 ) { @@ -700,7 +798,7 @@ }; }; if ( !errorfull ) { - if ( calevn1 || calevn2 || calevn3 ) { + if ( calevn1 > calevnth || calevn2 > calevnth || calevn3 > calevnth ) { pd1 = new TPad("pd1","This is pad1",0.02,0.51,0.24,0.98,45); pd2 = new TPad("pd2","This is pad2",0.26,0.51,0.49,0.98,45); pd3 = new TPad("pd3","This is pad3",0.02,0.02,0.24,0.49,45); @@ -875,24 +973,25 @@ Dexyc->Draw("SAME"); // pd3->cd(); +// gPad->SetLogy(); Calstriphit->SetXTitle("Number of hit"); Calstriphit->SetYTitle("Number of events"); Calstriphit->Draw(); h1max = Calstriphit->GetMaximum()*1.05; - Double_t xg[4] = {0.,25.,25.,0.}; + Double_t xg[4] = {10.,100.,100.,10.}; Double_t yg[4] = {0.,0.,h1max,h1max}; banda1 = new TPolyLine(4,xg,yg); banda1->SetLineColor(5); banda1->SetFillColor(5); banda1->SetLineWidth(1); banda1->Draw("fSAME"); - Double_t xh[4] = {40.,80.,80.,40.}; - Double_t yh[4] = {0.,0.,h1max,h1max}; - banda2 = new TPolyLine(4,xh,yh); - banda2->SetLineColor(5); - banda2->SetFillColor(5); - banda2->SetLineWidth(1); - banda2->Draw("fSAME"); + // Double_t xh[4] = {40.,80.,80.,40.}; + // Double_t yh[4] = {0.,0.,h1max,h1max}; + // banda2 = new TPolyLine(4,xh,yh); + // banda2->SetLineColor(5); + // banda2->SetFillColor(5); + // banda2->SetLineWidth(1); + // banda2->Draw("fSAME"); Calstriphit->Draw("SAME"); // pd4->cd(); @@ -949,6 +1048,109 @@ Dexy->Draw("SAME"); }; // + TCanvas *figura3 = 0; + Bool_t printfigure3 = false; + for (Int_t i = 0; i<4; i++){ + if ( ver[i][2] || lver[i][2] ){ + printfigure3 = true; + break; + }; + }; + if ( printfigure3 ){ + figura3 = new TCanvas("Calorimeter_Detector_Report_2bis/3","Calorimeter_Detector_Report_2bis/3", 1100, 900); + figura3->SetFillColor(10); + figura3->Range(0,0,100,100); + errore.str(""); + errore << "EXPERT -- File: " << file; + errore << " "; + t=new TLatex(); + t->SetTextFont(32); + t->SetTextColor(1); + t->SetTextAlign(12); + t->SetTextSize(0.015); + t->DrawLatex(2.,99.,errore.str().c_str()); + pd1 = new TPad("pd1","This is pad1",0.02,0.51,0.49,0.73,45); + pd5 = new TPad("pd5","This is pad5",0.02,0.76,0.49,0.98,45); + pd2 = new TPad("pd2","This is pad2",0.51,0.51,0.98,0.73,45); + pd6 = new TPad("pd6","This is pad6",0.51,0.76,0.98,0.98,45); + pd3 = new TPad("pd3","This is pad3",0.02,0.02,0.49,0.23,45); + pd7 = new TPad("pd7","This is pad7",0.02,0.26,0.49,0.49,45); + pd4 = new TPad("pd4","This is pad4",0.51,0.02,0.98,0.23,45); + pd8 = new TPad("pd8","This is pad8",0.51,0.26,0.98,0.49,45); + figura3->cd(); + pd1->Range(0,0,100,100); + pd2->Range(0,0,100,100); + pd3->Range(0,0,100,100); + pd4->Range(0,0,100,100); + pd1->SetTicks(); + pd2->SetTicks(); + pd3->SetTicks(); + pd4->SetTicks(); + pd1->Draw(); + pd2->Draw(); + pd3->Draw(); + pd4->Draw(); + pd5->Range(0,0,100,100); + pd6->Range(0,0,100,100); + pd7->Range(0,0,100,100); + pd8->Range(0,0,100,100); + pd5->SetTicks(); + pd6->SetTicks(); + pd7->SetTicks(); + pd8->SetTicks(); + pd5->Draw(); + pd6->Draw(); + pd7->Draw(); + pd8->Draw(); + pd1->cd(); + lup[0]->SetAxisRange((Double_t)min(minobt[0],swminobt[0])*0.9,(Double_t)max(maxobt[0],swmaxobt[0])*1.1,"X"); + lup[0]->SetXTitle("OBT"); + lup[0]->SetYTitle("Number of events"); + lup[0]->Draw(); + pd5->cd(); + lupstw[0]->SetAxisRange((Double_t)min(minobt[0],swminobt[0])*0.9,(Double_t)max(maxobt[0],swmaxobt[0])*1.1,"X"); + // lupstw[0]->SetAxisRange((Double_t)swminobt[0]*0.9,(Double_t)swmaxobt[0]*1.1,"X"); + lupstw[0]->SetXTitle("OBT"); + lupstw[0]->SetYTitle("Number of events"); + lupstw[0]->Draw(); + pd2->cd(); + lup[1]->SetAxisRange((Double_t)min(minobt[1],swminobt[1])*0.9,(Double_t)max(maxobt[1],swmaxobt[1])*1.1,"X"); + // lup[1]->SetAxisRange((Double_t)minobt[1]*0.9,(Double_t)maxobt[1]*1.1,"X"); + lup[1]->SetXTitle("OBT"); + lup[1]->SetYTitle("Number of events"); + lup[1]->Draw(); + pd6->cd(); + lupstw[1]->SetAxisRange((Double_t)min(minobt[1],swminobt[1])*0.9,(Double_t)max(maxobt[1],swmaxobt[1])*1.1,"X"); + // lupstw[1]->SetAxisRange((Double_t)swminobt[1]*0.9,(Double_t)swmaxobt[1]*1.1,"X"); + lupstw[1]->SetXTitle("OBT"); + lupstw[1]->SetYTitle("Number of events"); + lupstw[1]->Draw(); + pd3->cd(); + lup[2]->SetAxisRange((Double_t)min(minobt[2],swminobt[2])*0.9,(Double_t)max(maxobt[2],swmaxobt[2])*1.1,"X"); + // lup[2]->SetAxisRange((Double_t)minobt[2]*0.9,(Double_t)maxobt[2]*1.1,"X"); + lup[2]->SetXTitle("OBT"); + lup[2]->SetYTitle("Number of events"); + lup[2]->Draw(); + pd7->cd(); + lupstw[2]->SetAxisRange((Double_t)min(minobt[2],swminobt[2])*0.9,(Double_t)max(maxobt[2],swmaxobt[2])*1.1,"X"); + // lupstw[2]->SetAxisRange((Double_t)swminobt[2]*0.9,(Double_t)swmaxobt[2]*1.1,"X"); + lupstw[2]->SetXTitle("OBT"); + lupstw[2]->SetYTitle("Number of events"); + lupstw[2]->Draw(); + pd4->cd(); + lup[3]->SetAxisRange((Double_t)min(minobt[3],swminobt[3])*0.9,(Double_t)max(maxobt[3],swmaxobt[3])*1.1,"X"); + // lup[3]->SetAxisRange((Double_t)minobt[3]*0.9,(Double_t)maxobt[3]*1.1,"X"); + lup[3]->SetXTitle("OBT"); + lup[3]->SetYTitle("Number of events"); + lup[3]->Draw(); + pd8->cd(); + lupstw[3]->SetAxisRange((Double_t)min(minobt[3],swminobt[3])*0.9,(Double_t)max(maxobt[3],swmaxobt[3])*1.1,"X"); + // lupstw[3]->SetAxisRange((Double_t)swminobt[3]*0.9,(Double_t)swmaxobt[3]*1.1,"X"); + lupstw[3]->SetXTitle("OBT"); + lupstw[3]->SetYTitle("Number of events"); + lupstw[3]->Draw(); + }; + // // output figures, report sheet: // TCanvas *rapporto= new TCanvas("Calorimeter_Detector_Report_3/3", "Calorimeter_Detector_Report_3/3", 1100, 900); @@ -1025,12 +1227,13 @@ check = true; } if (j == 2) { + // printf("boh! lalarm[%i] = %i \n",i,lalarm[i]); if ( lalarm[i] ){ errore.str(""); errore << "* Latch up: " << ver[i][j]; errore << " (" << lalarm[i]; errore << " NOT rec!): "; - t->DrawLatex(0.,70.,errore.str().c_str()); + t->DrawLatex(2.,70.,errore.str().c_str()); check = true; } else { errore.str(""); @@ -1101,7 +1304,7 @@ errore << "Missing section: " << ver[i][j]; errore << " time(s)"; t->DrawLatex(2.,50.,errore.str().c_str()); - check = true; + if ( ver[i][j] > 3 ) check = true; } if (j == 10) { errore.str(""); @@ -1115,7 +1318,7 @@ errore << "CRC error (data): " << ver[i][j]; errore << " time(s)"; t->DrawLatex(2.,38.,errore.str().c_str()); - check = true; + if ( ver[i][j] > 10 ) check = true; } if (j == 12) { errore.str(""); @@ -1228,14 +1431,25 @@ t->DrawLatex(60.,95.," OK! "); }; // - const string fil = (const char*)filename; - Int_t posiz = fil.find("dw_"); - if ( posiz == -1 ) posiz = fil.find("DW_"); - Int_t posiz2 = posiz+13; - TString file2; - stringcopy(file2,filename,posiz,posiz2); + // const string fil = (const char*)filename; + // Int_t posiz = fil.find("dw_"); + // if ( posiz == -1 ) posiz = fil.find("DW_"); + // Int_t posiz2 = posiz+13; + // TString file2; + // stringcopy(file2,filename,posiz,posiz2); + // + const string fil = gSystem->BaseName(filename.Data()); + Int_t posiz = fil.find(".root"); // + TString file2; + if ( posiz == -1 ){ + file2 = gSystem->BaseName(filename.Data()); + } else { + Int_t posiz2 = 0; + stringcopy(file2,gSystem->BaseName(filename.Data()),posiz2,posiz); + }; const char *figrec = file2; + // const char *outdir = outDir; stringstream figsave; stringstream figsave1; @@ -1244,33 +1458,50 @@ if ( !strcmp(format,"ps") ) { figsave.str(""); figsave << outdir << "/" ; - figsave << figrec << "_qlook."; + figsave << figrec << "_CaloQLOOK."; figsave << format << "("; rapporto->Print(figsave.str().c_str(),"Landscape"); figsave1.str(""); figsave1 << outdir << "/" ; - figsave1 << figrec << "_qlook."; + figsave1 << figrec << "_CaloQLOOK."; figsave1 << format; figura->Print(figsave1.str().c_str(),"Landscape"); figsave2.str(""); figsave2 << outdir << "/" ; - figsave2 << figrec << "_qlook."; - figsave2 << format << ")"; - figura2->Print(figsave2.str().c_str(),"Landscape"); + figsave2 << figrec << "_CaloQLOOK."; + if ( printfigure3 ){ + figsave2 << format; + figura2->Print(figsave2.str().c_str(),"Landscape"); + figsave2.str(""); + figsave2 << outdir << "/" ; + figsave2 << figrec << "_CaloQLOOK."; + figsave2 << format << ")"; + figura3->Print(figsave2.str().c_str(),"Landscape"); + } else { + figsave2 << format << ")";; + figura2->Print(figsave2.str().c_str(),"Landscape"); + }; } else { figsave.str(""); figsave << outdir << "/" ; - figsave << figrec << "_qlook1."; + figsave << figrec << "_CaloQLOOK1."; figsave << format; figura->SaveAs(figsave.str().c_str()); figsave.str(""); figsave << outdir << "/" ; - figsave << figrec << "_qlook2."; + figsave << figrec << "_CaloQLOOK2."; figsave << format; figura2->SaveAs(figsave.str().c_str()); + if ( printfigure3 ){ + figsave.str(""); + figsave << outdir << "/" ; + figsave << figrec << "_CaloQLOOK2bis."; + figsave << format; + figura3->SaveAs(figsave.str().c_str()); + }; figsave.str(""); figsave << outdir << "/" ; - figsave << figrec << "_qlook3."; + figsave << figrec << "_CaloQLOOK3."; figsave << format; rapporto->SaveAs(figsave.str().c_str()); };