00001
00002
00003
00004 #ifndef STJDIJETLISTCUT_H
00005 #define STJDIJETLISTCUT_H
00006
00007 #include <TObject.h>
00008
00009 #include "StjDijetCut.h"
00010
00011 #include "StjDijetList.h"
00012
00013 class StjDijetListCut : public TObject {
00014
00015 public:
00016 StjDijetListCut() { }
00017 virtual ~StjDijetListCut() { }
00018
00019 StjDijetList operator()(const StjDijetList& dijetList);
00020
00021 void addCut(StjDijetCut* cut) {
00022 _cutList.push_back(cut);
00023 }
00024
00025 typedef std::vector<StjDijetCut*> CutList;
00026 CutList getCutList() { return _cutList; }
00027
00028 private:
00029
00030 bool shouldNotKeep(const StjDijet& p4);
00031
00032 CutList _cutList;
00033
00034 ClassDef(StjDijetListCut, 1)
00035
00036 };
00037
00038 #endif // STJDIJETLISTCUT_H