00001
00002
00003
00004
00005
00006 #ifndef STJETETCELL_H
00007 #define STJETETCELL_H
00008
00009 #include "StEtaPhiCell.h"
00010
00011 #include "StProtoJet.h"
00012
00013 #include <vector>
00014 #include <list>
00015 #include <iostream>
00016
00017
00027 class StJetEtCell : public StEtaPhiCell {
00028
00029 public:
00030
00031 StJetEtCell();
00032 StJetEtCell(const StJetEtCell& c);
00033 StJetEtCell(double etaMin, double etaMax, double phiMin, double phiMax);
00034 virtual ~StJetEtCell();
00035
00036 StEtaPhiCell* clone() const;
00037
00038 double eT() const { return mEt; }
00039
00040 void addProtoJet(const StProtoJet&);
00041 void addCell(StEtaPhiCell* cell);
00042 void clear();
00043
00044 };
00045
00046 #endif // STJETETCELL_H