Ignore:
Timestamp:
11/17/03 23:53:16 (21 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars/mhist
Files:
16 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/mhist/MHAlphaEnergyTheta.h

    r2043 r2522  
    77
    88#ifndef ROOT_TH3
    9 #include "TH3.h"
    10 #endif
    11 
    12 #ifndef ROOT_TH2
    13 #include "TH2.h"
     9#include <TH3.h>
    1410#endif
    1511
     
    1713class MHillasSrc;
    1814class MEnergyEst;
    19 class TH2D;
    2015class MParList;
    21 
    2216
    2317class MHAlphaEnergyTheta : public MH
     
    4741
    4842#endif
    49 
    50 
    51 
    52 
    53 
  • trunk/MagicSoft/Mars/mhist/MHCT1Supercuts.h

    r2310 r2522  
    3232    void Draw(Option_t *opt=NULL);
    3333
    34 
    3534    ClassDef(MHCT1Supercuts, 1) // Container which holds histograms for the supercuts
    3635};
  • trunk/MagicSoft/Mars/mhist/MHEffOnTime.h

    r2015 r2522  
    66#endif
    77#ifndef ROOT_TH1
    8 #include "TH1.h"
     8#include <TH1.h>
    99#endif
    1010
  • trunk/MagicSoft/Mars/mhist/MHEffOnTimeTheta.h

    r2015 r2522  
    66#endif
    77#ifndef ROOT_TH1
    8 #include "TH1.h"
     8#include <TH1.h>
    99#endif
    1010
  • trunk/MagicSoft/Mars/mhist/MHEffOnTimeTime.h

    r2015 r2522  
    66#endif
    77#ifndef ROOT_TH1
    8 #include "TH1.h"
     8#include <TH1.h>
    99#endif
    1010
  • trunk/MagicSoft/Mars/mhist/MHEnergyTheta.h

    r2043 r2522  
    66#endif
    77#ifndef ROOT_TH2
    8 #include "TH2.h"
     8#include <TH2.h>
    99#endif
    1010
  • trunk/MagicSoft/Mars/mhist/MHFlux.h

    r2015 r2522  
    1111
    1212#ifndef ROOT_TH1
    13 #include "TH1.h"
     13#include <TH1.h>
    1414#endif
    1515
    1616#ifndef ROOT_TH2
    17 #include "TH2.h"
     17#include <TH2.h>
    1818#endif
    1919
  • trunk/MagicSoft/Mars/mhist/MHHadronness.cc

    r2516 r2522  
    157157        if (!fMcEvt)
    158158        {
    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;
    162161            return kFALSE;
    163162        }
     
    576575    fMatrix = NULL;
    577576}
    578 
  • trunk/MagicSoft/Mars/mhist/MHOnSubtraction.cc

    r2326 r2522  
    4444#include "MHOnSubtraction.h"
    4545
     46#include <TPaveText.h>
     47#include <TPaveLabel.h>
     48#include <TF1.h>
     49#include <TLegend.h>
    4650#include <TCanvas.h>
    47 #include <TF1.h>
    48 #include <TPaveText.h>
    49 #include <TLegend.h>
    5051#include <TStyle.h>
     52#include <TGraph.h>
    5153
    5254#include "MBinning.h"
     
    17021704}
    17031705
    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 histograms
    1724 //
    1725 Bool_t MHOnSubtraction::SetupFill(const MParList *pliston)
    1726 {
    1727   return kTRUE;
    1728 }
    1729 
    1730 // -------------------------------------------------------------------------
    1731 //
    1732 // Dummy Fill
    1733 //
    1734 Bool_t MHOnSubtraction::Fill(const MParContainer *pcont, const Stat_t w)
    1735 {
    1736   return kTRUE;
    1737 }
    1738 
    17391706// -------------------------------------------------------------------------
    17401707//
  • trunk/MagicSoft/Mars/mhist/MHOnSubtraction.h

    r2282 r2522  
    55#include "MH.h"
    66#endif
    7 #ifndef ROOT_TH1
    8 #include "TH1.h"
    9 #endif
    10 #ifndef ROOT_TH3
    11 #include "TH3.h"
    12 #endif
    13 #ifndef ROOT_TGraph
    14 #include "TGraph.h"
    15 #endif
    16 #ifndef ROOT_TPaveLabel
    17 #include "TPaveLabel.h"
    18 #endif
    19 #ifndef ROOT_TFile
    20 #include "TFile.h"
    21 #endif
    227
     8class TH1D;
     9class TH3D;
     10class TPad;
     11class TGraph;
     12class TLegend;
     13class TPaveLabel;
    2314
    24 
    25 
    26 class TH2D;
    27 class TPad;
    28 class TLegend;
    29 class TString;
    30 
    31 class MParList;
    3215class MHArray;
    3316
     
    7053  ~MHOnSubtraction();
    7154
    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 
    7855  Double_t CalcSignificance(Double_t nOn, Double_t nOff, Double_t theta);
    7956  Double_t GetSignificance()  { return fSignificance; };
  • trunk/MagicSoft/Mars/mhist/MHSigmaPixel.h

    r2043 r2522  
    77
    88#ifndef ROOT_TH2
    9 #include "TH2.h"
     9#include <TH2.h>
    1010#endif
    1111
     12class TH2D;
     13
    1214class MMcEvt;
     15class MParList;
    1316class MPedestalCam;
    14 class TH2D;
    15 class MParList;
    16 
    1717
    1818class MHSigmaPixel : public MH
  • trunk/MagicSoft/Mars/mhist/MHSigmaTheta.h

    r2109 r2522  
    77
    88#ifndef ROOT_TH2
    9 #include "TH2.h"
     9#include <TH2.h>
    1010#endif
    1111
    1212#ifndef ROOT_TH3
    13 #include "TH3.h"
     13#include <TH3.h>
    1414#endif
    1515
  • trunk/MagicSoft/Mars/mhist/MHSigmabarTheta.h

    r2043 r2522  
    77
    88#ifndef ROOT_TH2
    9 #include "TH2.h"
     9#include <TH2.h>
    1010#endif
    1111
  • trunk/MagicSoft/Mars/mhist/MHThetabarTheta.h

    r2043 r2522  
    66#endif
    77#ifndef ROOT_TProfile
    8 #include "TProfile.h"
     8#include <TProfile.h>
    99#endif
    1010
  • trunk/MagicSoft/Mars/mhist/MHTimeDiffTheta.h

    r2043 r2522  
    66#endif
    77#ifndef ROOT_TH2
    8 #include "TH2.h"
     8#include <TH2.h>
    99#endif
    1010
  • trunk/MagicSoft/Mars/mhist/MHTimeDiffTime.h

    r2043 r2522  
    66#endif
    77#ifndef ROOT_TH2
    8 #include "TH2.h"
     8#include <TH2.h>
    99#endif
    1010
Note: See TracChangeset for help on using the changeset viewer.