1 #include "StProtoJetCut.h"
2 #include "StProtoJetListCut.h"
4 StJetFinder::JetList StProtoJetListCut::operator()(
const StJetFinder::JetList& protojets)
const
6 StJetFinder::JetList result;
7 for (StJetFinder::JetList::const_iterator iProtoJet = protojets.begin(); iProtoJet != protojets.end(); ++iProtoJet) {
9 if (!cut(protojet)) result.push_back(protojet);
14 bool StProtoJetListCut::cut(
const StProtoJet& protojet)
const
16 for (vector<StProtoJetCut*>::const_iterator iCut = mCutList.begin(); iCut != mCutList.end(); ++iCut) {
18 if (cut(protojet))
return true;