]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - STEER/AliReconstructor.cxx
Correct overloading of virtual functions in the derived classes (icc)
[u/mrichter/AliRoot.git] / STEER / AliReconstructor.cxx
index 4fe63ea5a0b15597175323e51828c69ff5e50e1d..5f8fbfbf1b013f0aee79d1b64c825041d6f45e4c 100644 (file)
 ClassImp(AliReconstructor)
 
 
+//_____________________________________________________________________________
+void AliReconstructor::ConvertDigits(AliRawReader* /*rawReader*/, 
+                                    TTree* /*digitsTree*/) const
+{
+// convert raw data digits into digit objects in a root tree
+
+  AliError("conversion of raw data digits into digit objects not implemented");
+}
+
+
+//_____________________________________________________________________________
+void AliReconstructor::Reconstruct(TTree* /*digitsTree*/,
+                                  TTree* /*clustersTree*/) const
+{
+// run the local reconstruction
+
+  AliError("local event reconstruction not implemented");
+}
+
+//_____________________________________________________________________________
+void AliReconstructor::Reconstruct(AliRawReader* /*rawReader*/, 
+                                  TTree* /*clustersTree*/) const
+{
+// run the local reconstruction with raw data input
+
+  AliError("local event reconstruction not implemented for raw data input");
+}
+
+//_____________________________________________________________________________
+void AliReconstructor::Reconstruct(AliRunLoader* /*runLoader*/) const
+{
+// run the local reconstruction
+
+  AliError("local reconstruction not implemented");
+}
+
 //_____________________________________________________________________________
 void AliReconstructor::Reconstruct(AliRunLoader* /*runLoader*/, 
                                   AliRawReader* /*rawReader*/) const
@@ -51,6 +87,35 @@ void AliReconstructor::Reconstruct(AliRunLoader* /*runLoader*/,
   AliError("local reconstruction not implemented for raw data input");
 }
 
+
+//_____________________________________________________________________________
+void AliReconstructor::FillESD(TTree* /*digitsTree*/, TTree* /*clustersTree*/,
+                              AliESD* /*esd*/) const
+{
+// fill the ESD.
+// by default nothing is done
+
+}
+
+//_____________________________________________________________________________
+void AliReconstructor::FillESD(AliRawReader* /*rawReader*/, 
+                              TTree* clustersTree, AliESD* esd) const
+{
+// fill the ESD in case of raw data input.
+// by default the FillESD method for MC is called
+
+  FillESD((TTree*)NULL, clustersTree, esd);
+}
+
+//_____________________________________________________________________________
+void AliReconstructor::FillESD(AliRunLoader* /*runLoader*/, 
+                              AliESD* /*esd*/) const
+{
+// fill the ESD.
+// by default nothing is done
+
+}
+
 //_____________________________________________________________________________
 void AliReconstructor::FillESD(AliRunLoader* runLoader, 
                               AliRawReader* /*rawReader*/, AliESD* esd) const