X-Git-Url: http://git.uio.no/git/?a=blobdiff_plain;f=EMCAL%2FAliEMCALSuperModule.h;h=226f4f59718ea6f40b5ed5c84e49597cb267c1a8;hb=0fc1150089f7acf8a2ec7713f395b453967db9e7;hp=0b7c66f407832b79373bc150bd5faeea15b34af2;hpb=cfe252710a17f11452a8146235df80cf73d1b53d;p=u%2Fmrichter%2FAliRoot.git diff --git a/EMCAL/AliEMCALSuperModule.h b/EMCAL/AliEMCALSuperModule.h index 0b7c66f4078..226f4f59718 100644 --- a/EMCAL/AliEMCALSuperModule.h +++ b/EMCAL/AliEMCALSuperModule.h @@ -8,16 +8,18 @@ //_________________________________________________________________________ // Emcal Super Module // -//*-- Author: Aleksei Pavlinov (WSU, Detroit, USA) +//*-- Author: Aleksei Pavlinov (WSU, Detroit, USA) +// Super Module folder +// Initial version was created with TDataSet staf +// TObjectSet -> TFolder; Sep 6, 2007 -// --- ROOT system --- -#include +#include class TList; class AliEMCALCell; -class AliEMCALSuperModule : public TObjectSet { +class AliEMCALSuperModule : public TFolder { public: @@ -28,7 +30,9 @@ class AliEMCALSuperModule : public TObjectSet { void Init(); void AddCellToEtaRow(AliEMCALCell *cell, const Int_t etaRow); - TList* GetHists() {return (TList*)fObj;} + TList* GetHists() {return fLh;} + TObject* GetParent() {return fParent;} + void SetParent(TObject *parent) {fParent=parent;} // MENU void FitForAllCells(); //*MENU* void FitEffMassHist(); //*MENU* @@ -40,9 +44,11 @@ class AliEMCALSuperModule : public TObjectSet { protected: TList* BookHists(); // - Int_t fSMNumber; + TObject* fParent; // parent + TList* fLh; // List of hists + Int_t fSMNumber; - ClassDef(AliEMCALSuperModule,1) // EMCAL SuperModule + ClassDef(AliEMCALSuperModule,2) // EMCAL SuperModule };