]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - ACORDE/AliACORDEReconstructor.cxx
Update of AliACORDEQAChecker and AliACORDEQADataMakerSim(Yves) implementing one secon...
[u/mrichter/AliRoot.git] / ACORDE / AliACORDEReconstructor.cxx
index 692da258492269959a719c95e80302a8182969f9..fad163368d44de0857e3273dcc4953126ccd7677 100644 (file)
 #include "AliACORDERawStream.h"
 #include "AliESDEvent.h"
 #include "AliACORDEdigit.h"
+#include "AliACORDERecoParam.h"
 
 ClassImp(AliACORDEReconstructor)
 
 AliACORDEReconstructor:: AliACORDEReconstructor():
   AliReconstructor(),
   fESDACORDE(0x0),
+  fAcordeRecoParam(0x0),
   fCalibData(0x0)
 {
   // Default constructor  
   // Get calibration data
 
-  fCalibData = GetCalibData(); 
+  fCalibData = GetCalibData();
+  fAcordeRecoParam = GetRecoParam();
 }
 
-//FALTA IMPLEMENTAR_______________________________________________________________________
+//_______________________________________________________________________
 AliACORDECalibData *AliACORDEReconstructor::GetCalibData() const
 {
-  // TO BE IMPLEMENTED !!
+  return 0x0;
+}
+//____________________________________________________________________________
+AliACORDERecoParam *AliACORDEReconstructor::GetRecoParam() const
+{
   return 0x0;
 }
 //_____________________________________________________________________________
@@ -59,7 +66,6 @@ AliACORDEReconstructor& AliACORDEReconstructor::operator =
 AliACORDEReconstructor::~AliACORDEReconstructor()
 {
 // destructor
-//NECESITAS esta clase
   delete fESDACORDE; 
 }
 
@@ -67,7 +73,6 @@ AliACORDEReconstructor::~AliACORDEReconstructor()
 void AliACORDEReconstructor::Init()
 {
 // initializer
-//NECESITAS esta clase
     fESDACORDE  = new AliESDACORDE;
 }