[root] / trunk / hist / hist / src / TMultiGraph.cxx Repository:
ViewVC logotype

Diff of /trunk/hist/hist/src/TMultiGraph.cxx

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 14336, Mon Mar 20 21:43:44 2006 UTC revision 15134, Tue May 23 04:47:42 2006 UTC
# Line 1  Line 1 
1  // @(#)root/graf:$Name:  $:$Id: TMultiGraph.cxx,v 1.28 2006/02/09 15:51:23 couet Exp $  // @(#)root/graf:$Name: v5-11-02 $:$Id: TMultiGraph.cxx,v 1.29 2006/03/20 21:43:42 pcanal Exp $
2  // Author: Rene Brun   12/10/2000  // Author: Rene Brun   12/10/2000
3    
4  /*************************************************************************  /*************************************************************************
# Line 72  Line 72 
72     fMinimum   = -1111;     fMinimum   = -1111;
73  }  }
74    
75    //______________________________________________________________________________
76    TMultiGraph::TMultiGraph(const TMultiGraph& mg) :
77      TNamed (mg),
78      fGraphs(mg.fGraphs),
79      fFunctions(mg.fFunctions),
80      fHistogram(mg.fHistogram),
81      fMaximum(mg.fMaximum),
82      fMinimum(mg.fMinimum)
83    { }
84    
85    //______________________________________________________________________________
86    TMultiGraph& TMultiGraph::operator=(const TMultiGraph& mg)
87    {
88      if(this!=&mg) {
89        TNamed::operator=(mg);
90        fGraphs=mg.fGraphs;
91        fFunctions=mg.fFunctions;
92        fHistogram=mg.fHistogram;
93        fMaximum=mg.fMaximum;
94        fMinimum=mg.fMinimum;
95      } return *this;
96    }
97    
98  //______________________________________________________________________________  //______________________________________________________________________________
99  TMultiGraph::~TMultiGraph()  TMultiGraph::~TMultiGraph()

Legend:
Removed from v.14336  
changed lines
  Added in v.15134

Subversion Admin
ViewVC Help
Powered by ViewVC 1.0.9