Changeset 9829 for trunk/Mars/mhbase


Ignore:
Timestamp:
08/11/10 11:56:20 (14 years ago)
Author:
tbretz
Message:
Added a possibility to change thetype of error used in a TProfile in
MH3.
Location:
trunk/Mars/mhbase
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Mars/mhbase/MH3.cc

    r9821 r9829  
    231231        break;
    232232    case kProfile:
     233    case kProfileSpread:
    233234        fDimension = -TMath::Abs(fDimension);
    234235        if (fDimension<-2)
     
    246247        fHist = new TProfile;
    247248        fHist->SetYTitle("Average");
    248         static_cast<TProfile*>(fHist)->SetErrorOption("s");
     249        if (type==kProfileSpread)
     250            static_cast<TProfile*>(fHist)->SetErrorOption("s");
    249251        break;
    250252    case 2:
     
    255257        fHist = new TProfile2D;
    256258        fHist->SetZTitle("Average");
    257         static_cast<TProfile2D*>(fHist)->SetErrorOption("s");
     259        if (type==kProfileSpread)
     260            static_cast<TProfile2D*>(fHist)->SetErrorOption("s");
    258261        break;
    259262    case 3:
     
    330333//
    331334MH3::MH3(const char *memberx, const char *membery, Type_t type)
    332     : fDimension(type&kProfile?-1:2)
     335    : fDimension(type==kHistogram?2:-1)
    333336{
    334337
     
    340343    case -1:
    341344        fHist = static_cast<TH1*>(new TProfile);
    342         static_cast<TProfile*>(fHist)->SetErrorOption("s");
     345        if (type==kProfileSpread)
     346            static_cast<TProfile*>(fHist)->SetErrorOption("s");
    343347
    344348        break;
     
    363367    : fDimension(type==kHistogram?3:-2)
    364368{
    365     if (type&kProfile)
    366     {
     369    switch (fDimension)
     370    {
     371    case 3:
     372        fHist = static_cast<TH1*>(new TH3D);
     373        break;
     374    case -2:
    367375        fHist = static_cast<TH1*>(new TProfile2D);
    368         static_cast<TProfile2D*>(fHist)->SetErrorOption("s");
    369     }
    370     else
    371         fHist = static_cast<TH1*>(new TH3D);
    372 
     376        if (type==kProfileSpread)
     377            static_cast<TProfile2D*>(fHist)->SetErrorOption("s");
     378    }
    373379
    374380    fData[0] = new MDataPhrase(memberx);
     
    902908// store the result in h.
    903909//
     910// In the case of a TProfile we keep it a TProfile to keep the mean and
     911// rms in y displayed. To get the error correctly we have to reverse
     912// the calculation done in TProfile::GetBinError of course.
     913//
    904914void MH3::Convert(TH1 &h) const
    905915{
     916    const Bool_t prof = h.InheritsFrom(TProfile::Class()) || h.InheritsFrom(TProfile2D::Class());
     917
    906918    for (Int_t z=0; z<=h.GetNbinsZ()+1; z++)
    907919        for (Int_t y=0; y<=h.GetNbinsY()+1; y++)
     
    909921            {
    910922                h.SetBinContent(x, y, z, fConversion->Eval(fHist->GetBinContent(x, y, z)));
    911                 h.SetBinError(  x, y, z, fConversion->Eval(fHist->GetBinError(  x, y, z)));
     923
     924                if (prof)
     925                    h.SetBinError(x, y, z, TMath::Hypot(fConversion->Eval(fHist->GetBinContent(x, y, z)),
     926                                                        fConversion->Eval(fHist->GetBinError(  x, y, z))));
     927                else
     928                    h.SetBinError(x, y, z, fConversion->Eval(fHist->GetBinError(x, y, z)));
    912929            }
    913930
    914     if (h.InheritsFrom(TProfile::Class()))
    915         for (Int_t x=0; x<=h.GetNbinsX()+1; x++)
    916             static_cast<TProfile&>(h).SetBinEntries(x, 1);
    917 
    918     if (h.InheritsFrom(TProfile2D::Class()))
    919         for (Int_t x=0; x<=h.GetNbinsX()+1; x++)
    920             static_cast<TProfile2D&>(h).SetBinEntries(x, 1);
     931    TProfile *p1 = dynamic_cast<TProfile*>(fHist);
     932    if (p1)
     933        for (Int_t i=0; i<p1->GetSize(); i++)
     934            static_cast<TProfile&>(h).SetBinEntries(i, p1->GetBinEntries(i)>0 ? 1 : 0);
     935
     936    TProfile *p2 = dynamic_cast<TProfile*>(fHist);
     937    if (p2)
     938        for (Int_t i=0; i<p2->GetSize(); i++)
     939            static_cast<TProfile2D&>(h).SetBinEntries(i, p2->GetBinEntries(i)>0 ? 1 : 0);
    921940}
    922941
     
    10541073    {
    10551074        h = static_cast<TH1*>(fHist->Clone());
     1075
    10561076        h->SetDirectory(0);
    10571077        h->SetBit(kCanDelete);
     
    11471167}
    11481168
     1169MH3::Type_t MH3::GetType() const
     1170{
     1171    switch (fDimension)
     1172    {
     1173    case -1:
     1174        return TString(static_cast<TProfile*>(fHist)->GetErrorOption())=="s" ? kProfileSpread : kProfile;
     1175    case -2:
     1176        return TString(static_cast<TProfile2D*>(fHist)->GetErrorOption())=="s" ? kProfileSpread : kProfile;
     1177    }
     1178    return kHistogram;
     1179}
     1180
    11491181// --------------------------------------------------------------------------
    11501182//
     
    11671199            break;
    11681200        case 2:
    1169             h=new MH3(fData[0]->GetRule(), fData[1]->GetRule());
    1170             break;
    11711201        case -1:
    1172             h=new MH3(fData[0]->GetRule(), fData[1]->GetRule(), MH3::kProfile);
     1202            h=new MH3(fData[0]->GetRule(), fData[1]->GetRule(), GetType());
    11731203            break;
    11741204        case 3:
    1175             h=new MH3(fData[0]->GetRule(), fData[1]->GetRule(), fData[2]->GetRule());
    1176             break;
    11771205        case -2:
    1178             h=new MH3(fData[0]->GetRule(), fData[1]->GetRule(), fData[2]->GetRule(), MH3::kProfile);
     1206            h=new MH3(fData[0]->GetRule(), fData[1]->GetRule(), fData[2]->GetRule(), GetType());
    11791207            break;
    11801208        }
  • trunk/Mars/mhbase/MH3.h

    r9821 r9829  
    3131    };
    3232
     33    enum Type_t {
     34        kHistogram     = 0,
     35        kProfile       = 1,
     36        kProfileSpread = kProfile | 2,
     37    };
     38
    3339private:
    3440    static const TString gsDefName;
     
    4450    Labels_t    GetLabels() const;
    4551    const char *GetLabel(Int_t axe, Double_t val) const;
     52
     53    // Get type
     54    Type_t GetType() const;
     55
     56    // Helper for conversion
     57    void Convert(TH1 &h) const;
    4658
    4759    MObjLookup fLabels[3];       //! Lookup table to conflate and name labels
     
    5971
    6072    void HandleLogAxis(TAxis &axe) const;
    61     void Convert(TH1 &h) const;
    6273
    6374    void StreamPrimitive(ostream &out) const;
     
    7182
    7283public:
    73     enum Type_t {
    74         kHistogram,
    75         kProfile,
    76     };
    77 
    7884    MH3(const Int_t dim=0, Type_t type=MH3::kHistogram);
    7985    MH3(const TH1 &h1);
Note: See TracChangeset for help on using the changeset viewer.