Ignore:
Timestamp:
05/13/05 19:26:28 (20 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars/mhvstime
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/mhvstime/MHVsTime.cc

    r5756 r7033  
    121121// --------------------------------------------------------------------------
    122122//
     123// Call SetMinimum of fGraph
     124//
     125void MHVsTime::SetMinimum(Double_t min)
     126{
     127    if (fGraph)
     128        fGraph->SetMinimum(0);
     129}
     130
     131// --------------------------------------------------------------------------
     132//
    123133// Return the data members used by the data chain to be used in
    124134// MTask::AddBranchToList
     
    151161    fGraph->SetPoint(0, 0, 0); // Dummy point!
    152162    fGraph->SetEditable();     // Used as flag: First point? yes/no
    153 
    154163
    155164    TString title(fData ? GetRule() : (TString)"Graph");
  • trunk/MagicSoft/Mars/mhvstime/MHVsTime.h

    r4891 r7033  
    4545
    4646    void SetScale(Double_t scale) { fScale = scale; }
     47    void SetMinimum(Double_t min=-1111);
    4748
    4849    Int_t GetNbins() const;
Note: See TracChangeset for help on using the changeset viewer.