]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - TOF/AliTOFClusterFinder.cxx
Removing the tasks from the digitization (Ruben)
[u/mrichter/AliRoot.git] / TOF / AliTOFClusterFinder.cxx
index 8de8eb7d93b9271eaab96cf4a7fe51ec38db359e..e0286fb8a8572488f0b1d31e1f1809df78ee0c68 100644 (file)
@@ -139,7 +139,7 @@ Revision 0.01  2005/07/25 A. De Caro
 ClassImp(AliTOFClusterFinder)
 
 AliTOFClusterFinder::AliTOFClusterFinder(AliTOFcalib *calib):
-  TTask("AliTOFClusterFinder",""),
+  TNamed("AliTOFClusterFinder",""),
   fRunLoader(0),
   fTOFLoader(0),
   fTreeD(0),
@@ -170,7 +170,7 @@ AliTOFClusterFinder::AliTOFClusterFinder(AliTOFcalib *calib):
 //______________________________________________________________________________
 
 AliTOFClusterFinder::AliTOFClusterFinder(AliRunLoader* runLoader, AliTOFcalib *calib):
-  TTask("AliTOFClusterFinder",""),
+  TNamed("AliTOFClusterFinder",""),
   fRunLoader(runLoader),
   fTOFLoader(runLoader->GetLoader("TOFLoader")),
   fTreeD(0),
@@ -200,7 +200,7 @@ AliTOFClusterFinder::AliTOFClusterFinder(AliRunLoader* runLoader, AliTOFcalib *c
 
 //------------------------------------------------------------------------
 AliTOFClusterFinder::AliTOFClusterFinder(const AliTOFClusterFinder &source) :
-  TTask(source),
+  TNamed(source),
   fRunLoader(0),
   fTOFLoader(0),
   fTreeD(0),
@@ -227,7 +227,7 @@ AliTOFClusterFinder& AliTOFClusterFinder::operator=(const AliTOFClusterFinder &s
   if (this == &source)
     return *this;
 
-  TTask::operator=(source);  
+  TNamed::operator=(source);  
   fDigits=source.fDigits;
   fRecPoints=source.fRecPoints;
   fVerbose=source.fVerbose;