Changeset 2282 for trunk/MagicSoft/Mars/mhist
- Timestamp:
- 07/17/03 08:06:40 (22 years ago)
- Location:
- trunk/MagicSoft/Mars/mhist
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mhist/MHMatrix.cc
r2276 r2282 65 65 #include "MParList.h" 66 66 #include "MTaskList.h" 67 #include "MProgressBar.h" 67 68 68 69 #include "MData.h" … … 624 625 tlist.AddToList(&fillh); 625 626 627 MProgressBar bar; 626 628 MEvtLoop evtloop; 627 629 evtloop.SetParList(plist); 630 evtloop.SetProgressBar(&bar); 628 631 629 632 if (!evtloop.Eventloop()) -
trunk/MagicSoft/Mars/mhist/MHOnSubtraction.cc
r2177 r2282 1426 1426 1427 1427 1428 /* 1428 1429 1429 1430 1430 … … 1660 1660 1661 1661 1662 */ 1662 1663 1663 1664 1664 … … 1678 1678 FitHistogram(*aHisto, sigLiMa, lowerBin, upperBin, (Float_t)3.5, kFALSE); 1679 1679 1680 if (sigLiMa < 3)1681 *fLog << err << "No significant excess (sigma=" << sigLiMa <<")!"<<endl;1680 //if (sigLiMa < 3) 1681 // *fLog << err << "No significant excess (sigma=" << sigLiMa <<")!"<<endl; 1682 1682 1683 1683 if (signalRegion!=0) { … … 1691 1691 gammaSignal, errorGammaSignal, off, errorOff, 1692 1692 (Float_t)3.0, draw); 1693 1694 fSignificance = sigLiMa; 1693 1695 1694 1696 *fLog << inf << "Signal is " -
trunk/MagicSoft/Mars/mhist/MHOnSubtraction.h
r2170 r2282 48 48 Int_t fSigniPlotColor; 49 49 50 Double_t fSignificance; 51 50 52 Bool_t CalcAET(TH3D *histon, MParList *parlist, const Bool_t Draw); 51 53 … … 75 77 76 78 Double_t CalcSignificance(Double_t nOn, Double_t nOff, Double_t theta); 79 Double_t GetSignificance() { return fSignificance; }; 77 80 78 81 void SetExpoSlope(Double_t slope) { fSlope = slope; }
Note:
See TracChangeset
for help on using the changeset viewer.