Changeset 2522 for trunk/MagicSoft/Mars
- Timestamp:
- 11/17/03 23:53:16 (21 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 17 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r2521 r2522 19 19 - added 20 20 21 * merpp.cc, readraw.cc: 22 - added option -?/-h 23 24 * mona.cc: 25 - added MOnlineDump-class 26 - added port as a commandline option 27 - added commandline options 28 29 * status.cc: 30 - added option -?/-h 31 - added filter to support MC and DAQ files 32 33 * mdata/MDataChain.[h,cc]: 34 - added kERound 35 36 * mfilter/FilterLinkDef.h, mfilter/Makefile: 37 - added MFRealTimePeriod 38 39 * mgeom/MGeomCam.h: 40 - added InitGeometry 41 42 * mgeom/MGeomCamCT1.cc, mgeom/MGeomCamCT1Daniel.cc, 43 mgeom/MGeomCamECO1000.cc, mgeom/MGeomCamECO1000HG.cc, 44 mgeom/MGeomCamMagic.cc, mgeom/MGeomCamMagic919.cc, 45 mgeom/MGeomCamMagicHG.cc: 46 - replaced Calc* by InitGeometry 47 48 * mmain/MEventDisplay.cc: 49 - added a filter to support MC and real files 50 51 * mmain/Makefile: 52 - added mdata and mfilter 53 54 * mraw/MRawFileRead.cc: 55 - close file in PostProcess 56 57 * mraw/MRawRunHeader.h: 58 - added a comment 59 60 * mraw/RawIncl.h: 61 - removed some obsolete includes 62 63 * mhist/MH*: 64 - cleaned up many includes 65 21 66 22 67 23 68 2003/11/15: Thomas Bretz, Abelardo Moralejo 24 25 REMARK: These changes are preliminary! I want to implement a26 more straight forward solution piping fSerialNumber27 when calling SetupFill(). Don't relay on the current28 code!29 69 30 70 * mhist/MH.h: -
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.