]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - HLT/BASE/AliHLTOfflineDataSource.cxx
Intermediary MUONDA
[u/mrichter/AliRoot.git] / HLT / BASE / AliHLTOfflineDataSource.cxx
index 5b1fdcdf67426d1757ea9e00fdc18b1506df4b66..c04014dde751a7db898bbef987c27abaeed73070 100644 (file)
@@ -1,10 +1,11 @@
 // $Id$
 
 /**************************************************************************
- * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
+ * This file is property of and copyright by the                          * 
+ * ALICE Experiment at CERN, All rights reserved.                         *
  *                                                                        *
- * Authors: Matthias Richter <Matthias.Richter@ift.uib.no>                *
- *          for The ALICE Off-line Project.                               *
+ * Primary Authors: Matthias Richter <Matthias.Richter@ift.uib.no>        *
+ *                  for The ALICE HLT Project.                            *
  *                                                                        *
  * Permission to use, copy, modify and distribute this software and its   *
  * documentation strictly for non-commercial purposes is hereby granted   *
  * provided "as is" without express or implied warranty.                  *
  **************************************************************************/
 
-/** @file   AliHLTOfflineDataSource.cxx
-    @author Matthias Richter
-    @date   
-    @brief  AliRoot data source component base class.
-*/
+/// @file   AliHLTOfflineDataSource.cxx
+/// @author Matthias Richter
+/// @date   
+/// @brief  AliRoot data source component base class.
+///
 
 #include "AliHLTOfflineDataSource.h"
 
@@ -28,32 +29,16 @@ ClassImp(AliHLTOfflineDataSource)
 
 AliHLTOfflineDataSource::AliHLTOfflineDataSource()
 {
-  // see header file for class documentation
-  // or
-  // refer to README to build package
-  // or
-  // visit http://web.ift.uib.no/~kjeks/doc/alice-hlt
+  // The class implements an AliRoot data source component base class.
+  // Main purpose is to provide the access to RunLoader and RawReader
+  // of the AliRoot simulation/reconstruction
+  // Child classes implement the normal component functions to
+  // facilitate the interface
   Register(this);
 }
 
-AliHLTOfflineDataSource::AliHLTOfflineDataSource(const AliHLTOfflineDataSource&)
-  :
-  AliHLTDataSource(),
-  AliHLTOfflineInterface()
-{
-  // see header file for class documentation
-  HLTFatal("copy constructor untested");
-}
-
-AliHLTOfflineDataSource& AliHLTOfflineDataSource::operator=(const AliHLTOfflineDataSource&)
-{ 
-  // see header file for class documentation
-  HLTFatal("assignment operator untested");
-  return *this;
-}
-
 AliHLTOfflineDataSource::~AliHLTOfflineDataSource()
 {
-  // see header file for class documentation
+  // destructor
   Unregister(this);
 }