[root] / trunk / core / base / src / TBenchmark.cxx Repository:
ViewVC logotype

Log of /trunk/core/base/src/TBenchmark.cxx

Parent Directory Parent Directory


Links to HEAD: (view) (download) (as text) (annotate)
Sticky Revision:

Revision 44502 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Mon Jun 4 11:04:49 2012 UTC (2 years, 7 months ago) by rdm
File length: 6899 byte(s)
Diff to previous 26611
Fix comment in Start(), starting of an existing benchmark will resume the
benchmark, not reset it.

Revision 26611 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Tue Dec 2 22:49:28 2008 UTC (6 years, 1 month ago) by pcanal
File length: 7827 byte(s)
Diff to previous 26606
Fix compiler warning

Revision 26606 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Tue Dec 2 20:36:09 2008 UTC (6 years, 1 month ago) by pcanal
File length: 7829 byte(s)
Diff to previous 22961
Following Igor Smirnov analysis fix several memory leaks, add checks for null pointer dereference, fix or add copy constructor and assignment operator when applicable, make the copy constructor and assignment operator private when the objects are not intended to be copiable.

Revision 22961 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Thu Apr 3 13:32:57 2008 UTC (6 years, 9 months ago) by rdm
File length: 7173 byte(s)
Diff to previous 20877
move the directories:
  base clib cont meta metautils newdelete pcre rint thread unix utils
  winnt zip
under the new core meta directory.

Revision 20877 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Mon Nov 19 11:17:07 2007 UTC (7 years, 2 months ago) by rdm
Original Path: trunk/base/src/TBenchmark.cxx
File length: 7173 byte(s)
Diff to previous 17299
Set property svn:eol-style LF on all source and Makefiles. This should avoid
problems with Win32 line endings ending up in the repository. All MS tools
support LF eols fine.

Revision 17299 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Fri Jan 12 10:20:08 2007 UTC (8 years ago) by brun
Original Path: trunk/base/src/TBenchmark.cxx
File length: 7173 byte(s)
Diff to previous 15742
Replace "TMath.h" by <cmath> and calls to
  TMath::Sqrt by sqrt
  TMath::Abs by std::abs
  TMath::Min by std::min
  TMath::Max by std::max

Revision 15742 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Sun Jul 9 05:27:55 2006 UTC (8 years, 6 months ago) by brun
Original Path: trunk/base/src/TBenchmark.cxx
File length: 7192 byte(s)
Diff to previous 15176
From Eddy:
Fix many typos in comments

Revision 15176 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Fri May 26 09:27:12 2006 UTC (8 years, 8 months ago) by brun
Original Path: trunk/base/src/TBenchmark.cxx
File length: 7187 byte(s)
Diff to previous 15134
Fix coding conventions violations

Revision 15134 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Tue May 23 04:47:42 2006 UTC (8 years, 8 months ago) by brun
Original Path: trunk/base/src/TBenchmark.cxx
File length: 7124 byte(s)
Diff to previous 13258
From Federico Carminati:

"I have implemented all copy and equal operators needed to silence all
warnings in AliRoot, as requested. I have implemented shallow copies as
would do the default operators synthetized by the compiler.
Most operators are protected. If users complain, you just have to move
them into the public area, but class derivation is of course supported.
It has been a terrible job, I have modified 278 files, but the changes
are backward compabile, and this goes a long way to permitting user to
use the effc++ flag with root headers."

Revision 13258 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Wed Nov 16 20:11:59 2005 UTC (9 years, 2 months ago) by pcanal
Original Path: trunk/base/src/TBenchmark.cxx
File length: 6495 byte(s)
Diff to previous 7687
White spaces and comments update

Revision 7687 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Thu Dec 4 02:37:44 2003 UTC (11 years, 1 month ago) by brun
Original Path: trunk/base/src/TBenchmark.cxx
File length: 6494 byte(s)
Diff to previous 4098
Fix a possible memory leak problem reported by Victor.

Revision 4098 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Mon Feb 25 14:51:18 2002 UTC (12 years, 11 months ago) by brun
Original Path: trunk/base/src/TBenchmark.cxx
File length: 6495 byte(s)
Diff to previous 1205
TBenchmark::Stop must call TTimer::Stop. Important in case one alternate between
benchmarks.

Revision 1205 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Wed Dec 13 15:13:57 2000 UTC (14 years, 1 month ago) by brun
Original Path: trunk/base/src/TBenchmark.cxx
File length: 6470 byte(s)
Diff to previous 184
      W A R N I N G   !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
     ==================================================================
A very long list of changes in this pre-release of version 3.00.
We have modified the signature of many functions (in particular TObject)
to introduce more constness in the system.
You must change your code if your class derives from TObject and uses
one of the modified functions such as ls, Print, Compare, Hash, etc.
The modified functions in TObject have the following signature:
   virtual TObject    *Clone() const;
   virtual Int_t       Compare(const TObject *obj) const;
   virtual void        Delete(Option_t *option=""); // *MENU*
   virtual void        DrawClass() const; // *MENU*
   virtual void        DrawClone(Option_t *option="") const; // *MENU*
   virtual void        Dump() const; // *MENU*
   virtual TObject    *FindObject(const TObject *obj) const;
   virtual char       *GetObjectInfo(Int_t px, Int_t py) const;
   virtual ULong_t     Hash() const;
   virtual void        Inspect() const; // *MENU*
   virtual Bool_t      IsEqual(const TObject *obj) const;
   virtual void        ls(Option_t *option="") const;
   virtual void        Print(Option_t *option="") const;

A similar operation has been done with classes such as TH1, TVirtualPad,
TTree, etc.

Revision 184 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Tue Jun 13 12:34:39 2000 UTC (14 years, 7 months ago) by brun
Original Path: trunk/base/src/TBenchmark.cxx
File length: 6458 byte(s)
Diff to previous 3
The function TBenchmark::Summary has new arguments:
   virtual void       Summary(Float_t &rt, Float_t &cp);

Revision 3 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Tue May 16 17:00:58 2000 UTC (14 years, 8 months ago) by rdm
Original Path: trunk/base/src/TBenchmark.cxx
File length: 6450 byte(s)
Copied from: branches/rdm/base/src/TBenchmark.cxx revision 2
Diff to previous 2
This commit was generated by cvs2svn to compensate for changes in r2,
which included commits to RCS files with non-trunk default branches.

Revision 2 - (view) (download) (as text) (annotate) - [select for diffs]
Added Tue May 16 17:00:58 2000 UTC (14 years, 8 months ago) by rdm
Original Path: branches/rdm/base/src/TBenchmark.cxx
File length: 6450 byte(s)
Initial import of ROOT into CVS

This form allows you to request diffs between any two revisions of this file. For each of the two "sides" of the diff, enter a numeric revision.

  Diffs between and
  Type of Diff should be a

Sort log by:

Subversion Admin
ViewVC Help
Powered by ViewVC 1.0.9