]> git.uio.no Git - u/mrichter/AliRoot.git/blame - EMCAL/AliEMCALClusterizerFixedWindow.h
take min e cut into account
[u/mrichter/AliRoot.git] / EMCAL / AliEMCALClusterizerFixedWindow.h
CommitLineData
89504c57 1#ifndef ALIEMCALCLUSTERIZERFIXEDWINDOW_H
2#define ALIEMCALCLUSTERIZERFIXEDWINDOW_H
3
4/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
5 * See cxx source for full Copyright notice */
6
27bad386 7/* $Id: AliEMCALClusterizerFixedWindow.h */
89504c57 8
9//_________________________________________________________________________
10// This class derives from AliEMCALClustrerizer
11
12#include "AliEMCALClusterizer.h"
13
14class AliEMCALRecPoint;
15class AliEMCALDigit;
89504c57 16
17class AliEMCALClusterizerFixedWindow : public AliEMCALClusterizer {
06ca320f 18 public:
19 AliEMCALClusterizerFixedWindow() ;
20 AliEMCALClusterizerFixedWindow(AliEMCALGeometry* geometry);
21 AliEMCALClusterizerFixedWindow(AliEMCALGeometry* geometry, AliEMCALCalibData * calib, AliCaloCalibPedestal * pedestal);
22 virtual ~AliEMCALClusterizerFixedWindow();
89504c57 23
06ca320f 24 virtual void Digits2Clusters(Option_t *option);
25 virtual const char *Version() const { return "clu-FixedWindow"; }
26
27 Int_t GetNphi () const { return fNphi; }
28 Int_t GetNeta () const { return fNeta; }
29 Int_t GetShiftPhi () const { return fShiftPhi; }
30 Int_t GetShiftEta () const { return fShiftEta; }
31 Bool_t GetTRUshift() const { return fTRUshift; }
32 void SetNphi (Int_t n);
33 void SetNeta (Int_t n);
34 void SetShiftPhi (Int_t s);
35 void SetShiftEta (Int_t s);
36 void SetTRUshift(Bool_t b);
89504c57 37
89504c57 38protected:
27bad386 39 virtual void MakeClusters();
40
06ca320f 41 Int_t fNphi; // Fixed window number of cells in phi direction
42 Int_t fNeta; // Fixed window number of cells in eta direction
43 Int_t fShiftPhi; // Shifting number of cells in phi direction
44 Int_t fShiftEta; // Shifting number of cells in eta direction
45 Bool_t fTRUshift; // Allows shifting inside a TRU (true) of through the whole calorimeter (false)
46 AliEMCALDigit ***fClustersArray; //!Temporary array that contains clusters
89504c57 47
48private:
06ca320f 49 AliEMCALClusterizerFixedWindow(const AliEMCALClusterizerFixedWindow &); // not implemented
50 AliEMCALClusterizerFixedWindow & operator = (const AliEMCALClusterizerFixedWindow &); // not implemented
27bad386 51
06ca320f 52 ClassDef(AliEMCALClusterizerFixedWindow,4) // Clusterizer implementation version 1
89504c57 53};
89504c57 54#endif // AliEMCALCLUSTERIZERFIXEDWINDOW_H