File indexing completed on 2024-04-06 12:11:29
0001 #ifndef Fireworks_Calo_FWCandTowerSliceSelector_h
0002 #define Fireworks_Calo_FWCandTowerSliceSelector_h
0003
0004 #include "Fireworks/Calo/interface/FWHistSliceSelector.h"
0005 class FWSimpleProxyHelper;
0006
0007 class FWCandidateTowerSliceSelector : public FWHistSliceSelector {
0008 public:
0009 FWCandidateTowerSliceSelector(TH2F* h, const FWEventItem* i, FWSimpleProxyHelper* m_helper);
0010 ~FWCandidateTowerSliceSelector() override;
0011
0012 bool aggregatePhiCells() const override { return false; }
0013
0014 protected:
0015 void getItemEntryEtaPhi(int itemIdx, float& eta, float& phi) const override;
0016 FWSimpleProxyHelper* m_helper;
0017 };
0018
0019 #endif