Changeset 2522 for trunk/MagicSoft/Mars/mhist
- Timestamp:
- 11/17/03 23:53:16 (21 years ago)
- Location:
- trunk/MagicSoft/Mars/mhist
- Files:
-
- 16 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mhist/MHAlphaEnergyTheta.h
r2043 r2522 7 7 8 8 #ifndef ROOT_TH3 9 #include "TH3.h" 10 #endif 11 12 #ifndef ROOT_TH2 13 #include "TH2.h" 9 #include <TH3.h> 14 10 #endif 15 11 … … 17 13 class MHillasSrc; 18 14 class MEnergyEst; 19 class TH2D;20 15 class MParList; 21 22 16 23 17 class MHAlphaEnergyTheta : public MH … … 47 41 48 42 #endif 49 50 51 52 53 -
trunk/MagicSoft/Mars/mhist/MHCT1Supercuts.h
r2310 r2522 32 32 void Draw(Option_t *opt=NULL); 33 33 34 35 34 ClassDef(MHCT1Supercuts, 1) // Container which holds histograms for the supercuts 36 35 }; -
trunk/MagicSoft/Mars/mhist/MHEffOnTime.h
r2015 r2522 6 6 #endif 7 7 #ifndef ROOT_TH1 8 #include "TH1.h"8 #include <TH1.h> 9 9 #endif 10 10 -
trunk/MagicSoft/Mars/mhist/MHEffOnTimeTheta.h
r2015 r2522 6 6 #endif 7 7 #ifndef ROOT_TH1 8 #include "TH1.h"8 #include <TH1.h> 9 9 #endif 10 10 -
trunk/MagicSoft/Mars/mhist/MHEffOnTimeTime.h
r2015 r2522 6 6 #endif 7 7 #ifndef ROOT_TH1 8 #include "TH1.h"8 #include <TH1.h> 9 9 #endif 10 10 -
trunk/MagicSoft/Mars/mhist/MHEnergyTheta.h
r2043 r2522 6 6 #endif 7 7 #ifndef ROOT_TH2 8 #include "TH2.h"8 #include <TH2.h> 9 9 #endif 10 10 -
trunk/MagicSoft/Mars/mhist/MHFlux.h
r2015 r2522 11 11 12 12 #ifndef ROOT_TH1 13 #include "TH1.h"13 #include <TH1.h> 14 14 #endif 15 15 16 16 #ifndef ROOT_TH2 17 #include "TH2.h"17 #include <TH2.h> 18 18 #endif 19 19 -
trunk/MagicSoft/Mars/mhist/MHHadronness.cc
r2516 r2522 157 157 if (!fMcEvt) 158 158 { 159 TString str = AddSerialNumber("MMcEvt"); 160 str += " not found... aborting."; 161 *fLog << err << dbginf << str << endl; 159 *fLog << err << dbginf << AddSerialNumber("MMcEvt"); 160 *fLog << " not found... aborting." << endl; 162 161 return kFALSE; 163 162 } … … 576 575 fMatrix = NULL; 577 576 } 578 -
trunk/MagicSoft/Mars/mhist/MHOnSubtraction.cc
r2326 r2522 44 44 #include "MHOnSubtraction.h" 45 45 46 #include <TPaveText.h> 47 #include <TPaveLabel.h> 48 #include <TF1.h> 49 #include <TLegend.h> 46 50 #include <TCanvas.h> 47 #include <TF1.h>48 #include <TPaveText.h>49 #include <TLegend.h>50 51 #include <TStyle.h> 52 #include <TGraph.h> 51 53 52 54 #include "MBinning.h" … … 1702 1704 } 1703 1705 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 // -------------------------------------------------------------------------1722 //1723 // Set the binnings and prepare the filling of the histograms1724 //1725 Bool_t MHOnSubtraction::SetupFill(const MParList *pliston)1726 {1727 return kTRUE;1728 }1729 1730 // -------------------------------------------------------------------------1731 //1732 // Dummy Fill1733 //1734 Bool_t MHOnSubtraction::Fill(const MParContainer *pcont, const Stat_t w)1735 {1736 return kTRUE;1737 }1738 1739 1706 // ------------------------------------------------------------------------- 1740 1707 // -
trunk/MagicSoft/Mars/mhist/MHOnSubtraction.h
r2282 r2522 5 5 #include "MH.h" 6 6 #endif 7 #ifndef ROOT_TH18 #include "TH1.h"9 #endif10 #ifndef ROOT_TH311 #include "TH3.h"12 #endif13 #ifndef ROOT_TGraph14 #include "TGraph.h"15 #endif16 #ifndef ROOT_TPaveLabel17 #include "TPaveLabel.h"18 #endif19 #ifndef ROOT_TFile20 #include "TFile.h"21 #endif22 7 8 class TH1D; 9 class TH3D; 10 class TPad; 11 class TGraph; 12 class TLegend; 13 class TPaveLabel; 23 14 24 25 26 class TH2D;27 class TPad;28 class TLegend;29 class TString;30 31 class MParList;32 15 class MHArray; 33 16 … … 70 53 ~MHOnSubtraction(); 71 54 72 virtual Bool_t SetupFill(const MParList *pliston);73 virtual Bool_t Fill(const MParContainer *pcont, const Stat_t w);74 75 /* const TH3D *GetHist() { return fH; } */76 /* const TH3D *GetHist() const { return fH; } */77 78 55 Double_t CalcSignificance(Double_t nOn, Double_t nOff, Double_t theta); 79 56 Double_t GetSignificance() { return fSignificance; }; -
trunk/MagicSoft/Mars/mhist/MHSigmaPixel.h
r2043 r2522 7 7 8 8 #ifndef ROOT_TH2 9 #include "TH2.h"9 #include <TH2.h> 10 10 #endif 11 11 12 class TH2D; 13 12 14 class MMcEvt; 15 class MParList; 13 16 class MPedestalCam; 14 class TH2D;15 class MParList;16 17 17 18 18 class MHSigmaPixel : public MH -
trunk/MagicSoft/Mars/mhist/MHSigmaTheta.h
r2109 r2522 7 7 8 8 #ifndef ROOT_TH2 9 #include "TH2.h"9 #include <TH2.h> 10 10 #endif 11 11 12 12 #ifndef ROOT_TH3 13 #include "TH3.h"13 #include <TH3.h> 14 14 #endif 15 15 -
trunk/MagicSoft/Mars/mhist/MHSigmabarTheta.h
r2043 r2522 7 7 8 8 #ifndef ROOT_TH2 9 #include "TH2.h"9 #include <TH2.h> 10 10 #endif 11 11 -
trunk/MagicSoft/Mars/mhist/MHThetabarTheta.h
r2043 r2522 6 6 #endif 7 7 #ifndef ROOT_TProfile 8 #include "TProfile.h"8 #include <TProfile.h> 9 9 #endif 10 10 -
trunk/MagicSoft/Mars/mhist/MHTimeDiffTheta.h
r2043 r2522 6 6 #endif 7 7 #ifndef ROOT_TH2 8 #include "TH2.h"8 #include <TH2.h> 9 9 #endif 10 10 -
trunk/MagicSoft/Mars/mhist/MHTimeDiffTime.h
r2043 r2522 6 6 #endif 7 7 #ifndef ROOT_TH2 8 #include "TH2.h"8 #include <TH2.h> 9 9 #endif 10 10
Note:
See TracChangeset
for help on using the changeset viewer.