]> git.uio.no Git - u/mrichter/AliRoot.git/blob - EMCAL/AliEMCALSuperModule.h
Temporary disable the raw version, it will be taken from FEE
[u/mrichter/AliRoot.git] / EMCAL / AliEMCALSuperModule.h
1 #ifndef ALIEMCALSUPERMODULE_H
2 #define ALIEMCALSUPERMODULE_H
3 /* Copyright(c) 1998-2007, ALICE Experiment at CERN, All rights reserved. *
4  * See cxx source for full Copyright notice     */
5
6 /* $Id$ */
7
8 //_________________________________________________________________________
9 //  Emcal Super Module     
10 //                  
11 //*-- Author: Aleksei Pavlinov (WSU, Detroit, USA) 
12
13 // --- ROOT system ---
14
15 #include <TObjectSet.h>
16
17 class TList;
18 class AliEMCALCell;
19
20 class AliEMCALSuperModule : public TObjectSet {
21
22  public:
23   
24   AliEMCALSuperModule(); 
25   AliEMCALSuperModule(const Int_t m, const char* title="Emcal Super Module");
26
27   virtual ~AliEMCALSuperModule();
28
29   void Init();
30   void   AddCellToEtaRow(AliEMCALCell *cell, const Int_t etaRow);
31   TList* GetHists() {return (TList*)fObj;}
32   // MENU
33   void FitForAllCells(); //*MENU*  
34   void FitEffMassHist(); //*MENU*  
35   void PrintInfo();      //*MENU* 
36   void DrawCC(int iopt=1); //*MENU* 
37   //
38   Int_t GetNumberOfCells();
39   Int_t GetSMNumber() const {return fSMNumber;}
40  protected:
41   TList* BookHists();
42   //
43   Int_t  fSMNumber;
44
45   ClassDef(AliEMCALSuperModule,1) // EMCAL SuperModule
46     
47 };
48
49 #endif // ALIEMCALSUPERMODULE_H