[root] / trunk / core / base / inc / TTask.h Repository:
ViewVC logotype

Log of /trunk/core/base/inc/TTask.h

Parent Directory Parent Directory


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

Revision 31784 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Thu Dec 10 13:47:29 2009 UTC (5 years, 1 month ago) by brun
File length: 3027 byte(s)
Diff to previous 31731
Temp fix such that classes deriving from TTask do not break.

Revision 31731 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Wed Dec 9 14:36:00 2009 UTC (5 years, 1 month ago) by rdm
File length: 3065 byte(s)
Diff to previous 31717
make not implemented copy ctor and assignment private to avoid dict stubs.

Revision 31717 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Wed Dec 9 10:05:46 2009 UTC (5 years, 1 month ago) by rdm
File length: 3056 byte(s)
Diff to previous 22961
From Coverity:
remove incorrect assignment and copy ctor, describe them unimplemented.

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: 3007 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/inc/TTask.h
File length: 3007 byte(s)
Diff to previous 19826
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 19826 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Wed Sep 19 19:56:11 2007 UTC (7 years, 4 months ago) by rdm
Original Path: trunk/base/inc/TTask.h
File length: 3007 byte(s)
Diff to previous 19825
imported svn:keywords Id property

Revision 19825 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Wed Sep 19 19:49:10 2007 UTC (7 years, 4 months ago) by rdm
Original Path: trunk/base/inc/TTask.h
File length: 3053 byte(s)
Diff to previous 15134
remove :$ from tag line

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/inc/TTask.h
File length: 3063 byte(s)
Diff to previous 15037
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 15037 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Sun May 14 08:19:30 2006 UTC (8 years, 8 months ago) by brun
Original Path: trunk/base/inc/TTask.h
File length: 3022 byte(s)
Diff to previous 9513
Fix coding conventions violations

Revision 9513 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Tue Jul 13 16:16:17 2004 UTC (10 years, 6 months ago) by rdm
Original Path: trunk/base/inc/TTask.h
File length: 3023 byte(s)
Diff to previous 4815
make Add() virtual.

Revision 4815 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Thu Jul 4 10:19:44 2002 UTC (12 years, 6 months ago) by brun
Original Path: trunk/base/inc/TTask.h
File length: 3010 byte(s)
Diff to previous 3740
Make the following functions virtual:
   virtual void  CleanTasks();
   virtual void  ExecuteTask(Option_t *option="0");  // *MENU*
   virtual void  ExecuteTasks(Option_t *option);

Revision 3740 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Wed Jan 23 15:48:05 2002 UTC (13 years ago) by rdm
Original Path: trunk/base/inc/TTask.h
File length: 3011 byte(s)
Diff to previous 1205
add TList.h where needed (so these classes compile fine if we decide to
remove TList.h from TNamed.h).

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/inc/TTask.h
File length: 2965 byte(s)
Diff to previous 591
      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 591 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Wed Sep 6 14:20:10 2000 UTC (14 years, 4 months ago) by rdm
Original Path: trunk/base/inc/TTask.h
File length: 2960 byte(s)
Diff to previous 583
cosmetic changes to adhere to coding convention (statics start with fg).

Revision 583 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Wed Sep 6 09:29:20 2000 UTC (14 years, 4 months ago) by brun
Original Path: trunk/base/inc/TTask.h
File length: 2963 byte(s)
Diff to previous 576
minor changes for CVS headers

Revision 576 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Tue Sep 5 11:11:00 2000 UTC (14 years, 4 months ago) by brun
Original Path: trunk/base/inc/TTask.h
File length: 2697 byte(s)
Diff to previous 568
Rename TTask::Execute to TTask::Exec to avoid a clash with TObject::Execute

Revision 568 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Tue Sep 5 09:21:24 2000 UTC (14 years, 4 months ago) by brun
Original Path: trunk/base/inc/TTask.h
File length: 2700 byte(s)
Diff to previous 554
The following headers and classes have been modified to take into account;
  - the new signature of IsFolder (now const)
  - the new TObject::FindObject
  - the fact that the static functions of TObject have been moved to TROOT.

Revision 554 - (view) (download) (as text) (annotate) - [select for diffs]
Added Mon Sep 4 10:39:57 2000 UTC (14 years, 4 months ago) by brun
Original Path: trunk/base/inc/TTask.h
File length: 2694 byte(s)
Add a new Class TTask.
TTask is a base class that can be used to build a complex tree of Tasks.
Each TTask derived class may contain other TTasks that can be executed
recursively, such that a complex program can be dynamically built and executed
by invoking the services of the top level Task or one of its subtasks.

Use the TTask::Add function to add a subtask to an existing TTask.
To execute a TTask, one calls the ExecuteTask function. ExecuteTask will
call recursively:
     - the TTask::Execute function of the derived class
     - TTask::ExecuteTasks to execute for each task the list of its subtasks.
If the top level task is added to the list of Root
browsable objects, the tree of tasks can be visualized by the Root browser.
The browser can be used to start a task, set break points at the beginning
of a task or when the task has completed. At a breakpoint, data structures
generated by the execution up this point may be inspected asyncronously
and then the execution can be resumed by selecting the "Continue" function
of a task.

A TTask tree may be made persistent, saving the status of all the tasks.
See the class description for an example.

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