Changeset 7404 for trunk/MagicSoft/Mars
- Timestamp:
- 11/15/05 17:06:04 (19 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mjobs/MJSpectrum.cc
r7403 r7404 76 76 #include "MTaskEnv.h" 77 77 #include "MFillH.h" 78 //#include "MHillasCalc.h"78 #include "MHillasCalc.h" 79 79 //#include "MSrcPosCalc.h" 80 80 #include "MContinue.h" … … 87 87 : fCut0(0),fCut1(0), fCut2(0), fCut3(0), fEstimateEnergy(0), 88 88 fRefill(kFALSE), fSimpleMode(kTRUE), fRawMc(kFALSE), 89 fNoThetaWeights(kFALSE) , fWeighting(kTRUE)89 fNoThetaWeights(kFALSE) 90 90 { 91 91 fName = name ? name : "MJSpectrum"; … … 601 601 f.DrawCopy("same"); 602 602 603 /*604 const Double_t p0 = f.GetParameter(0);605 const Double_t p1 = f.GetParameter(1);606 607 const Double_t e0 = f.GetParError(0);608 const Double_t e1 = f.GetParError(1);609 610 const Int_t np = TMath::Nint(TMath::Floor(TMath::Log10(p1)));611 const Double_t exp = TMath::Power(10, np);612 */613 603 TString str = FormString(f); 614 /* 615 str += Form("(%.2f#pm%.2f)10^{%d}", p1/exp, e1/exp, np); 616 str += Form("(\\frac{E}{TeV})^{%.2f#pm%.2f}", p0, e0); 617 str += "\\frac{ph}{TeVm^{2}s}"; 618 */ 604 619 605 TLatex tex; 620 606 tex.SetTextSize(0.045); … … 652 638 653 639 cout << "Effective On time: " << ontime << "s" << endl; 654 655 // for (int i=0; i<collarea.GetNbinsX(); i++)656 // collarea.SetBinError(i+1, 0);//collarea.GetBinError(i+1)/2);657 640 658 641 spectrum.SetDirectory(NULL); … … 689 672 weights.DrawCopy(); 690 673 691 //spectrum.Multiply(&weights); // Currentyl we skip the error distribution!674 //spectrum.Multiply(&weights); 692 675 spectrum.SetNameTitle("Flux", "Spectrum (after unfolding)"); 693 676 spectrum.SetBit(TH1::kNoStats); … … 695 678 for (int i=0; i<excess.GetNbinsX(); i++) 696 679 { 697 if (i+1>2) 698 { 699 //Float_t E = spectrum.GetXaxis()->GetBinWidth(i+1); 700 //Float_t c = log10(E)*3.012e-1+1.905e-1; 701 //spectrum.SetBinContent(i+1, spectrum.GetBinContent(i+1)*c); 702 //spectrum.SetBinContent(i+1, spectrum.GetBinContent(i+1)*c); 703 spectrum.SetBinError(i+1, spectrum.GetBinError(i+1) *weights.GetBinContent(i+1)); 704 spectrum.SetBinError(i+1, spectrum.GetBinError(i+1) *weights.GetBinContent(i+1)); 705 } 680 spectrum.SetBinContent(i+1, spectrum.GetBinContent(i+1)*weights.GetBinContent(i+1)); 681 spectrum.SetBinError(i+1, spectrum.GetBinError(i+1) *weights.GetBinContent(i+1)); 706 682 707 683 spectrum.SetBinContent(i+1, spectrum.GetBinContent(i+1)/spectrum.GetBinWidth(i+1)*1000); 708 spectrum.SetBinError(i+1, spectrum.GetBinError(i+1) /spectrum.GetBinWidth(i+1)*1000);684 spectrum.SetBinError(i+1, spectrum.GetBinError(i+1)/ spectrum.GetBinWidth(i+1)*1000); 709 685 } 710 686 … … 726 702 spectrum.SetBinError( i+1, spectrum.GetBinError(i+1) *spectrum.GetBinWidth(i+1)*spectrum.GetBinWidth(i+1)); 727 703 } 704 705 // Display dN/dE*E^2 for conveinience 728 706 fDisplay->AddTab("Check"); 729 707 gPad->SetLogx(); … … 741 719 c1.cd(4); 742 720 return FitSpectrum(*spec); 743 /* 721 722 /* 744 723 TF1 f("f", "[1]*(x/1e3)^[0]", 10, 3e4); 745 724 f.SetParameter(0, -2.87); 746 725 f.SetParameter(1, 1.9e-6); 747 f.SetLineColor(k Blue);726 f.SetLineColor(kGreen); 748 727 spectrum.Fit(&f, "NIM", "", 100, 5000); 749 728 f.DrawCopy("same"); … … 773 752 TArrayD res(2); 774 753 res[0] = f.GetParameter(0); 775 res[1] = f.GetParameter(1);*/ 776 754 res[1] = f.GetParameter(1); 755 756 return res; 757 */ 777 758 /* 778 759 // Plot other spectra from Whipple … … 807 788 f.SetLineStyle(kDashed); 808 789 f.DrawCopy("same"); 809 return res;810 790 */ 811 791 } … … 870 850 // Calls PlotSame 871 851 // 872 //#include <TSpline.h> 873 Bool_t MJSpectrum::DisplaySize(MParList &plist, Double_t scale, TH1D &result) const 852 Bool_t MJSpectrum::DisplaySize(MParList &plist, Double_t scale) const 874 853 { 875 854 *fLog << inf << "Reading from file: " << fPathIn << endl; … … 890 869 } 891 870 892 TH1 D*excess = (TH1D*)arr.FindObjectInCanvas("Excess", "TH1D", "Hist");871 TH1 *excess = (TH1D*)arr.FindObjectInCanvas("Excess", "TH1D", "Hist"); 893 872 if (!excess) 894 873 return kFALSE; … … 906 885 907 886 excess->SetTitle("Excess events vs Size (data/black, mc/blue)"); 908 excess = (TH1D*)excess->DrawCopy("E2");887 excess = excess->DrawCopy("E2"); 909 888 // Don't do this on the original object! 910 889 excess->SetStats(kFALSE); … … 918 897 if ((o=plist.FindObject("ExcessMC"))) 919 898 { 920 TH1 *histsel = (TH1 D*)o->FindObject("");899 TH1 *histsel = (TH1F*)o->FindObject(""); 921 900 if (histsel) 922 901 { 923 // Calculate the weights such that the number of total924 // MC events after cuts will stay constant925 926 /*927 Int_t first = -1;928 for (int i=0; i<excess->GetNbinsX(); i++)929 if (excess->GetBinContent(i+1)>0)930 {931 first = i+1;932 break;933 }934 935 Int_t last = -1;936 for (int i=excess->GetNbinsX(); i>0; i--)937 if (excess->GetBinContent(i)>0)938 {939 last = i;940 break;941 }*/942 /*943 Int_t first = 1;944 Int_t last = excess->GetNbinsX();945 946 const Double_t xmin = TMath::Log10(excess->GetBinLowEdge(first));947 const Double_t xmax = TMath::Log10(excess->GetBinLowEdge(last+1));948 const Int_t xnum = last-first+1;949 950 // Double_t xmin = TMath::Log10(excess->GetXaxis()->GetXmin());951 // Double_t xmax = TMath::Log10(excess->GetXaxis()->GetXmax());952 // Int_t xnum = excess->GetNbinsX();953 954 TArrayD arr1(xnum);955 TArrayD arr2(xnum);956 for (int i=0; i<xnum; i++)957 {958 Double_t v1 = excess->GetBinContent(i+first);959 Double_t v2 = histsel->GetBinContent(i+first);960 arr1[i] = v1<1 ? -1 : TMath::Log10(v1);961 arr2[i] = v2<1 ? -1 : TMath::Log10(v2);962 }963 cout << endl << endl;964 965 TSpline5 sp1("Excess", xmin, xmax, arr1.GetArray(), xnum+1);966 TSpline5 sp2("MC", xmin, xmax, arr2.GetArray(), xnum+1);967 968 MBinning bins(xnum*5, TMath::Power(10, xmin), TMath::Power(10, xmax), "", "log");969 bins.Apply(result);970 971 for (int i=0; i<result.GetNbinsX(); i++)972 {973 Double_t lo = result.GetXaxis()->GetBinLowEdge(i+1);974 Double_t up = result.GetXaxis()->GetBinUpEdge(i+1);975 976 Double_t x = TMath::Log10(lo*up)/2;977 Double_t v1 = sp1.Eval(x);978 Double_t v2 = sp2.Eval(x);979 Double_t rc = v1<-0.9 || v2<-0.9 ? 0 : TMath::Power(10, v1-v2);980 result.SetBinContent(i+1, rc);981 }982 */983 excess->Copy(result);984 result.Divide(histsel);985 result.SetDirectory(0);986 987 // Apply additional absolute scale factor988 902 if (scale<0) 989 903 scale = excess->Integral()/histsel->Integral(); … … 996 910 histsel->SetStats(kFALSE); 997 911 998 // Do some Chi^2 and Kolmogorov tests999 912 fLog->Separator("Kolmogorov Test"); 1000 913 histsel->KolmogorovTest(excess, "DX"); … … 1002 915 const Double_t p = histsel->Chi2Test(excess, "P"); 1003 916 1004 // Plot result1005 917 TLatex tex; 1006 918 tex.SetBit(TLatex::kTextNDC); … … 1024 936 c.cd(6); 1025 937 PlotSame(arr, plist, "Width", "PostCut", "MHHillasMCPost", scale); 1026 1027 return kTRUE;1028 }1029 1030 Bool_t MJSpectrum::DisplaySpectrumW(TH1D &energy0, TH1 &energy, TH1 &hsize, TH1D &weights, TH2D &hall, Double_t scale, TArrayD &res) const1031 {1032 *fLog << inf << "Reading from file: " << fPathIn << endl;1033 1034 TFile file(fPathIn, "READ");1035 if (!file.IsOpen())1036 {1037 *fLog << err << dbginf << "ERROR - Could not open file " << fPathIn << endl;1038 return kFALSE;1039 }1040 1041 file.cd();1042 MStatusArray arr;1043 if (arr.Read()<=0)1044 {1045 *fLog << "MStatusDisplay not found in file... abort." << endl;1046 return kFALSE;1047 }1048 1049 TH1D *exc = (TH1D*)arr.FindObjectInCanvas("Excess", "TH1D", "Hist");1050 if (!exc)1051 return kFALSE;1052 1053 // energy: energy distribution after weighting1054 // energy0: energy distribution before weighting1055 // weights: weights to weight events depending on their size1056 1057 TCanvas &c = fDisplay->AddTab("SpectrumW");1058 c.Divide(3,2);1059 c.cd(1);1060 gPad->SetBorderMode(0);1061 gPad->SetLogx();1062 gPad->SetLogy();1063 gPad->SetGrid();1064 1065 TH1D *e = (TH1D*)exc->DrawCopy("E2");1066 // Don't do this on the original object!1067 e->SetName("ExcessData");1068 e->SetTitle("Excess events vs Size (data/black, mc/blue)");1069 e->SetDirectory(0);1070 e->SetStats(kFALSE);1071 e->SetBit(TH1::kNoStats);1072 e->ResetBit(TH1::kNoTitle);1073 e->SetMarkerStyle(kFullDotMedium);1074 e->SetFillColor(kBlack);1075 e->SetFillStyle(0);1076 e->SetName("Excess ");1077 e->SetDirectory(0);1078 1079 e = (TH1D*)hsize.DrawCopy("E1 same");1080 // Don't do this on the original object!1081 e->SetName("ExcessMC");1082 e->SetDirectory(0);1083 e->SetBit(kCanDelete);1084 e->SetBit(TH1::kNoStats);1085 e->ResetBit(TH1::kNoTitle);1086 e->SetLineColor(kBlue);1087 e->SetStats(kFALSE);1088 1089 c.cd(2);1090 gPad->SetBorderMode(0);1091 gPad->SetLogx();1092 gPad->SetGrid();1093 1094 weights.SetName("WeightsSize");1095 weights.SetDirectory(0);1096 weights.SetBit(TH1::kNoStats);1097 weights.ResetBit(TH1::kNoTitle);1098 weights.SetTitle("Size weights: size(data)/size(mc)");1099 weights.DrawCopy();1100 1101 c.cd(4);1102 gPad->SetBorderMode(0);1103 gPad->SetLogx();1104 gPad->SetLogy();1105 gPad->SetGrid();1106 energy.SetBit(TH1::kNoStats);1107 energy.ResetBit(TH1::kNoTitle);1108 energy.SetTitle("Normalized energy distribution before (black) and after (blue) weighting");1109 energy.SetLineColor(kBlue);1110 TH1 *he = energy.DrawCopy();1111 TH1 *hf = energy0.DrawCopy("same");1112 he->Scale(1./he->Integral());1113 hf->Scale(1./hf->Integral());1114 he->SetName("EnergyOrig");1115 hf->SetName("EnergyWeighted");1116 he->SetDirectory(0);1117 hf->SetDirectory(0);1118 1119 c.cd(5);1120 gPad->SetBorderMode(0);1121 gPad->SetLogx();1122 gPad->SetGrid();1123 energy0.SetBit(TH1::kNoStats);1124 energy0.ResetBit(TH1::kNoTitle);1125 energy0.SetName("WeightsEnergy");1126 energy0.SetTitle("Energy weights: E(before weighting)/E(after weighting)");1127 energy0.SetDirectory(0);1128 energy0.Divide(&energy);1129 energy0.DrawCopy();1130 1131 c.cd(3);1132 gPad->SetBorderMode(0);1133 gPad->SetLogx();1134 gPad->SetLogy();1135 gPad->SetGrid();1136 1137 TH1D *h1 = (TH1D*)hall.ProjectionY("ProjAllY", -1, 9999, "E");1138 h1->SetTitle("Normalized spectrum before and after Energy weights applied");1139 h1->SetDirectory(NULL);1140 h1->SetXTitle("E [GeV]");1141 h1->SetBit(kCanDelete);1142 h1->SetBit(TH1::kNoStats);1143 he = h1->DrawCopy();1144 h1->SetLineColor(kBlue);1145 // Convert the mc spectrum before weights to the mc spectrum after weights1146 // Therefor weights after/before are applied1147 h1->Divide(&energy0);1148 hf = h1->DrawCopy("same");1149 he->Scale(1./he->GetBinContent(he->GetNbinsX()/2));1150 hf->Scale(1./hf->GetBinContent(hf->GetNbinsX()/2));1151 he->SetName("SpectrumOrig");1152 hf->SetName("SpectrumWeighted");1153 he->SetDirectory(0);1154 hf->SetDirectory(0);1155 1156 c.cd(6);1157 gPad->SetBorderMode(0);1158 gPad->SetLogx();1159 gPad->SetLogy();1160 gPad->SetGrid();1161 1162 h1->SetName("Spectrum");1163 h1->SetTitle("Spectrum");1164 h1->SetXTitle("E [GeV]");1165 h1->SetYTitle("dN/dE [N/TeVsm^{2}]");1166 h1->SetDirectory(0);1167 h1->Scale(1./scale);1168 1169 for (int i=0; i<h1->GetNbinsX(); i++)1170 {1171 h1->SetBinContent(i+1, h1->GetBinContent(i+1)/h1->GetBinWidth(i+1)*1000);1172 h1->SetBinError( i+1, h1->GetBinError(i+1) /h1->GetBinWidth(i+1)*1000);1173 }1174 1175 TH1D *h2 = (TH1D*)h1->DrawCopy();1176 res = FitSpectrum(*h2);1177 1178 // Calculate and Display Spectrum * E^21179 TCanvas *c1 = fDisplay->GetCanvas("Check");1180 if (c1)1181 {1182 c1->cd();1183 gPad->SetLogx();1184 gPad->SetLogy();1185 gPad->SetGrid();1186 1187 for (int i=0; i<h1->GetNbinsX(); i++)1188 {1189 h1->SetBinContent(i+1, h1->GetBinContent(i+1)*h1->GetBinWidth(i+1)*h1->GetBinWidth(i+1));1190 h1->SetBinError( i+1, h1->GetBinError(i+1) *h1->GetBinWidth(i+1)*h1->GetBinWidth(i+1));1191 }1192 h1->SetName("FluxW");1193 h1->SetTitle("Differential flux times E^{2}");1194 h1->SetDirectory(0);1195 h1->SetYTitle("E^{2}dN/dE [N TeV/sm^{2}]");1196 h1->SetLineColor(kBlue);1197 h1->SetMarkerColor(kBlue);1198 h1->SetMarkerStyle(kFullDotMedium);1199 h1->Draw("same");1200 }1201 938 1202 939 return kTRUE; … … 1305 1042 // ------------------------- Final loop -------------------------- 1306 1043 1307 TH1D weights; 1308 TH1D energy0; 1309 weights.SetDirectory(0); 1310 1311 const Int_t n = fWeighting ? 2 : 1; 1312 for (int i=0; i<n; i++) 1313 { 1314 *fLog << endl; 1315 fLog->Separator("Calculate efficiencies"); 1316 *fLog << endl; 1317 1318 if (i==1) 1319 weight.SetWeightsSize(&weights); 1320 1321 1322 MTaskList tlist2; 1323 plist.Replace(&tlist2); 1324 1325 MReadMarsFile read("Events"); 1326 read.DisableAutoScheme(); 1327 set.AddFilesOn(read); 1328 1329 // Selector to get correct (final) theta-distribution 1330 temp1.SetXTitle("MPointingPos.fZd"); 1331 1332 MH3 mh3(temp1); 1333 1334 MFEventSelector2 sel2(mh3); 1335 sel2.SetHistIsProbability(); 1336 1337 MContinue contsel(&sel2); 1338 contsel.SetInverted(); 1339 1340 //*** // Get correct source position 1341 //*** MSrcPosCalc calc; 1342 //*** 1343 //*** // Calculate corresponding Hillas parameters 1344 //*** MHillasCalc hcalc1; 1345 //*** MHillasCalc hcalc2("MHillasCalcAnti"); 1346 //*** hcalc1.SetFlags(MHillasCalc::kCalcHillasSrc); 1347 //*** hcalc2.SetFlags(MHillasCalc::kCalcHillasSrc); 1348 //*** hcalc2.SetNameHillasSrc("MHillasSrcAnti"); 1349 //*** hcalc2.SetNameSrcPosCam("MSrcPosAnti"); 1350 1351 // Fill collection area and energy estimator (unfolding) 1352 // Make sure to use the same binning for MHCollectionArea and MHEnergyEst 1353 MHCollectionArea area; 1354 area.SetHistAll(fSimpleMode ? hist : (TH2D&)mh1.GetHist()); 1355 MHEnergyEst hest; 1356 1357 MFillH fill3(&area, "", "FillCollectionArea"); 1358 MFillH fill4(&hest, "", "FillEnergyEst"); 1359 MFillH fill5("MHThreshold", "", "FillThreshold"); 1360 fill3.SetWeight(); 1361 fill4.SetWeight(); 1362 fill5.SetWeight(); 1363 fill3.SetNameTab("ColArea"); 1364 fill4.SetNameTab("E-Est"); 1365 fill5.SetNameTab("Threshold"); 1366 1367 MH3 hsize("MHillas.fSize"); 1368 hsize.SetName("ExcessMC"); 1369 hsize.Sumw2(); 1370 1371 MH3 energy("MMcEvt.fEnergy"); 1372 energy.SetName("EnergyEst"); // FIXME: Should be EnergyMC, but binning has name EnergyEst 1373 energy.SetLogy(); 1374 energy.Sumw2(); 1375 1376 MBinning bins(size, "BinningExcessMC"); 1377 plist.AddToList(&hsize); 1378 plist.AddToList(&energy); 1379 plist.AddToList(&bins); 1380 1381 MFillH fill1a("MHHillasMCPre [MHHillas]", "MHillas", "FillHillasPre"); 1382 MFillH fill2a("MHHillasMCPost [MHHillas]", "MHillas", "FillHillasPost"); 1383 MFillH fill3a("MHVsSizeMCPost [MHVsSize]", "MHillasSrc", "FillVsSizePost"); 1384 MFillH fill4a("MHHilExtMCPost [MHHillasExt]", "MHillasSrc", "FillHilExtPost"); 1385 MFillH fill5a("MHHilSrcMCPost [MHHillasSrc]", "MHillasSrc", "FillHilSrcPost"); 1386 MFillH fill6a("MHImgParMCPost [MHImagePar]", "MImagePar", "FillImgParPost"); 1387 MFillH fill7a("MHNewParMCPost [MHNewImagePar]", "MNewImagePar", "FillNewParPost"); 1388 MFillH fill8a("ExcessMC [MH3]", "", "FillExcessMC"); 1389 MFillH fill9a("EnergyEst [MH3]", "", "FillEnergy"); 1390 fill1a.SetNameTab("PreCut"); 1391 fill2a.SetNameTab("PostCut"); 1392 fill3a.SetNameTab("VsSize"); 1393 fill4a.SetNameTab("HilExt"); 1394 fill5a.SetNameTab("HilSrc"); 1395 fill6a.SetNameTab("ImgPar"); 1396 fill7a.SetNameTab("NewPar"); 1397 fill9a.SetNameTab("Energy"); 1398 fill8a.SetBit(MFillH::kDoNotDisplay); 1399 fill9a.SetBit(MFillH::kDoNotDisplay); 1400 fill1a.SetWeight(); 1401 fill2a.SetWeight(); 1402 fill3a.SetWeight(); 1403 fill4a.SetWeight(); 1404 fill5a.SetWeight(); 1405 fill6a.SetWeight(); 1406 fill7a.SetWeight(); 1407 fill8a.SetWeight(); 1408 fill9a.SetWeight(); 1409 1410 MEnergyEstimate est; 1411 MTaskEnv taskenv1("EstimateEnergy"); 1412 taskenv1.SetDefault(fEstimateEnergy ? fEstimateEnergy : &est); 1413 1414 if (i==1) 1415 { 1416 est.SetName("SetEnergyMC"); 1417 est.SetRule("MMcEvt.fEnergy"); 1418 } 1419 1420 tlist2.AddToList(&read); 1421 if (!fRawMc && fNoThetaWeights) 1422 tlist2.AddToList(&contsel); 1423 //*** tlist2.AddToList(&calc); 1424 //*** tlist2.AddToList(&hcalc1); 1425 //*** tlist2.AddToList(&hcalc2); 1426 tlist2.AddToList(&weight); 1427 if (i==n-1) 1428 tlist2.AddToList(&fill1a); 1429 tlist2.AddToList(fCut0); 1430 tlist2.AddToList(fCut1); 1431 tlist2.AddToList(fCut2); 1432 tlist2.AddToList(fCut3); 1433 tlist2.AddToList(i==1 ? (MTask*)&est : (MTask*)&taskenv1); 1434 tlist2.AddToList(&fill3); 1435 if (i==0) 1436 tlist2.AddToList(&fill4); 1437 tlist2.AddToList(&fill5); 1438 if (i==n-1) 1439 { 1440 tlist2.AddToList(&fill2a); 1441 tlist2.AddToList(&fill3a); 1442 tlist2.AddToList(&fill4a); 1443 tlist2.AddToList(&fill5a); 1444 tlist2.AddToList(&fill6a); 1445 tlist2.AddToList(&fill7a); 1446 } 1447 tlist2.AddToList(&fill8a); 1448 tlist2.AddToList(&fill9a); 1449 1450 MEvtLoop loop2("FillMonteCarlo"); // ***** fName ***** 1451 loop2.SetParList(&plist); 1452 loop2.SetDisplay(fDisplay); 1453 loop2.SetLogStream(fLog); 1454 1455 //***<<<<<<< MJSpectrum.cc 1456 if (!SetupEnv(loop2)) 1457 return kFALSE; 1458 //***======= 1459 //*** MFEventSelector2 sel2(mh3); 1460 //*** sel2.SetHistIsProbability(); 1461 //*** 1462 //*** MContinue contsel(&sel2); 1463 //*** contsel.SetInverted(); 1464 //*** 1465 //*** // Get correct source position 1466 //*** //MSrcPosCalc calc; 1467 //*** 1468 //*** // Calculate corresponding Hillas parameters 1469 //*** /* 1470 //*** MHillasCalc hcalc1; 1471 //*** MHillasCalc hcalc2("MHillasCalcAnti"); 1472 //*** hcalc1.SetFlags(MHillasCalc::kCalcHillasSrc); 1473 //*** hcalc2.SetFlags(MHillasCalc::kCalcHillasSrc); 1474 //*** hcalc2.SetNameHillasSrc("MHillasSrcAnti"); 1475 //*** hcalc2.SetNameSrcPosCam("MSrcPosAnti"); 1476 //*** */ 1477 //*** 1478 //*** // Fill collection area and energy estimator (unfolding) 1479 //*** // Make sure to use the same binning for MHCollectionArea and MHEnergyEst 1480 //*** MHCollectionArea area; 1481 //*** area.SetHistAll(fSimpleMode ? hist : (TH2D&)mh1.GetHist()); 1482 //*** MHEnergyEst hest; 1483 //*** 1484 //*** MFillH fill3(&area, "", "FillCollectionArea"); 1485 //*** MFillH fill4(&hest, "", "FillEnergyEst"); 1486 //*** MFillH fill5("MHThreshold", "", "FillThreshold"); 1487 //*** fill3.SetWeight(); 1488 //*** fill4.SetWeight(); 1489 //*** fill5.SetWeight(); 1490 //*** fill3.SetNameTab("ColArea"); 1491 //*** fill4.SetNameTab("E-Est"); 1492 //*** fill5.SetNameTab("Threshold"); 1493 //*** 1494 //*** MH3 hsize("MHillas.fSize"); 1495 //*** hsize.SetName("ExcessMC"); 1496 //*** hsize.Sumw2(); 1497 //*** 1498 //*** MBinning bins(size, "BinningExcessMC"); 1499 //*** plist.AddToList(&hsize); 1500 //*** plist.AddToList(&bins); 1501 //*** 1502 //*** MFillH fill1a("MHHillasMCPre [MHHillas]", "MHillas", "FillHillasPre"); 1503 //*** MFillH fill2a("MHHillasMCPost [MHHillas]", "MHillas", "FillHillasPost"); 1504 //*** MFillH fill3a("MHVsSizeMCPost [MHVsSize]", "MHillasSrc", "FillVsSizePost"); 1505 //*** MFillH fill4a("MHHilExtMCPost [MHHillasExt]", "MHillasSrc", "FillHilExtPost"); 1506 //*** MFillH fill5a("MHHilSrcMCPost [MHHillasSrc]", "MHillasSrc", "FillHilSrcPost"); 1507 //*** MFillH fill6a("MHImgParMCPost [MHImagePar]", "MImagePar", "FillImgParPost"); 1508 //*** MFillH fill7a("MHNewParMCPost [MHNewImagePar]", "MNewImagePar", "FillNewParPost"); 1509 //*** MFillH fill8a("ExcessMC [MH3]", "", "FillExcessMC"); 1510 //*** fill1a.SetNameTab("PreCut"); 1511 //*** fill2a.SetNameTab("PostCut"); 1512 //*** fill3a.SetNameTab("VsSize"); 1513 //*** fill4a.SetNameTab("HilExt"); 1514 //*** fill5a.SetNameTab("HilSrc"); 1515 //*** fill6a.SetNameTab("ImgPar"); 1516 //*** fill7a.SetNameTab("NewPar"); 1517 //*** fill8a.SetBit(MFillH::kDoNotDisplay); 1518 //*** fill1a.SetWeight(); 1519 //*** fill2a.SetWeight(); 1520 //*** fill3a.SetWeight(); 1521 //*** fill4a.SetWeight(); 1522 //*** fill5a.SetWeight(); 1523 //*** fill6a.SetWeight(); 1524 //*** fill7a.SetWeight(); 1525 //*** fill8a.SetWeight(); 1526 //***>>>>>>> 1.17 1527 1528 if (!loop2.Eventloop(fMaxEvents)) 1529 { 1530 *fLog << err << GetDescriptor() << ": Processing of MC-data failed." << endl; 1531 return kFALSE; 1532 } 1533 1534 //***<<<<<<< MJSpectrum.cc 1535 if (!loop2.GetDisplay()) 1536 { 1537 *fLog << err << GetDescriptor() << ": Execution stopped by user." << endl; 1538 return kFALSE; 1539 } 1540 //***======= 1541 //*** tlist2.AddToList(&read); 1542 //*** if (!fRawMc && fNoThetaWeights) 1543 //*** tlist2.AddToList(&contsel); 1544 //*** //tlist2.AddToList(&calc); 1545 //*** //tlist2.AddToList(&hcalc1); 1546 //*** //tlist2.AddToList(&hcalc2); 1547 //*** tlist2.AddToList(&weight); 1548 //*** tlist2.AddToList(&fill1a); 1549 //*** tlist2.AddToList(fCut0); 1550 //*** tlist2.AddToList(fCut1); 1551 //*** tlist2.AddToList(fCut2); 1552 //*** tlist2.AddToList(fCut3); 1553 //*** tlist2.AddToList(&taskenv1); 1554 //*** tlist2.AddToList(&fill3); 1555 //*** tlist2.AddToList(&fill4); 1556 //*** tlist2.AddToList(&fill5); 1557 //*** tlist2.AddToList(&fill2a); 1558 //*** tlist2.AddToList(&fill3a); 1559 //*** tlist2.AddToList(&fill4a); 1560 //*** tlist2.AddToList(&fill5a); 1561 //*** tlist2.AddToList(&fill6a); 1562 //*** tlist2.AddToList(&fill7a); 1563 //*** tlist2.AddToList(&fill8a); 1564 //*** //tlist2.AddToList(&fill9a); 1565 //*** 1566 //*** MEvtLoop loop2("FillMonteCarlo"); // ***** fName ***** 1567 //*** loop2.SetParList(&plist); 1568 //*** loop2.SetDisplay(fDisplay); 1569 //*** loop2.SetLogStream(fLog); 1570 //***>>>>>>> 1.17 1571 1572 gLog.Separator("Energy Estimator"); 1573 if (plist.FindObject("EstimateEnergy")) 1574 plist.FindObject("EstimateEnergy")->Print(); 1575 1576 gLog.Separator("Spectrum"); 1577 1578 // -------------------------- Spectrum ---------------------------- 1579 1580 1581 TArrayD res; 1582 if (i==0) 1583 { 1584 // Calculate and display spectrum (N/TeVsm^2 at 1TeV) 1585 res = DisplaySpectrum(area, excess, hest, ontime); 1586 1587 ((TH1D&)energy.GetHist()).Copy(energy0); 1588 } 1589 else 1590 { 1591 const Double_t scale = ontime*area.GetCollectionAreaAbs(); 1592 if (!DisplaySpectrumW(energy0, energy.GetHist(), hsize.GetHist(), weights, fSimpleMode ? hist : (TH2D&)mh1.GetHist(), scale, res)) 1593 return kFALSE; 1594 } 1595 1596 // Spectrum fitted (convert res[1] from TeV to GeV) 1597 TF1 flx("flx", Form("%e*pow(x/1000, %f)", res[1]/1000, res[0])); 1598 1599 // Number of events this spectrum would produce per s and m^2 1600 Double_t n = flx.Integral(weight.GetEnergyMin(), weight.GetEnergyMax()); 1601 1602 // scale with effective collection area to get the event rate (N/s) 1603 // scale with the effective observation time to absolute observed events 1604 n *= area.GetCollectionAreaAbs()*ontime; // N 1605 1606 // Now calculate the scale factor from the number of events 1607 // produced and the number of events which should have been 1608 // observed with our telescope in the time ontime 1609 const Double_t scale = i==0 ? n/area.GetEntries() : 1; 1610 1611 // Print normalization constant 1612 cout << "MC normalization factor: " << scale << endl; 1613 1614 // Overlay normalized plots, and calculate weights for second loop 1615 DisplaySize(plist, scale, weights); 1616 } 1044 *fLog << endl; 1045 fLog->Separator("Calculate efficiencies"); 1046 *fLog << endl; 1047 1048 MTaskList tlist2; 1049 plist.Replace(&tlist2); 1050 1051 MReadMarsFile read("Events"); 1052 read.DisableAutoScheme(); 1053 set.AddFilesOn(read); 1054 1055 // Selector to get correct (final) theta-distribution 1056 temp1.SetXTitle("MPointingPos.fZd"); 1057 1058 MH3 mh3(temp1); 1059 1060 MFEventSelector2 sel2(mh3); 1061 sel2.SetHistIsProbability(); 1062 1063 MContinue contsel(&sel2); 1064 contsel.SetInverted(); 1065 1066 // Get correct source position 1067 //MSrcPosCalc calc; 1068 1069 // Calculate corresponding Hillas parameters 1070 /* 1071 MHillasCalc hcalc1; 1072 MHillasCalc hcalc2("MHillasCalcAnti"); 1073 hcalc1.SetFlags(MHillasCalc::kCalcHillasSrc); 1074 hcalc2.SetFlags(MHillasCalc::kCalcHillasSrc); 1075 hcalc2.SetNameHillasSrc("MHillasSrcAnti"); 1076 hcalc2.SetNameSrcPosCam("MSrcPosAnti"); 1077 */ 1078 1079 // Fill collection area and energy estimator (unfolding) 1080 // Make sure to use the same binning for MHCollectionArea and MHEnergyEst 1081 MHCollectionArea area; 1082 area.SetHistAll(fSimpleMode ? hist : (TH2D&)mh1.GetHist()); 1083 MHEnergyEst hest; 1084 1085 MFillH fill3(&area, "", "FillCollectionArea"); 1086 MFillH fill4(&hest, "", "FillEnergyEst"); 1087 MFillH fill5("MHThreshold", "", "FillThreshold"); 1088 fill3.SetWeight(); 1089 fill4.SetWeight(); 1090 fill5.SetWeight(); 1091 fill3.SetNameTab("ColArea"); 1092 fill4.SetNameTab("E-Est"); 1093 fill5.SetNameTab("Threshold"); 1094 1095 MH3 hsize("MHillas.fSize"); 1096 hsize.SetName("ExcessMC"); 1097 hsize.Sumw2(); 1098 1099 MBinning bins(size, "BinningExcessMC"); 1100 plist.AddToList(&hsize); 1101 plist.AddToList(&bins); 1102 1103 MFillH fill1a("MHHillasMCPre [MHHillas]", "MHillas", "FillHillasPre"); 1104 MFillH fill2a("MHHillasMCPost [MHHillas]", "MHillas", "FillHillasPost"); 1105 MFillH fill3a("MHVsSizeMCPost [MHVsSize]", "MHillasSrc", "FillVsSizePost"); 1106 MFillH fill4a("MHHilExtMCPost [MHHillasExt]", "MHillasSrc", "FillHilExtPost"); 1107 MFillH fill5a("MHHilSrcMCPost [MHHillasSrc]", "MHillasSrc", "FillHilSrcPost"); 1108 MFillH fill6a("MHImgParMCPost [MHImagePar]", "MImagePar", "FillImgParPost"); 1109 MFillH fill7a("MHNewParMCPost [MHNewImagePar]", "MNewImagePar", "FillNewParPost"); 1110 MFillH fill8a("ExcessMC [MH3]", "", "FillExcessMC"); 1111 fill1a.SetNameTab("PreCut"); 1112 fill2a.SetNameTab("PostCut"); 1113 fill3a.SetNameTab("VsSize"); 1114 fill4a.SetNameTab("HilExt"); 1115 fill5a.SetNameTab("HilSrc"); 1116 fill6a.SetNameTab("ImgPar"); 1117 fill7a.SetNameTab("NewPar"); 1118 fill8a.SetBit(MFillH::kDoNotDisplay); 1119 fill1a.SetWeight(); 1120 fill2a.SetWeight(); 1121 fill3a.SetWeight(); 1122 fill4a.SetWeight(); 1123 fill5a.SetWeight(); 1124 fill6a.SetWeight(); 1125 fill7a.SetWeight(); 1126 fill8a.SetWeight(); 1127 1128 MEnergyEstimate est; 1129 MTaskEnv taskenv1("EstimateEnergy"); 1130 taskenv1.SetDefault(fEstimateEnergy ? fEstimateEnergy : &est); 1131 1132 tlist2.AddToList(&read); 1133 if (!fRawMc && fNoThetaWeights) 1134 tlist2.AddToList(&contsel); 1135 //tlist2.AddToList(&calc); 1136 //tlist2.AddToList(&hcalc1); 1137 //tlist2.AddToList(&hcalc2); 1138 tlist2.AddToList(&weight); 1139 tlist2.AddToList(&fill1a); 1140 tlist2.AddToList(fCut0); 1141 tlist2.AddToList(fCut1); 1142 tlist2.AddToList(fCut2); 1143 tlist2.AddToList(fCut3); 1144 tlist2.AddToList(&taskenv1); 1145 tlist2.AddToList(&fill3); 1146 tlist2.AddToList(&fill4); 1147 tlist2.AddToList(&fill5); 1148 tlist2.AddToList(&fill2a); 1149 tlist2.AddToList(&fill3a); 1150 tlist2.AddToList(&fill4a); 1151 tlist2.AddToList(&fill5a); 1152 tlist2.AddToList(&fill6a); 1153 tlist2.AddToList(&fill7a); 1154 tlist2.AddToList(&fill8a); 1155 //tlist2.AddToList(&fill9a); 1156 1157 MEvtLoop loop2("FillMonteCarlo"); // ***** fName ***** 1158 loop2.SetParList(&plist); 1159 loop2.SetDisplay(fDisplay); 1160 loop2.SetLogStream(fLog); 1161 1162 if (!SetupEnv(loop2)) 1163 return kFALSE; 1164 1165 if (!loop2.Eventloop(fMaxEvents)) 1166 { 1167 *fLog << err << GetDescriptor() << ": Processing of MC-data failed." << endl; 1168 return kFALSE; 1169 } 1170 1171 if (!loop2.GetDisplay()) 1172 { 1173 *fLog << err << GetDescriptor() << ": Execution stopped by user." << endl; 1174 return kFALSE; 1175 } 1176 1177 gLog.Separator("Energy Estimator"); 1178 if (plist.FindObject("EstimateEnergy")) 1179 plist.FindObject("EstimateEnergy")->Print(); 1180 1181 gLog.Separator("Spectrum"); 1182 1183 // -------------------------- Spectrum ---------------------------- 1184 1185 // Calculate and display spectrum (N/TeVsm^2 at 1TeV) 1186 TArrayD res(DisplaySpectrum(area, excess, hest, ontime)); 1187 1188 // Spectrum fitted (convert res[1] from TeV to GeV) 1189 TF1 flx("flx", Form("%e*pow(x/1000, %f)", res[1]/1000, res[0])); 1190 1191 // Number of events this spectrum would produce per s and m^2 1192 Double_t n = flx.Integral(weight.GetEnergyMin(), weight.GetEnergyMax()); 1193 1194 // scale with effective collection area to get the event rate (N/s) 1195 // scale with the effective observation time to absolute observed events 1196 n *= area.GetCollectionAreaAbs()*ontime; // N 1197 1198 // Now calculate the scale factor from the number of events 1199 // produced and the number of events which should have been 1200 // observed with our telescope in the time ontime 1201 const Double_t scale = n/area.GetEntries(); 1202 1203 // Print normalization constant 1204 cout << "MC normalization factor: " << scale << endl; 1205 1206 // Overlay normalized plots 1207 DisplaySize(plist, scale); 1617 1208 1618 1209 // check if output should be written -
trunk/MagicSoft/Mars/mjobs/MJSpectrum.h
r7403 r7404 34 34 Bool_t fRawMc; 35 35 Bool_t fNoThetaWeights; 36 Bool_t fWeighting;37 36 38 37 // Read Input … … 50 49 TArrayD FitSpectrum(TH1D &spectrum) const; 51 50 TArrayD DisplaySpectrum(MHCollectionArea &area, TH1D &excess, MHEnergyEst &hest, Double_t ontime) const; 52 Bool_t DisplaySpectrumW(TH1D &energy0, TH1 &energy, TH1 &hsize, TH1D &weights, TH2D &hall, Double_t scale, TArrayD &res) const; 53 Bool_t DisplaySize(MParList &plist, Double_t scale, TH1D &result) const; 51 Bool_t DisplaySize(MParList &plist, Double_t scale) const; 54 52 Bool_t PlotSame(MStatusArray &arr, MParList &plist, const char *name, const char *tab, const char *plot, Double_t scale) const; 55 53 … … 63 61 void EnableSimpleMode(Bool_t b=kTRUE) { fSimpleMode=b; } 64 62 void EnableRawMc(Bool_t b=kTRUE) { fRawMc=b; } 65 void EnableWeighting(Bool_t b=kTRUE) { fWeighting=b; }66 63 67 64 void SetEnergyEstimator(const MTask *task); -
trunk/MagicSoft/Mars/msql/MSQLServer.cc
r7108 r7404 444 444 Int_t MSQLServer::SelectDataBase(const char *dbname) /*FOLD00*/ 445 445 { 446 fDataBase = dbname; 446 447 return fType==kIsServer ? fServ->SelectDataBase(dbname) : 0; 447 448 } … … 496 497 switch (fType) 497 498 { 498 case kIsServer: return Form("%s://%s:%d ", fServ->GetDBMS(), fServ->GetHost(), fServ->GetPort());499 case kIsServer: return Form("%s://%s:%d/%s", fServ->GetDBMS(), fServ->GetHost(), fServ->GetPort(), fDataBase.Data()); 499 500 case kIsDataBase: return GetNameDataBase(); 500 501 case kIsTable: return GetNameTable();
Note:
See TracChangeset
for help on using the changeset viewer.