]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - HLT/EMCAL/AliHLTEMCALUtils.h
Removing AliHLTPHOSRawAnalyzerChiSquareFit/h/cxx
[u/mrichter/AliRoot.git] / HLT / EMCAL / AliHLTEMCALUtils.h
index e1934792915b477cb3ec226859260d28941871d0..e2da4c2e59bd1794b7c5767cbeb262a5f2abbca9 100644 (file)
@@ -21,6 +21,15 @@ class AliEMCALGeometry;
 class AliEMCALClusterizerv1;
 class AliEMCALRecParam;    
 class AliEMCALRawUtils;
+class AliRawReader;
+class AliESDEvent;
+
+class TString;
+class TFile;
+class TGeoManager;
+class TTree;
+class TClonesArray;
+class TBranch;
 
 class AliHLTEMCALUtils : public TObject
 {
@@ -30,20 +39,62 @@ class AliHLTEMCALUtils : public TObject
   AliHLTEMCALUtils & operator = (const AliHLTEMCALUtils & /*t*/);
   virtual ~AliHLTEMCALUtils();
 
-  static void                         InitRecParam();
-  static const AliEMCALRecParam*      GetRecParam();
+  static void                   SetDebug(Int_t idbg) {fgDebug = idbg;}
+
+  static void                   DeleteStaticMembers();
+  static void                   Cleanup();
+  
+  static void                   InitRecParam();
+  static AliEMCALRecParam*      GetRecParam();
+
+  static AliEMCALRawUtils*      GetRawUtils(AliEMCALGeometry *pGeometry = 0);
+  static AliEMCALClusterizerv1* GetClusterizer();
+  static AliEMCALGeometry*      GetGeometry();
+
+  static void                   DeleteGeoManager();
+  static Bool_t                 LoadGeoManagerFromFile(const char *fname);
+  static TGeoManager*           GetGeoManager() {return fgGeoManager;}
+
+  static Bool_t                 InitFakeCDB(const char *cdbpath = "", Int_t runid = 0);
+  static Bool_t                 ConvertDigits(AliRawReader* rawReader, TTree* digitsTree, Option_t* sOption);
+  static Bool_t                 Raw2Clusters(AliRawReader* rawReader, TTree* clustersTree, Option_t* sDigitsOption);
+  static Bool_t                 RawBuffer2Clusters(UChar_t *buffer, ULong_t buffSize, 
+                                                  Int_t eqID, 
+                                                  TTree* clustersTree, Option_t* sDigitsOption);
+  static TTree*                 RawBuffer2Clusters(UChar_t *buffer, ULong_t buffSize, 
+                                                  Int_t eqID, 
+                                                  Option_t* sDigitsOption);
 
-  static const AliEMCALRawUtils*      GetRawUtils();
-  static const AliEMCALClusterizerv1* GetClusterizer();
-  static const AliEMCALGeometry*      GetGeometry();
+  static TTree*                 GetDigitsTree();
+  static TTree*                 GetClustersTree();
 
+  static UChar_t *              FileToMemory(const char *fname, UChar_t *outpbuffer, ULong_t &buffSize);
+
+  static void                   ResetReconstructionTrees();
+  static void                   DeleteReconstructionTrees();
+
+  static Bool_t                 FillESD(TTree* digitsTree, TTree* clustersTree, AliESDEvent* esd);
+    
  protected:
+
  private:
+  
+  static Int_t                  fgDebug; // debug flag
 
   static AliEMCALGeometry*      fgGeom;        // EMCAL geometry
   static AliEMCALClusterizerv1* fgClusterizer; // ECMAL clusterizer
   static AliEMCALRecParam*      fgRecParam;    // EMCAL reconstruction parameters
   static AliEMCALRawUtils*      fgRawUtils;    // EMCAL raw utilities 
+  
+  static TFile*                 fgGeometryFile; //! // Pointer to the geom root file
+  static TGeoManager*           fgGeoManager; //! Pointer to geometry manager 
+
+  static TTree*                 fgClustersTreeTmp; //! Clusters tree - depending on the reco scheme 
+                                                   //  use ResetReconstructionTrees
+  static TTree*                 fgDigitsTreeTmp;   //! Digits tree  - reset on each Raw2Clusters call
+  static TClonesArray*          fgDigitsArrTmp;    //! Digits array - reset on each Raw2Clusters call
+  static TBranch*               fgDigitsBranchTmp; //! Digits branch - reset on each Raw2Clusters call
+
   ClassDef(AliHLTEMCALUtils, 0)
 };